Class: Io::Flow::V0::Models::ChannelTokenForm

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_idObject (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

#descriptionObject (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_hashObject



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_jsonObject



32603
32604
32605
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32603

def to_json
  JSON.dump(to_hash)
end