Class: Io::Flow::V0::Models::CountryPickerSource
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::CountryPickerSource
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Class Method Summary collapse
- .ALL ⇒ Object
-
.apply(value) ⇒ Object
Returns the instance of CountryPickerSource for this value, creating a new instance for an unknown value.
-
.destination ⇒ Object
Indicates we should build the list of countries based on all countries to which you have a rate card (ie. all valid destination countries).
-
.experience ⇒ Object
Indicates we should build the list of countries based on each active experience country.
-
.from_string(value) ⇒ Object
Returns the instance of CountryPickerSource for this value, or nil if not found.
Instance Method Summary collapse
-
#initialize(value) ⇒ CountryPickerSource
constructor
A new instance of CountryPickerSource.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ CountryPickerSource
Returns a new instance of CountryPickerSource.
13568 13569 13570 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13568 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
13566 13567 13568 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13566 def value @value end |
Class Method Details
.ALL ⇒ Object
13588 13589 13590 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13588 def CountryPickerSource.ALL @@all ||= [CountryPickerSource.experience, CountryPickerSource.destination] end |
.apply(value) ⇒ Object
Returns the instance of CountryPickerSource for this value, creating a new instance for an unknown value
13573 13574 13575 13576 13577 13578 13579 13580 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13573 def CountryPickerSource.apply(value) if value.instance_of?(CountryPickerSource) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || CountryPickerSource.new(value)) end end |
.destination ⇒ Object
Indicates we should build the list of countries based on all countries to which you have a rate card (ie. all valid destination countries)
13600 13601 13602 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13600 def CountryPickerSource.destination @@_destination ||= CountryPickerSource.new('destination') end |
.experience ⇒ Object
Indicates we should build the list of countries based on each active experience country
13594 13595 13596 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13594 def CountryPickerSource.experience @@_experience ||= CountryPickerSource.new('experience') end |
.from_string(value) ⇒ Object
Returns the instance of CountryPickerSource for this value, or nil if not found
13583 13584 13585 13586 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13583 def CountryPickerSource.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) CountryPickerSource.ALL.find { |v| v.value == value } end |
Instance Method Details
#to_hash ⇒ Object
13604 13605 13606 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13604 def to_hash value end |