Class: SubskribeDevClient::Entity
- Inherits:
-
Object
- Object
- SubskribeDevClient::Entity
- Defined in:
- lib/subskribe_dev/models/entity.rb,
lib/subskribe_dev2/models/entity.rb
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#account_receivable_contact ⇒ Object
Returns the value of attribute account_receivable_contact.
-
#company_contact ⇒ Object
Returns the value of attribute company_contact.
-
#display_id ⇒ Object
Returns the value of attribute display_id.
-
#entity_id ⇒ Object
Returns the value of attribute entity_id.
-
#erp_id ⇒ Object
Returns the value of attribute erp_id.
-
#functional_currency ⇒ Object
Returns the value of attribute functional_currency.
-
#id ⇒ Object
Returns the value of attribute id.
-
#invoice_config ⇒ Object
Returns the value of attribute invoice_config.
-
#invoice_config_id ⇒ Object
Returns the value of attribute invoice_config_id.
-
#name ⇒ Object
Returns the value of attribute name.
-
#proration_mode ⇒ Object
Returns the value of attribute proration_mode.
-
#proration_scheme ⇒ Object
Returns the value of attribute proration_scheme.
-
#tenant_id ⇒ Object
Returns the value of attribute tenant_id.
-
#timezone ⇒ Object
Returns the value of attribute timezone.
-
#wire_instruction ⇒ Object
Returns the value of attribute wire_instruction.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ Entity
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ Entity
Initializes the object
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 |
# File 'lib/subskribe_dev/models/entity.rb', line 113 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?(:'id') self.id = attributes[:'id'] end if attributes.has_key?(:'tenantId') self.tenant_id = attributes[:'tenantId'] end 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?(:'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.account_receivable_contact = attributes[:'accountReceivableContact'] end if attributes.has_key?(:'erpId') self.erp_id = attributes[:'erpId'] end end |
Instance Attribute Details
#account_receivable_contact ⇒ Object
Returns the value of attribute account_receivable_contact.
43 44 45 |
# File 'lib/subskribe_dev/models/entity.rb', line 43 def account_receivable_contact @account_receivable_contact end |
#company_contact ⇒ Object
Returns the value of attribute company_contact.
41 42 43 |
# File 'lib/subskribe_dev/models/entity.rb', line 41 def company_contact @company_contact end |
#display_id ⇒ Object
Returns the value of attribute display_id.
23 24 25 |
# File 'lib/subskribe_dev/models/entity.rb', line 23 def display_id @display_id end |
#entity_id ⇒ Object
Returns the value of attribute entity_id.
21 22 23 |
# File 'lib/subskribe_dev/models/entity.rb', line 21 def entity_id @entity_id end |
#erp_id ⇒ Object
Returns the value of attribute erp_id.
45 46 47 |
# File 'lib/subskribe_dev/models/entity.rb', line 45 def erp_id @erp_id end |
#functional_currency ⇒ Object
Returns the value of attribute functional_currency.
37 38 39 |
# File 'lib/subskribe_dev/models/entity.rb', line 37 def functional_currency @functional_currency end |
#id ⇒ Object
Returns the value of attribute id.
17 18 19 |
# File 'lib/subskribe_dev/models/entity.rb', line 17 def id @id end |
#invoice_config ⇒ Object
Returns the value of attribute invoice_config.
33 34 35 |
# File 'lib/subskribe_dev/models/entity.rb', line 33 def invoice_config @invoice_config end |
#invoice_config_id ⇒ Object
Returns the value of attribute invoice_config_id.
31 32 33 |
# File 'lib/subskribe_dev/models/entity.rb', line 31 def invoice_config_id @invoice_config_id end |
#name ⇒ Object
Returns the value of attribute name.
25 26 27 |
# File 'lib/subskribe_dev/models/entity.rb', line 25 def name @name end |
#proration_mode ⇒ Object
Returns the value of attribute proration_mode.
29 30 31 |
# File 'lib/subskribe_dev/models/entity.rb', line 29 def proration_mode @proration_mode end |
#proration_scheme ⇒ Object
Returns the value of attribute proration_scheme.
27 28 29 |
# File 'lib/subskribe_dev/models/entity.rb', line 27 def proration_scheme @proration_scheme end |
#tenant_id ⇒ Object
Returns the value of attribute tenant_id.
19 20 21 |
# File 'lib/subskribe_dev/models/entity.rb', line 19 def tenant_id @tenant_id end |
#timezone ⇒ Object
Returns the value of attribute timezone.
35 36 37 |
# File 'lib/subskribe_dev/models/entity.rb', line 35 def timezone @timezone end |
#wire_instruction ⇒ Object
Returns the value of attribute wire_instruction.
39 40 41 |
# File 'lib/subskribe_dev/models/entity.rb', line 39 def wire_instruction @wire_instruction end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/subskribe_dev/models/entity.rb', line 70 def self.attribute_map { :'id' => :'id', :'tenant_id' => :'tenantId', :'entity_id' => :'entityId', :'display_id' => :'displayId', :'name' => :'name', :'proration_scheme' => :'prorationScheme', :'proration_mode' => :'prorationMode', :'invoice_config_id' => :'invoiceConfigId', :'invoice_config' => :'invoiceConfig', :'timezone' => :'timezone', :'functional_currency' => :'functionalCurrency', :'wire_instruction' => :'wireInstruction', :'company_contact' => :'companyContact', :'account_receivable_contact' => :'accountReceivableContact', :'erp_id' => :'erpId' } end |
.swagger_types ⇒ Object
Attribute type mapping.
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'lib/subskribe_dev/models/entity.rb', line 91 def self.swagger_types { :'id' => :'String', :'tenant_id' => :'String', :'entity_id' => :'String', :'display_id' => :'String', :'name' => :'String', :'proration_scheme' => :'String', :'proration_mode' => :'String', :'invoice_config_id' => :'String', :'invoice_config' => :'NumberConfig', :'timezone' => :'TimeZone', :'functional_currency' => :'String', :'wire_instruction' => :'String', :'company_contact' => :'AccountContact', :'account_receivable_contact' => :'AccountContact', :'erp_id' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
# File 'lib/subskribe_dev/models/entity.rb', line 219 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && tenant_id == o.tenant_id && 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 && timezone == o.timezone && functional_currency == o.functional_currency && wire_instruction == o.wire_instruction && company_contact == o.company_contact && account_receivable_contact == o.account_receivable_contact && erp_id == o.erp_id end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
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 303 304 305 306 307 308 309 310 311 |
# File 'lib/subskribe_dev/models/entity.rb', line 275 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 = SubskribeDevClient.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
341 342 343 344 345 346 347 348 349 350 351 352 353 |
# File 'lib/subskribe_dev/models/entity.rb', line 341 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
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
# File 'lib/subskribe_dev/models/entity.rb', line 254 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
241 242 243 |
# File 'lib/subskribe_dev/models/entity.rb', line 241 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
247 248 249 |
# File 'lib/subskribe_dev/models/entity.rb', line 247 def hash [id, tenant_id, entity_id, display_id, name, proration_scheme, proration_mode, invoice_config_id, invoice_config, timezone, functional_currency, wire_instruction, company_contact, account_receivable_contact, erp_id].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
182 183 184 185 |
# File 'lib/subskribe_dev/models/entity.rb', line 182 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
321 322 323 |
# File 'lib/subskribe_dev/models/entity.rb', line 321 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
327 328 329 330 331 332 333 334 335 |
# File 'lib/subskribe_dev/models/entity.rb', line 327 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_s ⇒ String
Returns the string representation of the object
315 316 317 |
# File 'lib/subskribe_dev/models/entity.rb', line 315 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
189 190 191 192 193 194 195 |
# File 'lib/subskribe_dev/models/entity.rb', line 189 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 |