Class: Io::Flow::V0::Models::PartnerToken

Inherits:
Token
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

All of the metadata associated with a given token.

Instance Attribute Summary collapse

Attributes inherited from Token

#discriminator

Instance Method Summary collapse

Methods inherited from Token

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ PartnerToken

Returns a new instance of PartnerToken.



51873
51874
51875
51876
51877
51878
51879
51880
51881
51882
51883
51884
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51873

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_atObject (readonly)

Returns the value of attribute created_at.



51871
51872
51873
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51871

def created_at
  @created_at
end

#descriptionObject (readonly)

Returns the value of attribute description.



51871
51872
51873
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51871

def description
  @description
end

#environmentObject (readonly)

Returns the value of attribute environment.



51871
51872
51873
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51871

def environment
  @environment
end

#idObject (readonly)

Returns the value of attribute id.



51871
51872
51873
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51871

def id
  @id
end

#partialObject (readonly)

Returns the value of attribute partial.



51871
51872
51873
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51871

def partial
  @partial
end

#partnerObject (readonly)

Returns the value of attribute partner.



51871
51872
51873
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51871

def partner
  @partner
end

#userObject (readonly)

Returns the value of attribute user.



51871
51872
51873
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51871

def user
  @user
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



51890
51891
51892
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51890

def copy(incoming={})
  PartnerToken.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#subtype_to_hashObject



51894
51895
51896
51897
51898
51899
51900
51901
51902
51903
51904
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51894

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_jsonObject



51886
51887
51888
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51886

def to_json
  JSON.dump(to_hash)
end