Class: Cryptopay::InvoiceRecalculationParams

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ InvoiceRecalculationParams

Initializes the object

Parameters:

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

    Model attributes in the form of hash



30
31
32
# File 'lib/cryptopay/models/invoice_recalculation_params.rb', line 30

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

Class Method Details

.build_from_hash(data) ⇒ Cryptopay::InvoiceRecalculationParams

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:



23
24
25
26
# File 'lib/cryptopay/models/invoice_recalculation_params.rb', line 23

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

Instance Method Details

#force_commitObject

Is ‘false` if omitted. Set `true` to turn off two-step recalculation. Set `false` for two-step recalculation and commit it within 30 seconds



35
36
37
# File 'lib/cryptopay/models/invoice_recalculation_params.rb', line 35

def force_commit
  @attributes[:force_commit]
end

#inspectObject



57
58
59
# File 'lib/cryptopay/models/invoice_recalculation_params.rb', line 57

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



41
42
43
# File 'lib/cryptopay/models/invoice_recalculation_params.rb', line 41

def invalid_properties
  []
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



53
54
55
# File 'lib/cryptopay/models/invoice_recalculation_params.rb', line 53

def to_hash
  ENCODER.to_hash(@attributes)
end

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



47
48
49
# File 'lib/cryptopay/models/invoice_recalculation_params.rb', line 47

def valid?
  invalid_properties.empty?
end