Class: Io::Flow::V0::Models::EcommercePlatformForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::EcommercePlatformForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#type ⇒ Object
readonly
Returns the value of attribute type.
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ EcommercePlatformForm
constructor
A new instance of EcommercePlatformForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ EcommercePlatformForm
Returns a new instance of EcommercePlatformForm.
29157 29158 29159 29160 29161 29162 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29157 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:type], 'EcommercePlatformForm') @type = (x = opts.delete(:type); x.is_a?(::Io::Flow::V0::Models::EcommercePlatformType) ? x : ::Io::Flow::V0::Models::EcommercePlatformType.apply(x)) @version = (x = opts.delete(:version); x.nil? ? nil : HttpClient::Preconditions.assert_class('version', x, String)) end |
Instance Attribute Details
#type ⇒ Object (readonly)
Returns the value of attribute type.
29155 29156 29157 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29155 def type @type end |
#version ⇒ Object (readonly)
Returns the value of attribute version.
29155 29156 29157 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29155 def version @version end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
29168 29169 29170 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29168 def copy(incoming={}) EcommercePlatformForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
29172 29173 29174 29175 29176 29177 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29172 def to_hash { :type => type.value, :version => version } end |
#to_json ⇒ Object
29164 29165 29166 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29164 def to_json JSON.dump(to_hash) end |