Class: AdvancedBilling::CreditCardAttributes
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- AdvancedBilling::CreditCardAttributes
- Defined in:
- lib/advanced_billing/models/credit_card_attributes.rb
Overview
CreditCardAttributes Model.
Instance Attribute Summary collapse
-
#expiration_month ⇒ String
TODO: Write general description for this method.
-
#expiration_year ⇒ String
TODO: Write general description for this method.
-
#full_number ⇒ String
TODO: Write general description for this method.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
-
.nullables ⇒ Object
An array for nullable fields.
-
.optionals ⇒ Object
An array for optional fields.
-
.validate(value) ⇒ Object
Validates an instance of the object from a given value.
Instance Method Summary collapse
-
#initialize(full_number: SKIP, expiration_month: SKIP, expiration_year: SKIP, additional_properties: {}) ⇒ CreditCardAttributes
constructor
A new instance of CreditCardAttributes.
Methods inherited from BaseModel
Constructor Details
#initialize(full_number: SKIP, expiration_month: SKIP, expiration_year: SKIP, additional_properties: {}) ⇒ CreditCardAttributes
Returns a new instance of CreditCardAttributes.
47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/advanced_billing/models/credit_card_attributes.rb', line 47 def initialize(full_number: SKIP, expiration_month: SKIP, expiration_year: SKIP, additional_properties: {}) @full_number = full_number unless full_number == SKIP @expiration_month = expiration_month unless expiration_month == SKIP @expiration_year = expiration_year unless expiration_year == SKIP # Add additional model properties to the instance. additional_properties.each do |_name, _value| instance_variable_set("@#{_name}", _value) end end |
Instance Attribute Details
#expiration_month ⇒ String
TODO: Write general description for this method
18 19 20 |
# File 'lib/advanced_billing/models/credit_card_attributes.rb', line 18 def expiration_month @expiration_month end |
#expiration_year ⇒ String
TODO: Write general description for this method
22 23 24 |
# File 'lib/advanced_billing/models/credit_card_attributes.rb', line 22 def expiration_year @expiration_year end |
#full_number ⇒ String
TODO: Write general description for this method
14 15 16 |
# File 'lib/advanced_billing/models/credit_card_attributes.rb', line 14 def full_number @full_number end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/advanced_billing/models/credit_card_attributes.rb', line 60 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. full_number = hash.key?('full_number') ? hash['full_number'] : SKIP expiration_month = hash.key?('expiration_month') ? hash['expiration_month'] : SKIP expiration_year = hash.key?('expiration_year') ? hash['expiration_year'] : SKIP # Clean out expected properties from Hash. names.each_value { |k| hash.delete(k) } # Create object from extracted values. CreditCardAttributes.new(full_number: full_number, expiration_month: expiration_month, expiration_year: expiration_year, additional_properties: hash) end |
.names ⇒ Object
A mapping from model property names to API property names.
25 26 27 28 29 30 31 |
# File 'lib/advanced_billing/models/credit_card_attributes.rb', line 25 def self.names @_hash = {} if @_hash.nil? @_hash['full_number'] = 'full_number' @_hash['expiration_month'] = 'expiration_month' @_hash['expiration_year'] = 'expiration_year' @_hash end |
.nullables ⇒ Object
An array for nullable fields
43 44 45 |
# File 'lib/advanced_billing/models/credit_card_attributes.rb', line 43 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
34 35 36 37 38 39 40 |
# File 'lib/advanced_billing/models/credit_card_attributes.rb', line 34 def self.optionals %w[ full_number expiration_month expiration_year ] end |
.validate(value) ⇒ Object
Validates an instance of the object from a given value.
82 83 84 85 86 87 88 |
# File 'lib/advanced_billing/models/credit_card_attributes.rb', line 82 def self.validate(value) return true if value.instance_of? self return false unless value.instance_of? Hash true end |