Class: Cryptopay::InvoiceCallback

Inherits:
Object
  • Object
show all
Defined in:
lib/cryptopay/models/invoice_callback.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ InvoiceCallback

Initializes the object

Parameters:

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

    Model attributes in the form of hash



34
35
36
# File 'lib/cryptopay/models/invoice_callback.rb', line 34

def initialize(attributes = {})
  @attributes = ENCODER.sanitize(attributes)
end

Class Method Details

.build_from_hash(data) ⇒ Cryptopay::InvoiceCallback

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:



27
28
29
30
# File 'lib/cryptopay/models/invoice_callback.rb', line 27

def self.build_from_hash(data)
  attributes = ENCODER.build_from_hash(data)
  new(attributes)
end

Instance Method Details

#dataObject



46
47
48
# File 'lib/cryptopay/models/invoice_callback.rb', line 46

def data
  @attributes[:data]
end

#eventObject



42
43
44
# File 'lib/cryptopay/models/invoice_callback.rb', line 42

def event
  @attributes[:event]
end

#inspectObject



84
85
86
# File 'lib/cryptopay/models/invoice_callback.rb', line 84

def inspect
  "#<#{self.class}:0x#{object_id.to_s(16)}> JSON: " + JSON.pretty_generate(to_hash)
end

#invalid_propertiesObject

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

Returns:

  • Array for valid properties with the reasons



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/cryptopay/models/invoice_callback.rb', line 52

def invalid_properties
  properties = []

  properties.push('invalid value for "type", type cannot be nil.') if type.nil?

  properties.push('invalid value for "event", event cannot be nil.') if event.nil?

  if !event.nil? && !%w[created refunded recalculated status_changed transaction_created transaction_confirmed].include?(event)
    properties.push('invalid value for event, must be one of "created", "refunded", "recalculated", "status_changed", "transaction_created", "transaction_confirmed"')
  end

  properties.push('invalid value for "data", data cannot be nil.') if data.nil?

  data&.invalid_properties&.each do |prop|
    properties.push("invalid value for \"data\": #{prop}")
  end

  properties
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



80
81
82
# File 'lib/cryptopay/models/invoice_callback.rb', line 80

def to_hash
  ENCODER.to_hash(@attributes)
end

#typeObject



38
39
40
# File 'lib/cryptopay/models/invoice_callback.rb', line 38

def type
  @attributes[:type]
end

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



74
75
76
# File 'lib/cryptopay/models/invoice_callback.rb', line 74

def valid?
  invalid_properties.empty?
end