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.
11771 11772 11773 11774 11775 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11771 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.
11769 11770 11771 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11769 def discriminator @discriminator end |
Class Method Details
.from_json(hash) ⇒ Object
11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11785 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
11777 11778 11779 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11777 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
11781 11782 11783 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11781 def to_hash subtype_to_hash.merge(:discriminator => @discriminator) end |