Class: SubskribeSandboxClient::EntityJson

Inherits:
Object
  • Object
show all
Defined in:
lib/subskribe_sandbox/models/entity_json.rb

Defined Under Namespace

Classes: EnumAttributeValidator

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ EntityJson

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



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
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 109

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  if attributes.has_key?(:'entityId')
    self.entity_id = attributes[:'entityId']
  end

  if attributes.has_key?(:'displayId')
    self.display_id = attributes[:'displayId']
  end

  if attributes.has_key?(:'name')
    self.name = attributes[:'name']
  end

  if attributes.has_key?(:'prorationScheme')
    self.proration_scheme = attributes[:'prorationScheme']
  end

  if attributes.has_key?(:'prorationMode')
    self.proration_mode = attributes[:'prorationMode']
  end

  if attributes.has_key?(:'invoiceConfigId')
    self.invoice_config_id = attributes[:'invoiceConfigId']
  end

  if attributes.has_key?(:'invoiceConfig')
    self.invoice_config = attributes[:'invoiceConfig']
  end

  if attributes.has_key?(:'creditMemoConfig')
    self.credit_memo_config = attributes[:'creditMemoConfig']
  end

  if attributes.has_key?(:'timezone')
    self.timezone = attributes[:'timezone']
  end

  if attributes.has_key?(:'functionalCurrency')
    self.functional_currency = attributes[:'functionalCurrency']
  end

  if attributes.has_key?(:'wireInstruction')
    self.wire_instruction = attributes[:'wireInstruction']
  end

  if attributes.has_key?(:'companyContact')
    self.company_contact = attributes[:'companyContact']
  end

  if attributes.has_key?(:'accountReceivableContact')
    self. = attributes[:'accountReceivableContact']
  end

  if attributes.has_key?(:'erpId')
    self.erp_id = attributes[:'erpId']
  end
end

Instance Attribute Details

#account_receivable_contactObject

Returns the value of attribute account_receivable_contact.



41
42
43
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 41

def 
  @account_receivable_contact
end

#company_contactObject

Returns the value of attribute company_contact.



39
40
41
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 39

def company_contact
  @company_contact
end

#credit_memo_configObject

Returns the value of attribute credit_memo_config.



31
32
33
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 31

def credit_memo_config
  @credit_memo_config
end

#display_idObject

Returns the value of attribute display_id.



19
20
21
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 19

def display_id
  @display_id
end

#entity_idObject

Returns the value of attribute entity_id.



17
18
19
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 17

def entity_id
  @entity_id
end

#erp_idObject

Returns the value of attribute erp_id.



43
44
45
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 43

def erp_id
  @erp_id
end

#functional_currencyObject

Returns the value of attribute functional_currency.



35
36
37
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 35

def functional_currency
  @functional_currency
end

#invoice_configObject

Returns the value of attribute invoice_config.



29
30
31
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 29

def invoice_config
  @invoice_config
end

#invoice_config_idObject

Returns the value of attribute invoice_config_id.



27
28
29
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 27

def invoice_config_id
  @invoice_config_id
end

#nameObject

Returns the value of attribute name.



21
22
23
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 21

def name
  @name
end

#proration_modeObject

Returns the value of attribute proration_mode.



25
26
27
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 25

def proration_mode
  @proration_mode
end

#proration_schemeObject

Returns the value of attribute proration_scheme.



23
24
25
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 23

def proration_scheme
  @proration_scheme
end

#timezoneObject

Returns the value of attribute timezone.



33
34
35
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 33

def timezone
  @timezone
end

#wire_instructionObject

Returns the value of attribute wire_instruction.



37
38
39
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 37

def wire_instruction
  @wire_instruction
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 68

def self.attribute_map
  {
    :'entity_id' => :'entityId',
    :'display_id' => :'displayId',
    :'name' => :'name',
    :'proration_scheme' => :'prorationScheme',
    :'proration_mode' => :'prorationMode',
    :'invoice_config_id' => :'invoiceConfigId',
    :'invoice_config' => :'invoiceConfig',
    :'credit_memo_config' => :'creditMemoConfig',
    :'timezone' => :'timezone',
    :'functional_currency' => :'functionalCurrency',
    :'wire_instruction' => :'wireInstruction',
    :'company_contact' => :'companyContact',
    :'account_receivable_contact' => :'accountReceivableContact',
    :'erp_id' => :'erpId'
  }
end

.swagger_typesObject

Attribute type mapping.



88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 88

def self.swagger_types
  {
    :'entity_id' => :'String',
    :'display_id' => :'String',
    :'name' => :'String',
    :'proration_scheme' => :'String',
    :'proration_mode' => :'String',
    :'invoice_config_id' => :'String',
    :'invoice_config' => :'NumberConfig',
    :'credit_memo_config' => :'NumberConfig',
    :'timezone' => :'String',
    :'functional_currency' => :'String',
    :'wire_instruction' => :'String',
    :'company_contact' => :'CompanyContactJson',
    :'account_receivable_contact' => :'AccountReceivableContactJson',
    :'erp_id' => :'String'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 211

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      entity_id == o.entity_id &&
      display_id == o.display_id &&
      name == o.name &&
      proration_scheme == o.proration_scheme &&
      proration_mode == o.proration_mode &&
      invoice_config_id == o.invoice_config_id &&
      invoice_config == o.invoice_config &&
      credit_memo_config == o.credit_memo_config &&
      timezone == o.timezone &&
      functional_currency == o.functional_currency &&
      wire_instruction == o.wire_instruction &&
      company_contact == o.company_contact &&
       == o. &&
      erp_id == o.erp_id
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 266

def _deserialize(type, value)
  case type.to_sym
  when :DateTime
    DateTime.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :BOOLEAN
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    temp_model = SubskribeSandboxClient.const_get(type).new
    temp_model.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



332
333
334
335
336
337
338
339
340
341
342
343
344
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 332

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 245

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.swagger_types.each_pair do |key, type|
    if type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    end # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


232
233
234
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 232

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



238
239
240
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 238

def hash
  [entity_id, display_id, name, proration_scheme, proration_mode, invoice_config_id, invoice_config, credit_memo_config, timezone, functional_currency, wire_instruction, company_contact, , erp_id].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



174
175
176
177
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 174

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



312
313
314
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 312

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



318
319
320
321
322
323
324
325
326
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 318

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    next if value.nil?
    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



306
307
308
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 306

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



181
182
183
184
185
186
187
# File 'lib/subskribe_sandbox/models/entity_json.rb', line 181

def valid?
  proration_scheme_validator = EnumAttributeValidator.new('String', ['FIXED_DAYS', 'CALENDAR_DAYS'])
  return false unless proration_scheme_validator.valid?(@proration_scheme)
  proration_mode_validator = EnumAttributeValidator.new('String', ['NORMALIZED', 'EXACT_DAYS', 'EXACT'])
  return false unless proration_mode_validator.valid?(@proration_mode)
  true
end