Class: Io::Flow::V0::Models::OrganizationToken

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 = {}) ⇒ OrganizationToken

Returns a new instance of OrganizationToken.



42714
42715
42716
42717
42718
42719
42720
42721
42722
42723
42724
42725
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42714

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

Returns the value of attribute created_at.



42712
42713
42714
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42712

def created_at
  @created_at
end

#descriptionObject (readonly)

Returns the value of attribute description.



42712
42713
42714
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42712

def description
  @description
end

#environmentObject (readonly)

Returns the value of attribute environment.



42712
42713
42714
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42712

def environment
  @environment
end

#idObject (readonly)

Returns the value of attribute id.



42712
42713
42714
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42712

def id
  @id
end

#organizationObject (readonly)

Returns the value of attribute organization.



42712
42713
42714
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42712

def organization
  @organization
end

#partialObject (readonly)

Returns the value of attribute partial.



42712
42713
42714
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42712

def partial
  @partial
end

#userObject (readonly)

Returns the value of attribute user.



42712
42713
42714
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42712

def user
  @user
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



42731
42732
42733
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42731

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

#subtype_to_hashObject



42735
42736
42737
42738
42739
42740
42741
42742
42743
42744
42745
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42735

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_jsonObject



42727
42728
42729
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42727

def to_json
  JSON.dump(to_hash)
end