Class: Io::Flow::V0::Models::ChannelToken
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#channel ⇒ Object
readonly
Returns the value of attribute channel.
-
#cleartext ⇒ Object
readonly
Returns the value of attribute cleartext.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#partial ⇒ Object
readonly
Returns the value of attribute partial.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Attributes inherited from Token
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ChannelToken
constructor
A new instance of ChannelToken.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Token
Constructor Details
#initialize(incoming = {}) ⇒ ChannelToken
Returns a new instance of ChannelToken.
35546 35547 35548 35549 35550 35551 35552 35553 35554 35555 35556 35557 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35546 def initialize(incoming={}) super(:discriminator => Token::Types::CHANNEL_TOKEN) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :channel, :user, :partial, :created_at], 'ChannelToken') @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)) @partial = HttpClient::Preconditions.assert_class('partial', opts.delete(:partial), String) @cleartext = (x = opts.delete(:cleartext); x.nil? ? nil : HttpClient::Preconditions.assert_class('cleartext', x, String)) @created_at = HttpClient::Preconditions.assert_class('created_at', HttpClient::Helper.to_date_time_iso8601(opts.delete(:created_at)), DateTime) @description = (x = opts.delete(:description); x.nil? ? nil : HttpClient::Preconditions.assert_class('description', x, String)) end |
Instance Attribute Details
#channel ⇒ Object (readonly)
Returns the value of attribute channel.
35544 35545 35546 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35544 def channel @channel end |
#cleartext ⇒ Object (readonly)
Returns the value of attribute cleartext.
35544 35545 35546 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35544 def cleartext @cleartext end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
35544 35545 35546 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35544 def created_at @created_at end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
35544 35545 35546 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35544 def description @description end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
35544 35545 35546 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35544 def id @id end |
#partial ⇒ Object (readonly)
Returns the value of attribute partial.
35544 35545 35546 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35544 def partial @partial end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
35544 35545 35546 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35544 def user @user end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
35563 35564 35565 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35563 def copy(incoming={}) ChannelToken.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
35567 35568 35569 35570 35571 35572 35573 35574 35575 35576 35577 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35567 def subtype_to_hash { :id => id, :channel => channel.to_hash, :user => user.to_hash, :partial => partial, :cleartext => cleartext, :created_at => created_at, :description => description } end |
#to_json ⇒ Object
35559 35560 35561 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 35559 def to_json JSON.dump(to_hash) end |