Class: Io::Flow::V0::Models::ShopifyLocationFlowCenterMappingForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ShopifyLocationFlowCenterMappingForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#flow_center_key ⇒ Object
readonly
Returns the value of attribute flow_center_key.
-
#shopify_location_id ⇒ Object
readonly
Returns the value of attribute shopify_location_id.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ShopifyLocationFlowCenterMappingForm
constructor
A new instance of ShopifyLocationFlowCenterMappingForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ShopifyLocationFlowCenterMappingForm
Returns a new instance of ShopifyLocationFlowCenterMappingForm.
67846 67847 67848 67849 67850 67851 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67846 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:shopify_location_id, :flow_center_key], 'ShopifyLocationFlowCenterMappingForm') @shopify_location_id = HttpClient::Preconditions.assert_class('shopify_location_id', opts.delete(:shopify_location_id), Integer) @flow_center_key = HttpClient::Preconditions.assert_class('flow_center_key', opts.delete(:flow_center_key), String) end |
Instance Attribute Details
#flow_center_key ⇒ Object (readonly)
Returns the value of attribute flow_center_key.
67844 67845 67846 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67844 def flow_center_key @flow_center_key end |
#shopify_location_id ⇒ Object (readonly)
Returns the value of attribute shopify_location_id.
67844 67845 67846 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67844 def shopify_location_id @shopify_location_id end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
67857 67858 67859 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67857 def copy(incoming={}) ShopifyLocationFlowCenterMappingForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
67861 67862 67863 67864 67865 67866 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67861 def to_hash { :shopify_location_id => shopify_location_id, :flow_center_key => flow_center_key } end |
#to_json ⇒ Object
67853 67854 67855 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 67853 def to_json JSON.dump(to_hash) end |