Class: Io::Flow::V0::Models::ExperiencePaymentMethodRuleForm

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ ExperiencePaymentMethodRuleForm

Returns a new instance of ExperiencePaymentMethodRuleForm.



18427
18428
18429
18430
18431
18432
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18427

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)) }
end

Instance Attribute Details

#payment_method_idObject (readonly)

Returns the value of attribute payment_method_id.



18425
18426
18427
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18425

def payment_method_id
  @payment_method_id
end

#tagsObject (readonly)

Returns the value of attribute tags.



18425
18426
18427
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18425

def tags
  @tags
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



18438
18439
18440
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18438

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

#to_hashObject



18442
18443
18444
18445
18446
18447
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18442

def to_hash
  {
    :payment_method_id => payment_method_id,
    :tags => tags.map { |o| o.value }
  }
end

#to_jsonObject



18434
18435
18436
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18434

def to_json
  JSON.dump(to_hash)
end