Class: Io::Flow::V0::Models::CurrencySymbolFormat

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ CurrencySymbolFormat

Returns a new instance of CurrencySymbolFormat.



12783
12784
12785
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12783

def initialize(value)
  @value = HttpClient::Preconditions.assert_class('value', value, String)
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



12781
12782
12783
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12781

def value
  @value
end

Class Method Details

.ALLObject



12803
12804
12805
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12803

def CurrencySymbolFormat.ALL
  @@all ||= [CurrencySymbolFormat.narrow, CurrencySymbolFormat.primary]
end

.apply(value) ⇒ Object

Returns the instance of CurrencySymbolFormat for this value, creating a new instance for an unknown value



12788
12789
12790
12791
12792
12793
12794
12795
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12788

def CurrencySymbolFormat.apply(value)
  if value.instance_of?(CurrencySymbolFormat)
    value
  else
    HttpClient::Preconditions.assert_class_or_nil('value', value, String)
    value.nil? ? nil : (from_string(value) || CurrencySymbolFormat.new(value))
  end
end

.from_string(value) ⇒ Object

Returns the instance of CurrencySymbolFormat for this value, or nil if not found



12798
12799
12800
12801
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12798

def CurrencySymbolFormat.from_string(value)
  HttpClient::Preconditions.assert_class('value', value, String)
  CurrencySymbolFormat.ALL.find { |v| v.value == value }
end

.narrowObject

The narrow format refers to the Unicode Common Locale Data Repository (CLDR) ‘narrow’ symbols (e.g. ‘$’ for CAD and AUD)



12809
12810
12811
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12809

def CurrencySymbolFormat.narrow
  @@_narrow ||= CurrencySymbolFormat.new('narrow')
end

.primaryObject

The primary format refers to the Unicode Common Locale Data Repository (CLDR) ‘primary’ symbols (e.g. ‘CA$’ for CAD and ‘A$’ for AUD)



12815
12816
12817
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12815

def CurrencySymbolFormat.primary
  @@_primary ||= CurrencySymbolFormat.new('primary')
end

Instance Method Details

#to_hashObject



12819
12820
12821
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12819

def to_hash
  value
end