Class: AdvancedBilling::IssueServiceCredit

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/advanced_billing/models/issue_service_credit.rb

Overview

IssueServiceCredit Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(amount = nil, memo = nil) ⇒ IssueServiceCredit

Returns a new instance of IssueServiceCredit.



38
39
40
41
# File 'lib/advanced_billing/models/issue_service_credit.rb', line 38

def initialize(amount = nil, memo = nil)
  @amount = amount
  @memo = memo
end

Instance Attribute Details

#amountObject

TODO: Write general description for this method

Returns:

  • (Object)


14
15
16
# File 'lib/advanced_billing/models/issue_service_credit.rb', line 14

def amount
  @amount
end

#memoString

TODO: Write general description for this method

Returns:

  • (String)


18
19
20
# File 'lib/advanced_billing/models/issue_service_credit.rb', line 18

def memo
  @memo
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/advanced_billing/models/issue_service_credit.rb', line 44

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  amount = hash.key?('amount') ? APIHelper.deserialize_union_type(
    UnionTypeLookUp.get(:IssueServiceCreditAmount), hash['amount']
  ) : nil
  memo = hash.key?('memo') ? hash['memo'] : nil

  # Create object from extracted values.
  IssueServiceCredit.new(amount,
                         memo)
end

.namesObject

A mapping from model property names to API property names.



21
22
23
24
25
26
# File 'lib/advanced_billing/models/issue_service_credit.rb', line 21

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['amount'] = 'amount'
  @_hash['memo'] = 'memo'
  @_hash
end

.nullablesObject

An array for nullable fields



34
35
36
# File 'lib/advanced_billing/models/issue_service_credit.rb', line 34

def self.nullables
  []
end

.optionalsObject

An array for optional fields



29
30
31
# File 'lib/advanced_billing/models/issue_service_credit.rb', line 29

def self.optionals
  []
end

.validate(value) ⇒ Object

Validates an instance of the object from a given value.

Parameters:



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/advanced_billing/models/issue_service_credit.rb', line 60

def self.validate(value)
  if value.instance_of? self
    return (
      UnionTypeLookUp.get(:IssueServiceCreditAmount)
                     .validate(value.amount) and
        APIHelper.valid_type?(value.memo,
                              ->(val) { val.instance_of? String })
    )
  end

  return false unless value.instance_of? Hash

  (
    UnionTypeLookUp.get(:IssueServiceCreditAmount)
                   .validate(value['amount']) and
      APIHelper.valid_type?(value['memo'],
                            ->(val) { val.instance_of? String })
  )
end