Class: Devdraft::LiquidationAddressResponseDto

Inherits:
ApiModelBase
  • Object
show all
Defined in:
lib/devdraft/models/liquidation_address_response_dto.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from ApiModelBase

_deserialize, #_to_hash, #to_body, #to_s

Constructor Details

#initialize(attributes = {}) ⇒ LiquidationAddressResponseDto

Initializes the object

Parameters:

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

    Model attributes in the form of hash



118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 118

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `Devdraft::LiquidationAddressResponseDto` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  acceptable_attribute_map = self.class.acceptable_attribute_map
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!acceptable_attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `Devdraft::LiquidationAddressResponseDto`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'id')
    self.id = attributes[:'id']
  else
    self.id = nil
  end

  if attributes.key?(:'state')
    self.state = attributes[:'state']
  else
    self.state = nil
  end

  if attributes.key?(:'customer_id')
    self.customer_id = attributes[:'customer_id']
  else
    self.customer_id = nil
  end

  if attributes.key?(:'chain')
    self.chain = attributes[:'chain']
  else
    self.chain = nil
  end

  if attributes.key?(:'currency')
    self.currency = attributes[:'currency']
  else
    self.currency = nil
  end

  if attributes.key?(:'address')
    self.address = attributes[:'address']
  else
    self.address = nil
  end

  if attributes.key?(:'external_account_id')
    self. = attributes[:'external_account_id']
  end

  if attributes.key?(:'prefunded_account_id')
    self. = attributes[:'prefunded_account_id']
  end

  if attributes.key?(:'bridge_wallet_id')
    self.bridge_wallet_id = attributes[:'bridge_wallet_id']
  end

  if attributes.key?(:'destination_payment_rail')
    self.destination_payment_rail = attributes[:'destination_payment_rail']
  end

  if attributes.key?(:'destination_currency')
    self.destination_currency = attributes[:'destination_currency']
  end

  if attributes.key?(:'custom_developer_fee_percent')
    self.custom_developer_fee_percent = attributes[:'custom_developer_fee_percent']
  end

  if attributes.key?(:'created_at')
    self.created_at = attributes[:'created_at']
  else
    self.created_at = nil
  end

  if attributes.key?(:'updated_at')
    self.updated_at = attributes[:'updated_at']
  else
    self.updated_at = nil
  end
end

Instance Attribute Details

#addressObject

Liquidation address



34
35
36
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 34

def address
  @address
end

#bridge_wallet_idObject

Bridge wallet ID



43
44
45
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 43

def bridge_wallet_id
  @bridge_wallet_id
end

#chainObject

Blockchain chain



28
29
30
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 28

def chain
  @chain
end

#created_atObject

Creation timestamp



55
56
57
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 55

def created_at
  @created_at
end

#currencyObject

Currency



31
32
33
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 31

def currency
  @currency
end

#custom_developer_fee_percentObject

Custom developer fee percent



52
53
54
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 52

def custom_developer_fee_percent
  @custom_developer_fee_percent
end

#customer_idObject

Customer ID this liquidation address belongs to



25
26
27
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 25

def customer_id
  @customer_id
end

#destination_currencyObject

Destination currency



49
50
51
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 49

def destination_currency
  @destination_currency
end

#destination_payment_railObject

Destination payment rail



46
47
48
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 46

def destination_payment_rail
  @destination_payment_rail
end

#external_account_idObject

External account ID



37
38
39
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 37

def 
  
end

#idObject

Unique identifier for the liquidation address



19
20
21
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 19

def id
  @id
end

#prefunded_account_idObject

Prefunded account ID



40
41
42
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 40

def 
  
end

#stateObject

Current state of the liquidation address



22
23
24
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 22

def state
  @state
end

#updated_atObject

Last update timestamp



58
59
60
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 58

def updated_at
  @updated_at
end

Class Method Details

.acceptable_attribute_mapObject

Returns attribute mapping this model knows about



81
82
83
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 81

def self.acceptable_attribute_map
  attribute_map
end

.acceptable_attributesObject

Returns all the JSON keys this model knows about



86
87
88
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 86

def self.acceptable_attributes
  acceptable_attribute_map.values
end

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



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

def self.attribute_map
  {
    :'id' => :'id',
    :'state' => :'state',
    :'customer_id' => :'customer_id',
    :'chain' => :'chain',
    :'currency' => :'currency',
    :'address' => :'address',
    :'external_account_id' => :'external_account_id',
    :'prefunded_account_id' => :'prefunded_account_id',
    :'bridge_wallet_id' => :'bridge_wallet_id',
    :'destination_payment_rail' => :'destination_payment_rail',
    :'destination_currency' => :'destination_currency',
    :'custom_developer_fee_percent' => :'custom_developer_fee_percent',
    :'created_at' => :'created_at',
    :'updated_at' => :'updated_at'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 376

def self.build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  attributes = attributes.transform_keys(&:to_sym)
  transformed_hash = {}
  openapi_types.each_pair do |key, type|
    if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = nil
    elsif type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[attribute_map[key]].is_a?(Array)
        transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
      end
    elsif !attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
    end
  end
  new(transformed_hash)
end

.openapi_nullableObject

List of attributes with nullable: true



111
112
113
114
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 111

def self.openapi_nullable
  Set.new([
  ])
end

.openapi_typesObject

Attribute type mapping.



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 91

def self.openapi_types
  {
    :'id' => :'String',
    :'state' => :'String',
    :'customer_id' => :'String',
    :'chain' => :'String',
    :'currency' => :'String',
    :'address' => :'String',
    :'external_account_id' => :'String',
    :'prefunded_account_id' => :'String',
    :'bridge_wallet_id' => :'String',
    :'destination_payment_rail' => :'String',
    :'destination_currency' => :'String',
    :'custom_developer_fee_percent' => :'String',
    :'created_at' => :'String',
    :'updated_at' => :'String'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 342

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      id == o.id &&
      state == o.state &&
      customer_id == o.customer_id &&
      chain == o.chain &&
      currency == o.currency &&
      address == o.address &&
       == o. &&
       == o. &&
      bridge_wallet_id == o.bridge_wallet_id &&
      destination_payment_rail == o.destination_payment_rail &&
      destination_currency == o.destination_currency &&
      custom_developer_fee_percent == o.custom_developer_fee_percent &&
      created_at == o.created_at &&
      updated_at == o.updated_at
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


363
364
365
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 363

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



369
370
371
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 369

def hash
  [id, state, customer_id, chain, currency, address, , , bridge_wallet_id, destination_payment_rail, destination_currency, custom_developer_fee_percent, created_at, updated_at].hash
end

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properties with the reasons



207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 207

def list_invalid_properties
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
  invalid_properties = Array.new
  if @id.nil?
    invalid_properties.push('invalid value for "id", id cannot be nil.')
  end

  if @state.nil?
    invalid_properties.push('invalid value for "state", state cannot be nil.')
  end

  if @customer_id.nil?
    invalid_properties.push('invalid value for "customer_id", customer_id cannot be nil.')
  end

  if @chain.nil?
    invalid_properties.push('invalid value for "chain", chain cannot be nil.')
  end

  if @currency.nil?
    invalid_properties.push('invalid value for "currency", currency cannot be nil.')
  end

  if @address.nil?
    invalid_properties.push('invalid value for "address", address cannot be nil.')
  end

  if @created_at.nil?
    invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
  end

  if @updated_at.nil?
    invalid_properties.push('invalid value for "updated_at", updated_at cannot be nil.')
  end

  invalid_properties
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



398
399
400
401
402
403
404
405
406
407
408
409
410
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 398

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    if value.nil?
      is_nullable = self.class.openapi_nullable.include?(attr)
      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
    end

    hash[param] = _to_hash(value)
  end
  hash
end

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



247
248
249
250
251
252
253
254
255
256
257
258
# File 'lib/devdraft/models/liquidation_address_response_dto.rb', line 247

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  return false if @id.nil?
  return false if @state.nil?
  return false if @customer_id.nil?
  return false if @chain.nil?
  return false if @currency.nil?
  return false if @address.nil?
  return false if @created_at.nil?
  return false if @updated_at.nil?
  true
end