Class: Io::Flow::V0::Models::CountryPickerForm

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 = {}) ⇒ CountryPickerForm

Returns a new instance of CountryPickerForm.



27515
27516
27517
27518
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27515

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  @source = (x = (x = opts.delete(:source); x.nil? ? "experience" : x); x.is_a?(::Io::Flow::V0::Models::CountryPickerSource) ? x : ::Io::Flow::V0::Models::CountryPickerSource.apply(x))
end

Instance Attribute Details

#sourceObject (readonly)

Returns the value of attribute source.



27513
27514
27515
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27513

def source
  @source
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



27524
27525
27526
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27524

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

#to_hashObject



27528
27529
27530
27531
27532
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27528

def to_hash
  {
    :source => source.value
  }
end

#to_jsonObject



27520
27521
27522
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27520

def to_json
  JSON.dump(to_hash)
end