Class: Io::Flow::V0::Models::OrganizationTokenV2
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#cleartext ⇒ Object
readonly
Returns the value of attribute cleartext.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#organization ⇒ Object
readonly
Returns the value of attribute organization.
-
#partial ⇒ Object
readonly
Returns the value of attribute partial.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Attributes inherited from Token
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ OrganizationTokenV2
constructor
A new instance of OrganizationTokenV2.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Token
Constructor Details
#initialize(incoming = {}) ⇒ OrganizationTokenV2
Returns a new instance of OrganizationTokenV2.
55625 55626 55627 55628 55629 55630 55631 55632 55633 55634 55635 55636 |
# 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 |
Instance Attribute Details
#cleartext ⇒ Object (readonly)
Returns the value of attribute cleartext.
55623 55624 55625 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55623 def cleartext @cleartext end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
55623 55624 55625 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55623 def created_at @created_at end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
55623 55624 55625 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55623 def description @description end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
55623 55624 55625 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55623 def id @id end |
#organization ⇒ Object (readonly)
Returns the value of attribute organization.
55623 55624 55625 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55623 def organization @organization end |
#partial ⇒ Object (readonly)
Returns the value of attribute partial.
55623 55624 55625 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55623 def partial @partial end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
55623 55624 55625 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55623 def user @user end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
55642 55643 55644 |
# 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 ⇒ Object
55646 55647 55648 55649 55650 55651 55652 55653 55654 55655 55656 |
# 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 ⇒ Object
55638 55639 55640 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55638 def to_json JSON.dump(to_hash) end |