Class: Io::Flow::V0::Models::CountryPicker

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

Overview

The Country Picker manages the configuration of your country picker.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ CountryPicker

Returns a new instance of CountryPicker.



27438
27439
27440
27441
27442
27443
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27438

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :source], 'CountryPicker')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @source = (x = opts.delete(:source); x.is_a?(::Io::Flow::V0::Models::CountryPickerSource) ? x : ::Io::Flow::V0::Models::CountryPickerSource.apply(x))
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



27436
27437
27438
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27436

def id
  @id
end

#sourceObject (readonly)

Returns the value of attribute source.



27436
27437
27438
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27436

def source
  @source
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



27449
27450
27451
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27449

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

#to_hashObject



27453
27454
27455
27456
27457
27458
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27453

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

#to_jsonObject



27445
27446
27447
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27445

def to_json
  JSON.dump(to_hash)
end