Class: Io::Flow::V0::Models::ReturnSource
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ReturnSource
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Direct Known Subclasses
ReturnSourceExternalVendor, ReturnSourceFlow, ReturnSourceUndefinedType
Defined Under Namespace
Modules: Types
Instance Attribute Summary collapse
-
#discriminator ⇒ Object
readonly
Returns the value of attribute discriminator.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(incoming = {}) ⇒ ReturnSource
constructor
A new instance of ReturnSource.
- #subtype_to_hash ⇒ Object
- #to_hash ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ReturnSource
Returns a new instance of ReturnSource.
15057 15058 15059 15060 15061 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15057 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:discriminator], 'ReturnSource') @discriminator = HttpClient::Preconditions.assert_class('discriminator', opts.delete(:discriminator), String) end |
Instance Attribute Details
#discriminator ⇒ Object (readonly)
Returns the value of attribute discriminator.
15055 15056 15057 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15055 def discriminator @discriminator end |
Class Method Details
.from_json(hash) ⇒ Object
15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15071 def ReturnSource.from_json(hash) HttpClient::Preconditions.assert_class('hash', hash, Hash) discriminator = HttpClient::Helper.symbolize_keys(hash)[:discriminator].to_s.strip if discriminator.empty? raise "Union type[return_source] requires a field named 'discriminator'" end case discriminator when Types::RETURN_SOURCE_FLOW; ReturnSourceFlow.new(hash) when Types::RETURN_SOURCE_EXTERNAL_VENDOR; ReturnSourceExternalVendor.new(hash) else ReturnSourceUndefinedType.new(:discriminator => discriminator) end end |
Instance Method Details
#subtype_to_hash ⇒ Object
15063 15064 15065 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15063 def subtype_to_hash raise 'Cannot serialize an instance of return_source directly - must use one of the specific types: return_source_flow, return_source_external_vendor' end |
#to_hash ⇒ Object
15067 15068 15069 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15067 def to_hash subtype_to_hash.merge(:discriminator => @discriminator) end |