Class: Io::Flow::V0::Models::ChannelToken

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

Returns a new instance of ChannelToken.



32557
32558
32559
32560
32561
32562
32563
32564
32565
32566
32567
32568
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32557

def initialize(incoming={})
  super(:discriminator => Token::Types::CHANNEL_TOKEN)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :channel, :user, :partial, :created_at], 'ChannelToken')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @channel = (x = opts.delete(:channel); x.is_a?(::Io::Flow::V0::Models::ChannelReference) ? x : ::Io::Flow::V0::Models::ChannelReference.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

#channelObject (readonly)

Returns the value of attribute channel.



32555
32556
32557
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32555

def channel
  @channel
end

#cleartextObject (readonly)

Returns the value of attribute cleartext.



32555
32556
32557
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32555

def cleartext
  @cleartext
end

#created_atObject (readonly)

Returns the value of attribute created_at.



32555
32556
32557
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32555

def created_at
  @created_at
end

#descriptionObject (readonly)

Returns the value of attribute description.



32555
32556
32557
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32555

def description
  @description
end

#idObject (readonly)

Returns the value of attribute id.



32555
32556
32557
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32555

def id
  @id
end

#partialObject (readonly)

Returns the value of attribute partial.



32555
32556
32557
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32555

def partial
  @partial
end

#userObject (readonly)

Returns the value of attribute user.



32555
32556
32557
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32555

def user
  @user
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



32574
32575
32576
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32574

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

#subtype_to_hashObject



32578
32579
32580
32581
32582
32583
32584
32585
32586
32587
32588
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32578

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

#to_jsonObject



32570
32571
32572
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32570

def to_json
  JSON.dump(to_hash)
end