Class: Worldline::Connect::SDK::V1::Domain::HostedCheckoutSpecificOutput
- Inherits:
-
Domain::DataObject
- Object
- Domain::DataObject
- Worldline::Connect::SDK::V1::Domain::HostedCheckoutSpecificOutput
- Defined in:
- lib/worldline/connect/sdk/v1/domain/hosted_checkout_specific_output.rb
Instance Attribute Summary collapse
-
#hosted_checkout_id ⇒ String
The current value of hosted_checkout_id.
-
#variant ⇒ String
The current value of variant.
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#hosted_checkout_id ⇒ String
Returns the current value of hosted_checkout_id.
14 15 16 |
# File 'lib/worldline/connect/sdk/v1/domain/hosted_checkout_specific_output.rb', line 14 def hosted_checkout_id @hosted_checkout_id end |
#variant ⇒ String
Returns the current value of variant.
14 15 16 |
# File 'lib/worldline/connect/sdk/v1/domain/hosted_checkout_specific_output.rb', line 14 def variant @variant end |
Instance Method Details
#from_hash(hash) ⇒ Object
28 29 30 31 32 33 34 35 36 |
# File 'lib/worldline/connect/sdk/v1/domain/hosted_checkout_specific_output.rb', line 28 def from_hash(hash) super if hash.has_key? 'hostedCheckoutId' @hosted_checkout_id = hash['hostedCheckoutId'] end if hash.has_key? 'variant' @variant = hash['variant'] end end |
#to_h ⇒ Hash
21 22 23 24 25 26 |
# File 'lib/worldline/connect/sdk/v1/domain/hosted_checkout_specific_output.rb', line 21 def to_h hash = super hash['hostedCheckoutId'] = @hosted_checkout_id unless @hosted_checkout_id.nil? hash['variant'] = @variant unless @variant.nil? hash end |