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.
-
#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.
30874 30875 30876 30877 30878 30879 30880 30881 30882 30883 30884 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30874 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) @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.
30872 30873 30874 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30872 def channel @channel end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
30872 30873 30874 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30872 def created_at @created_at end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
30872 30873 30874 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30872 def description @description end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
30872 30873 30874 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30872 def id @id end |
#partial ⇒ Object (readonly)
Returns the value of attribute partial.
30872 30873 30874 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30872 def partial @partial end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
30872 30873 30874 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30872 def user @user end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
30890 30891 30892 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30890 def copy(incoming={}) ChannelToken.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
30894 30895 30896 30897 30898 30899 30900 30901 30902 30903 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30894 def subtype_to_hash { :id => id, :channel => channel.to_hash, :user => user.to_hash, :partial => partial, :created_at => created_at, :description => description } end |
#to_json ⇒ Object
30886 30887 30888 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30886 def to_json JSON.dump(to_hash) end |