Class: Io::Flow::V0::Models::PostPaymentRedirectUrls
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PostPaymentRedirectUrls
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
The URLs to which the customer will be redirected based on the authorization status.
Instance Attribute Summary collapse
-
#failure ⇒ Object
readonly
Returns the value of attribute failure.
-
#success ⇒ Object
readonly
Returns the value of attribute success.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PostPaymentRedirectUrls
constructor
A new instance of PostPaymentRedirectUrls.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ PostPaymentRedirectUrls
Returns a new instance of PostPaymentRedirectUrls.
52682 52683 52684 52685 52686 52687 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 52682 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:success], 'PostPaymentRedirectUrls') @success = HttpClient::Preconditions.assert_class('success', opts.delete(:success), String) @failure = (x = opts.delete(:failure); x.nil? ? nil : HttpClient::Preconditions.assert_class('failure', x, String)) end |
Instance Attribute Details
#failure ⇒ Object (readonly)
Returns the value of attribute failure.
52680 52681 52682 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 52680 def failure @failure end |
#success ⇒ Object (readonly)
Returns the value of attribute success.
52680 52681 52682 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 52680 def success @success end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
52693 52694 52695 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 52693 def copy(incoming={}) PostPaymentRedirectUrls.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
52697 52698 52699 52700 52701 52702 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 52697 def to_hash { :success => success, :failure => failure } end |
#to_json ⇒ Object
52689 52690 52691 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 52689 def to_json JSON.dump(to_hash) end |