Class: Io::Flow::V0::Models::OnlineAuthorization
- Inherits:
-
Authorization
- Object
- Authorization
- Io::Flow::V0::Models::OnlineAuthorization
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
readonly
Returns the value of attribute amount.
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#currency ⇒ Object
readonly
Returns the value of attribute currency.
-
#customer ⇒ Object
readonly
Returns the value of attribute customer.
-
#destination ⇒ Object
readonly
Returns the value of attribute destination.
-
#details ⇒ Object
readonly
Returns the value of attribute details.
-
#expires_at ⇒ Object
readonly
Returns the value of attribute expires_at.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#ip ⇒ Object
readonly
Returns the value of attribute ip.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#method ⇒ Object
readonly
Returns the value of attribute method.
-
#order ⇒ Object
readonly
Returns the value of attribute order.
-
#payment ⇒ Object
readonly
Returns the value of attribute payment.
-
#requested ⇒ Object
readonly
Returns the value of attribute requested.
-
#result ⇒ Object
readonly
Returns the value of attribute result.
Attributes inherited from Authorization
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ OnlineAuthorization
constructor
A new instance of OnlineAuthorization.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Authorization
Constructor Details
#initialize(incoming = {}) ⇒ OnlineAuthorization
Returns a new instance of OnlineAuthorization.
24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24261 def initialize(incoming={}) super(:discriminator => Authorization::Types::ONLINE_AUTHORIZATION) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :key, :amount, :currency, :customer, :attributes, :result, :created_at], 'OnlineAuthorization') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @key = HttpClient::Preconditions.assert_class('key', opts.delete(:key), String) @method = (x = opts.delete(:method); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::PaymentMethod) ? x : ::Io::Flow::V0::Models::PaymentMethod.new(x))) @details = (x = opts.delete(:details); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::OnlineAuthorizationDetails) ? x : ::Io::Flow::V0::Models::OnlineAuthorizationDetails.from_json(x))) @payment = (x = opts.delete(:payment); x.nil? ? nil : HttpClient::Preconditions.assert_class('payment', HttpClient::Helper.to_object(x), Hash)) @amount = HttpClient::Preconditions.assert_class('amount', HttpClient::Helper.to_big_decimal(opts.delete(:amount)), BigDecimal) @currency = HttpClient::Preconditions.assert_class('currency', opts.delete(:currency), String) @requested = (x = opts.delete(:requested); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Money) ? x : ::Io::Flow::V0::Models::Money.new(x))) @customer = (x = opts.delete(:customer); x.is_a?(::Io::Flow::V0::Models::Customer) ? x : ::Io::Flow::V0::Models::Customer.new(x)) @attributes = HttpClient::Preconditions.assert_class('attributes', opts.delete(:attributes), Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h } @destination = (x = opts.delete(:destination); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Address) ? x : ::Io::Flow::V0::Models::Address.new(x))) @order = (x = opts.delete(:order); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::AuthorizationOrderReference) ? x : ::Io::Flow::V0::Models::AuthorizationOrderReference.new(x))) @ip = (x = opts.delete(:ip); x.nil? ? nil : HttpClient::Preconditions.assert_class('ip', x, String)) @result = (x = opts.delete(:result); x.is_a?(::Io::Flow::V0::Models::AuthorizationResult) ? x : ::Io::Flow::V0::Models::AuthorizationResult.new(x)) @created_at = HttpClient::Preconditions.assert_class('created_at', HttpClient::Helper.to_date_time_iso8601(opts.delete(:created_at)), DateTime) @expires_at = (x = opts.delete(:expires_at); x.nil? ? nil : HttpClient::Preconditions.assert_class('expires_at', HttpClient::Helper.to_date_time_iso8601(x), DateTime)) end |
Instance Attribute Details
#amount ⇒ Object (readonly)
Returns the value of attribute amount.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def amount @amount end |
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def attributes @attributes end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def created_at @created_at end |
#currency ⇒ Object (readonly)
Returns the value of attribute currency.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def currency @currency end |
#customer ⇒ Object (readonly)
Returns the value of attribute customer.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def customer @customer end |
#destination ⇒ Object (readonly)
Returns the value of attribute destination.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def destination @destination end |
#details ⇒ Object (readonly)
Returns the value of attribute details.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def details @details end |
#expires_at ⇒ Object (readonly)
Returns the value of attribute expires_at.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def expires_at @expires_at end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def id @id end |
#ip ⇒ Object (readonly)
Returns the value of attribute ip.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def ip @ip end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def key @key end |
#method ⇒ Object (readonly)
Returns the value of attribute method.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def method @method end |
#order ⇒ Object (readonly)
Returns the value of attribute order.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def order @order end |
#payment ⇒ Object (readonly)
Returns the value of attribute payment.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def payment @payment end |
#requested ⇒ Object (readonly)
Returns the value of attribute requested.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def requested @requested end |
#result ⇒ Object (readonly)
Returns the value of attribute result.
24259 24260 24261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24259 def result @result end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
24287 24288 24289 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24287 def copy(incoming={}) OnlineAuthorization.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24291 def subtype_to_hash { :id => id, :key => key, :method => method.nil? ? nil : method.to_hash, :details => details.nil? ? nil : details.to_hash, :payment => payment, :amount => amount, :currency => currency, :requested => requested.nil? ? nil : requested.to_hash, :customer => customer.to_hash, :attributes => attributes, :destination => destination.nil? ? nil : destination.to_hash, :order => order.nil? ? nil : order.to_hash, :ip => ip, :result => result.to_hash, :created_at => created_at, :expires_at => expires_at } end |
#to_json ⇒ Object
24283 24284 24285 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24283 def to_json JSON.dump(to_hash) end |