Class: AdvancedBilling::ProformaInvoiceCredit
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- AdvancedBilling::ProformaInvoiceCredit
- Defined in:
- lib/advanced_billing/models/proforma_invoice_credit.rb
Overview
ProformaInvoiceCredit Model.
Instance Attribute Summary collapse
-
#applied_amount ⇒ String
TODO: Write general description for this method.
-
#memo ⇒ String
TODO: Write general description for this method.
-
#original_amount ⇒ String
TODO: Write general description for this method.
-
#uid ⇒ 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.
Instance Method Summary collapse
-
#initialize(uid = SKIP, memo = SKIP, original_amount = SKIP, applied_amount = SKIP) ⇒ ProformaInvoiceCredit
constructor
A new instance of ProformaInvoiceCredit.
Methods inherited from BaseModel
Constructor Details
#initialize(uid = SKIP, memo = SKIP, original_amount = SKIP, applied_amount = SKIP) ⇒ ProformaInvoiceCredit
Returns a new instance of ProformaInvoiceCredit.
53 54 55 56 57 58 59 |
# File 'lib/advanced_billing/models/proforma_invoice_credit.rb', line 53 def initialize(uid = SKIP, memo = SKIP, original_amount = SKIP, applied_amount = SKIP) @uid = uid unless uid == SKIP @memo = memo unless memo == SKIP @original_amount = original_amount unless original_amount == SKIP @applied_amount = applied_amount unless applied_amount == SKIP end |
Instance Attribute Details
#applied_amount ⇒ String
TODO: Write general description for this method
26 27 28 |
# File 'lib/advanced_billing/models/proforma_invoice_credit.rb', line 26 def applied_amount @applied_amount end |
#memo ⇒ String
TODO: Write general description for this method
18 19 20 |
# File 'lib/advanced_billing/models/proforma_invoice_credit.rb', line 18 def memo @memo end |
#original_amount ⇒ String
TODO: Write general description for this method
22 23 24 |
# File 'lib/advanced_billing/models/proforma_invoice_credit.rb', line 22 def original_amount @original_amount end |
#uid ⇒ String
TODO: Write general description for this method
14 15 16 |
# File 'lib/advanced_billing/models/proforma_invoice_credit.rb', line 14 def uid @uid end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/advanced_billing/models/proforma_invoice_credit.rb', line 62 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. uid = hash.key?('uid') ? hash['uid'] : SKIP memo = hash.key?('memo') ? hash['memo'] : SKIP original_amount = hash.key?('original_amount') ? hash['original_amount'] : SKIP applied_amount = hash.key?('applied_amount') ? hash['applied_amount'] : SKIP # Create object from extracted values. ProformaInvoiceCredit.new(uid, memo, original_amount, applied_amount) end |
.names ⇒ Object
A mapping from model property names to API property names.
29 30 31 32 33 34 35 36 |
# File 'lib/advanced_billing/models/proforma_invoice_credit.rb', line 29 def self.names @_hash = {} if @_hash.nil? @_hash['uid'] = 'uid' @_hash['memo'] = 'memo' @_hash['original_amount'] = 'original_amount' @_hash['applied_amount'] = 'applied_amount' @_hash end |
.nullables ⇒ Object
An array for nullable fields
49 50 51 |
# File 'lib/advanced_billing/models/proforma_invoice_credit.rb', line 49 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
39 40 41 42 43 44 45 46 |
# File 'lib/advanced_billing/models/proforma_invoice_credit.rb', line 39 def self.optionals %w[ uid memo original_amount applied_amount ] end |