Class: Io::Flow::V0::Models::PartnerToken
- 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.
-
#partial ⇒ Object
readonly
Returns the value of attribute partial.
-
#partner ⇒ Object
readonly
Returns the value of attribute partner.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Attributes inherited from Token
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PartnerToken
constructor
A new instance of PartnerToken.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Token
Constructor Details
#initialize(incoming = {}) ⇒ PartnerToken
Returns a new instance of PartnerToken.
23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23088 def initialize(incoming={}) super(:discriminator => Token::Types::PARTNER_TOKEN) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :partner, :user, :environment, :partial, :created_at], 'PartnerToken') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @partner = (x = opts.delete(:partner); x.is_a?(::Io::Flow::V0::Models::TokenPartnerReference) ? x : ::Io::Flow::V0::Models::TokenPartnerReference.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.
23086 23087 23088 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23086 def created_at @created_at end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
23086 23087 23088 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23086 def description @description end |
#environment ⇒ Object (readonly)
Returns the value of attribute environment.
23086 23087 23088 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23086 def environment @environment end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
23086 23087 23088 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23086 def id @id end |
#partial ⇒ Object (readonly)
Returns the value of attribute partial.
23086 23087 23088 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23086 def partial @partial end |
#partner ⇒ Object (readonly)
Returns the value of attribute partner.
23086 23087 23088 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23086 def partner @partner end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
23086 23087 23088 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23086 def user @user end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
23105 23106 23107 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23105 def copy(incoming={}) PartnerToken.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23109 def subtype_to_hash { :id => id, :partner => partner.to_hash, :user => user.to_hash, :environment => environment.value, :partial => partial, :created_at => created_at, :description => description } end |
#to_json ⇒ Object
23101 23102 23103 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23101 def to_json JSON.dump(to_hash) end |