Class: Io::Flow::V0::Models::InlineAuthorizationDetails
- Inherits:
-
OnlineAuthorizationDetails
- Object
- OnlineAuthorizationDetails
- Io::Flow::V0::Models::InlineAuthorizationDetails
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Represents an online payment that requires the client token from underlying payment processor before entering their payment information.
Instance Attribute Summary collapse
-
#client_token ⇒ Object
readonly
Returns the value of attribute client_token.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#parameters ⇒ Object
readonly
Returns the value of attribute parameters.
Attributes inherited from OnlineAuthorizationDetails
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ InlineAuthorizationDetails
constructor
A new instance of InlineAuthorizationDetails.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from OnlineAuthorizationDetails
Constructor Details
#initialize(incoming = {}) ⇒ InlineAuthorizationDetails
Returns a new instance of InlineAuthorizationDetails.
34480 34481 34482 34483 34484 34485 34486 34487 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34480 def initialize(incoming={}) super(:discriminator => OnlineAuthorizationDetails::Types::INLINE_AUTHORIZATION_DETAILS) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id], 'InlineAuthorizationDetails') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @client_token = (x = opts.delete(:client_token); x.nil? ? nil : HttpClient::Preconditions.assert_class('client_token', x, String)) @parameters = (x = opts.delete(:parameters); x.nil? ? nil : HttpClient::Preconditions.assert_class('parameters', HttpClient::Helper.to_object(x), Hash)) end |
Instance Attribute Details
#client_token ⇒ Object (readonly)
Returns the value of attribute client_token.
34478 34479 34480 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34478 def client_token @client_token end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
34478 34479 34480 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34478 def id @id end |
#parameters ⇒ Object (readonly)
Returns the value of attribute parameters.
34478 34479 34480 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34478 def parameters @parameters end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
34493 34494 34495 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34493 def copy(incoming={}) InlineAuthorizationDetails.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
34497 34498 34499 34500 34501 34502 34503 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34497 def subtype_to_hash { :id => id, :client_token => client_token, :parameters => parameters } end |
#to_json ⇒ Object
34489 34490 34491 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34489 def to_json JSON.dump(to_hash) end |