Class: Io::Flow::V0::Models::ChannelTokenReference
- Inherits:
-
TokenReference
- Object
- TokenReference
- Io::Flow::V0::Models::ChannelTokenReference
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#channel ⇒ Object
readonly
Returns the value of attribute channel.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Attributes inherited from TokenReference
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ChannelTokenReference
constructor
A new instance of ChannelTokenReference.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from TokenReference
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
#channel ⇒ Object (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 |
#id ⇒ Object (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 |
#user ⇒ Object (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_hash ⇒ Object
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_json ⇒ Object
30920 30921 30922 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30920 def to_json JSON.dump(to_hash) end |