Class: Killbill::Plugin::Model::InvoiceContext

Inherits:
Object
  • Object
show all
Defined in:
lib/killbill/gen/plugin-api/invoice_context.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeInvoiceContext

Returns a new instance of InvoiceContext.



39
40
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 39

def initialize()
end

Instance Attribute Details

#account_idObject

Returns the value of attribute account_id.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def 
  @account_id
end

#call_originObject

Returns the value of attribute call_origin.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def call_origin
  @call_origin
end

#commentsObject

Returns the value of attribute comments.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def comments
  @comments
end

#created_dateObject

Returns the value of attribute created_date.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def created_date
  @created_date
end

#existing_invoicesObject

Returns the value of attribute existing_invoices.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def existing_invoices
  @existing_invoices
end

#invoiceObject

Returns the value of attribute invoice.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def invoice
  @invoice
end

#is_dry_runObject

Returns the value of attribute is_dry_run.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def is_dry_run
  @is_dry_run
end

#is_rescheduledObject

Returns the value of attribute is_rescheduled.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def is_rescheduled
  @is_rescheduled
end

#reason_codeObject

Returns the value of attribute reason_code.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def reason_code
  @reason_code
end

#target_dateObject

Returns the value of attribute target_date.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def target_date
  @target_date
end

#tenant_idObject

Returns the value of attribute tenant_id.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def tenant_id
  @tenant_id
end

#updated_dateObject

Returns the value of attribute updated_date.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def updated_date
  @updated_date
end

#user_nameObject

Returns the value of attribute user_name.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def user_name
  @user_name
end

#user_tokenObject

Returns the value of attribute user_token.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def user_token
  @user_token
end

#user_typeObject

Returns the value of attribute user_type.



37
38
39
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 37

def user_type
  @user_type
end

Instance Method Details

#to_javaObject



42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 42

def to_java()
  # conversion for user_token [type = java.util.UUID]
  @user_token = java.util.UUID.fromString(@user_token.to_s) unless @user_token.nil?

  # conversion for user_name [type = java.lang.String]
  @user_name = @user_name.to_s unless @user_name.nil?

  # conversion for call_origin [type = org.killbill.billing.util.callcontext.CallOrigin]
  @call_origin = Java::org.killbill.billing.util.callcontext.CallOrigin.value_of( @call_origin.to_s ) unless @call_origin.nil?

  # conversion for user_type [type = org.killbill.billing.util.callcontext.UserType]
  @user_type = Java::org.killbill.billing.util.callcontext.UserType.value_of( @user_type.to_s ) unless @user_type.nil?

  # conversion for reason_code [type = java.lang.String]
  @reason_code = @reason_code.to_s unless @reason_code.nil?

  # conversion for comments [type = java.lang.String]
  @comments = @comments.to_s unless @comments.nil?

  # conversion for created_date [type = org.joda.time.DateTime]
  if !@created_date.nil?
    @created_date =  (@created_date.kind_of? Time) ? DateTime.parse(@created_date.to_s) : @created_date
    @created_date = Java::org.joda.time.DateTime.new(@created_date.to_s, Java::org.joda.time.DateTimeZone::UTC)
  end

  # conversion for updated_date [type = org.joda.time.DateTime]
  if !@updated_date.nil?
    @updated_date =  (@updated_date.kind_of? Time) ? DateTime.parse(@updated_date.to_s) : @updated_date
    @updated_date = Java::org.joda.time.DateTime.new(@updated_date.to_s, Java::org.joda.time.DateTimeZone::UTC)
  end

  # conversion for account_id [type = java.util.UUID]
  @account_id = java.util.UUID.fromString(@account_id.to_s) unless @account_id.nil?

  # conversion for tenant_id [type = java.util.UUID]
  @tenant_id = java.util.UUID.fromString(@tenant_id.to_s) unless @tenant_id.nil?

  # conversion for target_date [type = org.joda.time.LocalDate]
  if !@target_date.nil?
    @target_date = Java::org.joda.time.LocalDate.parse(@target_date.to_s)
  end

  # conversion for invoice [type = org.killbill.billing.invoice.api.Invoice]
  @invoice = @invoice.to_java unless @invoice.nil?

  # conversion for existing_invoices [type = java.util.List]
  tmp = java.util.ArrayList.new
  (@existing_invoices || []).each do |m|
    # conversion for m [type = org.killbill.billing.invoice.api.Invoice]
    m = m.to_java unless m.nil?
    tmp.add(m)
  end
  @existing_invoices = tmp

  # conversion for is_dry_run [type = boolean]
  @is_dry_run = @is_dry_run.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(@is_dry_run)

  # conversion for is_rescheduled [type = boolean]
  @is_rescheduled = @is_rescheduled.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(@is_rescheduled)
  self
end

#to_ruby(j_obj) ⇒ Object



104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# File 'lib/killbill/gen/plugin-api/invoice_context.rb', line 104

def to_ruby(j_obj)
  # conversion for user_token [type = java.util.UUID]
  @user_token = j_obj.user_token
  @user_token = @user_token.nil? ? nil : @user_token.to_s

  # conversion for user_name [type = java.lang.String]
  @user_name = j_obj.user_name

  # conversion for call_origin [type = org.killbill.billing.util.callcontext.CallOrigin]
  @call_origin = j_obj.call_origin
  @call_origin = @call_origin.to_s.to_sym unless @call_origin.nil?

  # conversion for user_type [type = org.killbill.billing.util.callcontext.UserType]
  @user_type = j_obj.user_type
  @user_type = @user_type.to_s.to_sym unless @user_type.nil?

  # conversion for reason_code [type = java.lang.String]
  @reason_code = j_obj.reason_code

  # conversion for comments [type = java.lang.String]
  @comments = j_obj.comments

  # conversion for created_date [type = org.joda.time.DateTime]
  @created_date = j_obj.created_date
  if !@created_date.nil?
    fmt = Java::org.joda.time.format.ISODateTimeFormat.date_time_no_millis # See https://github.com/killbill/killbill-java-parser/issues/3
    str = fmt.print(@created_date)
    @created_date = DateTime.iso8601(str)
  end

  # conversion for updated_date [type = org.joda.time.DateTime]
  @updated_date = j_obj.updated_date
  if !@updated_date.nil?
    fmt = Java::org.joda.time.format.ISODateTimeFormat.date_time_no_millis # See https://github.com/killbill/killbill-java-parser/issues/3
    str = fmt.print(@updated_date)
    @updated_date = DateTime.iso8601(str)
  end

  # conversion for account_id [type = java.util.UUID]
  @account_id = j_obj.
  @account_id = @account_id.nil? ? nil : @account_id.to_s

  # conversion for tenant_id [type = java.util.UUID]
  @tenant_id = j_obj.tenant_id
  @tenant_id = @tenant_id.nil? ? nil : @tenant_id.to_s

  # conversion for target_date [type = org.joda.time.LocalDate]
  @target_date = j_obj.target_date
  if !@target_date.nil?
    @target_date = @target_date.to_s
  end

  # conversion for invoice [type = org.killbill.billing.invoice.api.Invoice]
  @invoice = j_obj.invoice
  @invoice = Killbill::Plugin::Model::Invoice.new.to_ruby(@invoice) unless @invoice.nil?

  # conversion for existing_invoices [type = java.util.List]
  @existing_invoices = j_obj.existing_invoices
  tmp = []
  (@existing_invoices || []).each do |m|
    # conversion for m [type = org.killbill.billing.invoice.api.Invoice]
    m = Killbill::Plugin::Model::Invoice.new.to_ruby(m) unless m.nil?
    tmp << m
  end
  @existing_invoices = tmp

  # conversion for is_dry_run [type = boolean]
  @is_dry_run = j_obj.is_dry_run
  if @is_dry_run.nil?
    @is_dry_run = false
  else
    tmp_bool = (@is_dry_run.java_kind_of? java.lang.Boolean) ? @is_dry_run.boolean_value : @is_dry_run
    @is_dry_run = tmp_bool ? true : false
  end

  # conversion for is_rescheduled [type = boolean]
  @is_rescheduled = j_obj.is_rescheduled
  if @is_rescheduled.nil?
    @is_rescheduled = false
  else
    tmp_bool = (@is_rescheduled.java_kind_of? java.lang.Boolean) ? @is_rescheduled.boolean_value : @is_rescheduled
    @is_rescheduled = tmp_bool ? true : false
  end
  self
end