Class: Worldline::Connect::SDK::V1::Domain::HostedCheckoutSpecificOutput

Inherits:
Domain::DataObject
  • Object
show all
Defined in:
lib/worldline/connect/sdk/v1/domain/hosted_checkout_specific_output.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Domain::DataObject

new_from_hash

Instance Attribute Details

#hosted_checkout_idString

Returns the current value of hosted_checkout_id.

Returns:

  • (String)

    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

#variantString

Returns the current value of variant.

Returns:

  • (String)

    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_hHash

Returns:

  • (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