Class: Io::Flow::V0::Models::ChannelTokenForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ChannelTokenForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#channel_id ⇒ Object
readonly
Returns the value of attribute channel_id.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ChannelTokenForm
constructor
A new instance of ChannelTokenForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ChannelTokenForm
Returns a new instance of ChannelTokenForm.
32596 32597 32598 32599 32600 32601 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32596 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:channel_id], 'ChannelTokenForm') @channel_id = HttpClient::Preconditions.assert_class('channel_id', opts.delete(:channel_id), String) @description = (x = opts.delete(:description); x.nil? ? nil : HttpClient::Preconditions.assert_class('description', x, String)) end |
Instance Attribute Details
#channel_id ⇒ Object (readonly)
Returns the value of attribute channel_id.
32594 32595 32596 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32594 def channel_id @channel_id end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
32594 32595 32596 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32594 def description @description end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
32607 32608 32609 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32607 def copy(incoming={}) ChannelTokenForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
32611 32612 32613 32614 32615 32616 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32611 def to_hash { :channel_id => channel_id, :description => description } end |
#to_json ⇒ Object
32603 32604 32605 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32603 def to_json JSON.dump(to_hash) end |