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.
30358 30359 30360 30361 30362 30363 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30358 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.
30356 30357 30358 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30356 def type @type end |
#version ⇒ Object (readonly)
Returns the value of attribute version.
30356 30357 30358 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30356 def version @version end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
30369 30370 30371 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30369 def copy(incoming={}) EcommercePlatformForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
30373 30374 30375 30376 30377 30378 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30373 def to_hash { :type => type.value, :version => version } end |
#to_json ⇒ Object
30365 30366 30367 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30365 def to_json JSON.dump(to_hash) end |