Class: Cryptopay::ExchangeTransferResult

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ExchangeTransferResult

Initializes the object

Parameters:

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

    Model attributes in the form of hash



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

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

Class Method Details

.build_from_hash(data) ⇒ Cryptopay::ExchangeTransferResult

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:



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

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

Instance Method Details

#dataObject



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

def data
  @attributes[:data]
end

#inspectObject



64
65
66
# File 'lib/cryptopay/models/exchange_transfer_result.rb', line 64

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



40
41
42
43
44
45
46
47
48
49
50
# File 'lib/cryptopay/models/exchange_transfer_result.rb', line 40

def invalid_properties
  properties = []

  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



60
61
62
# File 'lib/cryptopay/models/exchange_transfer_result.rb', line 60

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



54
55
56
# File 'lib/cryptopay/models/exchange_transfer_result.rb', line 54

def valid?
  invalid_properties.empty?
end