Class: Worldline::Connect::SDK::V1::Domain::GetMandateResponse
- Inherits:
-
Domain::DataObject
- Object
- Domain::DataObject
- Worldline::Connect::SDK::V1::Domain::GetMandateResponse
- Defined in:
- lib/worldline/connect/sdk/v1/domain/get_mandate_response.rb
Instance Attribute Summary collapse
-
#mandate ⇒ Worldline::Connect::SDK::V1::Domain::MandateResponse
The current value of mandate.
Instance Method Summary collapse
Methods inherited from Domain::DataObject
Instance Attribute Details
#mandate ⇒ Worldline::Connect::SDK::V1::Domain::MandateResponse
Returns the current value of mandate.
14 15 16 |
# File 'lib/worldline/connect/sdk/v1/domain/get_mandate_response.rb', line 14 def mandate @mandate end |
Instance Method Details
#from_hash(hash) ⇒ Object
25 26 27 28 29 30 31 |
# File 'lib/worldline/connect/sdk/v1/domain/get_mandate_response.rb', line 25 def from_hash(hash) super if hash.has_key? 'mandate' raise TypeError, "value '%s' is not a Hash" % [hash['mandate']] unless hash['mandate'].is_a? Hash @mandate = Worldline::Connect::SDK::V1::Domain::MandateResponse.new_from_hash(hash['mandate']) end end |
#to_h ⇒ Hash
19 20 21 22 23 |
# File 'lib/worldline/connect/sdk/v1/domain/get_mandate_response.rb', line 19 def to_h hash = super hash['mandate'] = @mandate.to_h unless @mandate.nil? hash end |