Class: Io::Flow::V0::Models::OrganizationToken
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
All of the metadata associated with a given token.
Instance Attribute Summary collapse
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#environment ⇒ Object
readonly
Returns the value of attribute environment.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#organization ⇒ Object
readonly
Returns the value of attribute organization.
-
#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 = {}) ⇒ OrganizationToken
constructor
A new instance of OrganizationToken.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Token
Constructor Details
#initialize(incoming = {}) ⇒ OrganizationToken
Returns a new instance of OrganizationToken.
22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22785 def initialize(incoming={}) super(:discriminator => Token::Types::ORGANIZATION_TOKEN) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :organization, :user, :environment, :partial, :created_at], 'OrganizationToken') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @organization = (x = opts.delete(:organization); x.is_a?(::Io::Flow::V0::Models::OrganizationReference) ? x : ::Io::Flow::V0::Models::OrganizationReference.new(x)) @user = (x = opts.delete(:user); x.is_a?(::Io::Flow::V0::Models::UserReference) ? x : ::Io::Flow::V0::Models::UserReference.new(x)) @environment = (x = opts.delete(:environment); x.is_a?(::Io::Flow::V0::Models::Environment) ? x : ::Io::Flow::V0::Models::Environment.apply(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
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
22783 22784 22785 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22783 def created_at @created_at end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
22783 22784 22785 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22783 def description @description end |
#environment ⇒ Object (readonly)
Returns the value of attribute environment.
22783 22784 22785 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22783 def environment @environment end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
22783 22784 22785 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22783 def id @id end |
#organization ⇒ Object (readonly)
Returns the value of attribute organization.
22783 22784 22785 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22783 def organization @organization end |
#partial ⇒ Object (readonly)
Returns the value of attribute partial.
22783 22784 22785 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22783 def partial @partial end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
22783 22784 22785 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22783 def user @user end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
22802 22803 22804 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22802 def copy(incoming={}) OrganizationToken.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22806 def subtype_to_hash { :id => id, :organization => organization.to_hash, :user => user.to_hash, :environment => environment.value, :partial => partial, :created_at => created_at, :description => description } end |
#to_json ⇒ Object
22798 22799 22800 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22798 def to_json JSON.dump(to_hash) end |