Class: Io::Flow::V0::Models::ChannelTokenReference

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

Instance Attribute Summary collapse

Attributes inherited from TokenReference

#discriminator

Instance Method Summary collapse

Methods inherited from TokenReference

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ ChannelTokenReference

Returns a new instance of ChannelTokenReference.



30911
30912
30913
30914
30915
30916
30917
30918
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30911

def initialize(incoming={})
  super(:discriminator => TokenReference::Types::CHANNEL_TOKEN_REFERENCE)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :channel, :user], 'ChannelTokenReference')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @channel = (x = opts.delete(:channel); x.is_a?(::Io::Flow::V0::Models::ChannelReference) ? x : ::Io::Flow::V0::Models::ChannelReference.new(x))
  @user = (x = opts.delete(:user); x.is_a?(::Io::Flow::V0::Models::UserReference) ? x : ::Io::Flow::V0::Models::UserReference.new(x))
end

Instance Attribute Details

#channelObject (readonly)

Returns the value of attribute channel.



30909
30910
30911
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30909

def channel
  @channel
end

#idObject (readonly)

Returns the value of attribute id.



30909
30910
30911
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30909

def id
  @id
end

#userObject (readonly)

Returns the value of attribute user.



30909
30910
30911
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30909

def user
  @user
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



30924
30925
30926
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30924

def copy(incoming={})
  ChannelTokenReference.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#subtype_to_hashObject



30928
30929
30930
30931
30932
30933
30934
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30928

def subtype_to_hash
  {
    :id => id,
    :channel => channel.to_hash,
    :user => user.to_hash
  }
end

#to_jsonObject



30920
30921
30922
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30920

def to_json
  JSON.dump(to_hash)
end