Class: Io::Flow::V0::Models::OrganizationTokenV2

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

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

Returns a new instance of OrganizationTokenV2.



51484
51485
51486
51487
51488
51489
51490
51491
51492
51493
51494
51495
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51484

def initialize(incoming={})
  super(:discriminator => Token::Types::ORGANIZATION_TOKEN_V2)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :organization, :user, :partial, :created_at], 'OrganizationTokenV2')
  @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))
  @partial = HttpClient::Preconditions.assert_class('partial', opts.delete(:partial), String)
  @cleartext = (x = opts.delete(:cleartext); x.nil? ? nil : HttpClient::Preconditions.assert_class('cleartext', x, 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

#cleartextObject (readonly)

Returns the value of attribute cleartext.



51482
51483
51484
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51482

def cleartext
  @cleartext
end

#created_atObject (readonly)

Returns the value of attribute created_at.



51482
51483
51484
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51482

def created_at
  @created_at
end

#descriptionObject (readonly)

Returns the value of attribute description.



51482
51483
51484
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51482

def description
  @description
end

#idObject (readonly)

Returns the value of attribute id.



51482
51483
51484
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51482

def id
  @id
end

#organizationObject (readonly)

Returns the value of attribute organization.



51482
51483
51484
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51482

def organization
  @organization
end

#partialObject (readonly)

Returns the value of attribute partial.



51482
51483
51484
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51482

def partial
  @partial
end

#userObject (readonly)

Returns the value of attribute user.



51482
51483
51484
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51482

def user
  @user
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



51501
51502
51503
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51501

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

#subtype_to_hashObject



51505
51506
51507
51508
51509
51510
51511
51512
51513
51514
51515
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51505

def subtype_to_hash
  {
    :id => id,
    :organization => organization.to_hash,
    :user => user.to_hash,
    :partial => partial,
    :cleartext => cleartext,
    :created_at => created_at,
    :description => description
  }
end

#to_jsonObject



51497
51498
51499
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51497

def to_json
  JSON.dump(to_hash)
end