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.
14059 14060 14061 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14059 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
14057 14058 14059 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14057 def value @value end |
Class Method Details
.ALL ⇒ Object
14079 14080 14081 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14079 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
14064 14065 14066 14067 14068 14069 14070 14071 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14064 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)
14091 14092 14093 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14091 def CountryPickerSource.destination @@_destination ||= CountryPickerSource.new('destination') end |
.experience ⇒ Object
Indicates we should build the list of countries based on each active experience country
14085 14086 14087 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14085 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
14074 14075 14076 14077 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14074 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
14095 14096 14097 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14095 def to_hash value end |