Class: Io::Flow::V0::Models::ExperiencePaymentMethodRuleForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ExperiencePaymentMethodRuleForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#payment_method_id ⇒ Object
readonly
Returns the value of attribute payment_method_id.
-
#q ⇒ Object
readonly
Returns the value of attribute q.
-
#tags ⇒ Object
readonly
Returns the value of attribute tags.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ExperiencePaymentMethodRuleForm
constructor
A new instance of ExperiencePaymentMethodRuleForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ExperiencePaymentMethodRuleForm
Returns a new instance of ExperiencePaymentMethodRuleForm.
42155 42156 42157 42158 42159 42160 42161 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42155 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:payment_method_id, :tags], 'ExperiencePaymentMethodRuleForm') @payment_method_id = HttpClient::Preconditions.assert_class('payment_method_id', opts.delete(:payment_method_id), String) @tags = HttpClient::Preconditions.assert_class('tags', opts.delete(:tags), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ExperiencePaymentMethodTag) ? x : ::Io::Flow::V0::Models::ExperiencePaymentMethodTag.apply(x)) } @q = (x = opts.delete(:q); x.nil? ? nil : HttpClient::Preconditions.assert_class('q', x, String)) end |
Instance Attribute Details
#payment_method_id ⇒ Object (readonly)
Returns the value of attribute payment_method_id.
42153 42154 42155 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42153 def payment_method_id @payment_method_id end |
#q ⇒ Object (readonly)
Returns the value of attribute q.
42153 42154 42155 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42153 def q @q end |
#tags ⇒ Object (readonly)
Returns the value of attribute tags.
42153 42154 42155 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42153 def @tags end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
42167 42168 42169 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42167 def copy(incoming={}) ExperiencePaymentMethodRuleForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
42171 42172 42173 42174 42175 42176 42177 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42171 def to_hash { :payment_method_id => payment_method_id, :tags => .map { |o| o.value }, :q => q } end |
#to_json ⇒ Object
42163 42164 42165 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42163 def to_json JSON.dump(to_hash) end |