Class: OnlinePayments::SDK::Domain::ProtectionEligibility

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from OnlinePayments::SDK::DataObject

new_from_hash

Instance Attribute Details

#eligibilityString

Returns the current value of eligibility.

Returns:

  • (String)

    the current value of eligibility



11
12
13
# File 'lib/onlinepayments/sdk/domain/protection_eligibility.rb', line 11

def eligibility
  @eligibility
end

#typeString

Returns the current value of type.

Returns:

  • (String)

    the current value of type



11
12
13
# File 'lib/onlinepayments/sdk/domain/protection_eligibility.rb', line 11

def type
  @type
end

Instance Method Details

#from_hash(hash) ⇒ Object



23
24
25
26
27
# File 'lib/onlinepayments/sdk/domain/protection_eligibility.rb', line 23

def from_hash(hash)
  super
  @eligibility = hash['eligibility'] if hash.key? 'eligibility'
  @type = hash['type'] if hash.key? 'type'
end

#to_hHash

Returns:

  • (Hash)


16
17
18
19
20
21
# File 'lib/onlinepayments/sdk/domain/protection_eligibility.rb', line 16

def to_h
  hash = super
  hash['eligibility'] = @eligibility unless @eligibility.nil?
  hash['type'] = @type unless @type.nil?
  hash
end