class Io::Flow::V0::Models::PartnerToken
All of the metadata associated with a given token.
Attributes
created_at[R]
description[R]
environment[R]
id[R]
partial[R]
partner[R]
user[R]
Public Class Methods
new(incoming={})
click to toggle source
Calls superclass method
Io::Flow::V0::Models::Token::new
# File lib/flow_commerce/flow_api_v0_client.rb, line 56108 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
Public Instance Methods
copy(incoming={})
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 56125 def copy(incoming={}) PartnerToken.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end
subtype_to_hash()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 56129 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()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 56121 def to_json JSON.dump(to_hash) end