Class: OnlinePayments::SDK::Domain::CreatedTokenResponse

Inherits:
OnlinePayments::SDK::DataObject show all
Defined in:
lib/onlinepayments/sdk/domain/created_token_response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#cardOnlinePayments::SDK::Domain::CardWithoutCvv

Returns the current value of card.

Returns:



16
17
18
# File 'lib/onlinepayments/sdk/domain/created_token_response.rb', line 16

def card
  @card
end

#external_token_linkedOnlinePayments::SDK::Domain::ExternalTokenLinked

Returns the current value of external_token_linked.

Returns:



16
17
18
# File 'lib/onlinepayments/sdk/domain/created_token_response.rb', line 16

def external_token_linked
  @external_token_linked
end

#is_new_tokentrue/false

Returns the current value of is_new_token.

Returns:

  • (true/false)

    the current value of is_new_token



16
17
18
# File 'lib/onlinepayments/sdk/domain/created_token_response.rb', line 16

def is_new_token
  @is_new_token
end

#tokenString

Returns the current value of token.

Returns:

  • (String)

    the current value of token



16
17
18
# File 'lib/onlinepayments/sdk/domain/created_token_response.rb', line 16

def token
  @token
end

#token_statusString

Returns the current value of token_status.

Returns:

  • (String)

    the current value of token_status



16
17
18
# File 'lib/onlinepayments/sdk/domain/created_token_response.rb', line 16

def token_status
  @token_status
end

Instance Method Details

#from_hash(hash) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/onlinepayments/sdk/domain/created_token_response.rb', line 34

def from_hash(hash)
  super
  if hash.key? 'card'
    raise TypeError, "value '%s' is not a Hash" % [hash['card']] unless hash['card'].is_a? Hash
    @card = OnlinePayments::SDK::Domain::CardWithoutCvv.new_from_hash(hash['card'])
  end
  if hash.key? 'externalTokenLinked'
    raise TypeError, "value '%s' is not a Hash" % [hash['externalTokenLinked']] unless hash['externalTokenLinked'].is_a? Hash
    @external_token_linked = OnlinePayments::SDK::Domain::ExternalTokenLinked.new_from_hash(hash['externalTokenLinked'])
  end
  @is_new_token = hash['isNewToken'] if hash.key? 'isNewToken'
  @token = hash['token'] if hash.key? 'token'
  @token_status = hash['tokenStatus'] if hash.key? 'tokenStatus'
end

#to_hHash

Returns:

  • (Hash)


24
25
26
27
28
29
30
31
32
# File 'lib/onlinepayments/sdk/domain/created_token_response.rb', line 24

def to_h
  hash = super
  hash['card'] = @card.to_h if @card
  hash['externalTokenLinked'] = @external_token_linked.to_h if @external_token_linked
  hash['isNewToken'] = @is_new_token unless @is_new_token.nil?
  hash['token'] = @token unless @token.nil?
  hash['tokenStatus'] = @token_status unless @token_status.nil?
  hash
end