Class: OnlinePayments::SDK::Domain::NetworkTokenEssentials

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#binString

Returns the current value of bin.

Returns:

  • (String)

    the current value of bin



13
14
15
# File 'lib/onlinepayments/sdk/domain/network_token_essentials.rb', line 13

def bin
  @bin
end

#country_codeString

Returns the current value of country_code.

Returns:

  • (String)

    the current value of country_code



13
14
15
# File 'lib/onlinepayments/sdk/domain/network_token_essentials.rb', line 13

def country_code
  @country_code
end

#network_tokenString

Returns the current value of network_token.

Returns:

  • (String)

    the current value of network_token



13
14
15
# File 'lib/onlinepayments/sdk/domain/network_token_essentials.rb', line 13

def network_token
  @network_token
end

#token_expiry_dateString

Returns the current value of token_expiry_date.

Returns:

  • (String)

    the current value of token_expiry_date



13
14
15
# File 'lib/onlinepayments/sdk/domain/network_token_essentials.rb', line 13

def token_expiry_date
  @token_expiry_date
end

Instance Method Details

#from_hash(hash) ⇒ Object



29
30
31
32
33
34
35
# File 'lib/onlinepayments/sdk/domain/network_token_essentials.rb', line 29

def from_hash(hash)
  super
  @bin = hash['bin'] if hash.key? 'bin'
  @country_code = hash['countryCode'] if hash.key? 'countryCode'
  @network_token = hash['networkToken'] if hash.key? 'networkToken'
  @token_expiry_date = hash['tokenExpiryDate'] if hash.key? 'tokenExpiryDate'
end

#to_hHash

Returns:

  • (Hash)


20
21
22
23
24
25
26
27
# File 'lib/onlinepayments/sdk/domain/network_token_essentials.rb', line 20

def to_h
  hash = super
  hash['bin'] = @bin unless @bin.nil?
  hash['countryCode'] = @country_code unless @country_code.nil?
  hash['networkToken'] = @network_token unless @network_token.nil?
  hash['tokenExpiryDate'] = @token_expiry_date unless @token_expiry_date.nil?
  hash
end