class Io::Flow::V0::Models::OrganizationTokenV2

Attributes

cleartext[R]
created_at[R]
description[R]
id[R]
organization[R]
partial[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 55625
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

Public Instance Methods

copy(incoming={}) click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 55642
def copy(incoming={})
  OrganizationTokenV2.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 55646
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_json() click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 55638
def to_json
  JSON.dump(to_hash)
end