Class: Io::Flow::V0::Models::AttributeDataType
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::AttributeDataType
- 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 AttributeDataType for this value, creating a new instance for an unknown value.
-
.boolean ⇒ Object
Boolean true/false data type.
-
.decimal ⇒ Object
Decimal datatype without size or precision restrictions.
-
.from_string(value) ⇒ Object
Returns the instance of AttributeDataType for this value, or nil if not found.
-
.integer ⇒ Object
Value of the attribute must be an integer.
-
.json_array ⇒ Object
An example [“Cotton”, “Wool”].
-
.string ⇒ Object
Unvalidated string of characters.
Instance Method Summary collapse
-
#initialize(value) ⇒ AttributeDataType
constructor
A new instance of AttributeDataType.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ AttributeDataType
Returns a new instance of AttributeDataType.
16619 16620 16621 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16619 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
16617 16618 16619 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16617 def value @value end |
Class Method Details
.ALL ⇒ Object
16639 16640 16641 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16639 def AttributeDataType.ALL @@all ||= [AttributeDataType.boolean, AttributeDataType.integer, AttributeDataType.decimal, AttributeDataType.string, AttributeDataType.json_array] end |
.apply(value) ⇒ Object
Returns the instance of AttributeDataType for this value, creating a new instance for an unknown value
16624 16625 16626 16627 16628 16629 16630 16631 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16624 def AttributeDataType.apply(value) if value.instance_of?(AttributeDataType) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || AttributeDataType.new(value)) end end |
.boolean ⇒ Object
Boolean true/false data type
16644 16645 16646 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16644 def AttributeDataType.boolean @@_boolean ||= AttributeDataType.new('boolean') end |
.decimal ⇒ Object
Decimal datatype without size or precision restrictions. Commonly used for currency values.
16655 16656 16657 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16655 def AttributeDataType.decimal @@_decimal ||= AttributeDataType.new('decimal') end |
.from_string(value) ⇒ Object
Returns the instance of AttributeDataType for this value, or nil if not found
16634 16635 16636 16637 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16634 def AttributeDataType.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) AttributeDataType.ALL.find { |v| v.value == value } end |
.integer ⇒ Object
Value of the attribute must be an integer
16649 16650 16651 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16649 def AttributeDataType.integer @@_integer ||= AttributeDataType.new('integer') end |
.json_array ⇒ Object
An example [“Cotton”, “Wool”]
16665 16666 16667 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16665 def AttributeDataType.json_array @@_json_array ||= AttributeDataType.new('json_array') end |
.string ⇒ Object
Unvalidated string of characters.
16660 16661 16662 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16660 def AttributeDataType.string @@_string ||= AttributeDataType.new('string') end |
Instance Method Details
#to_hash ⇒ Object
16669 16670 16671 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16669 def to_hash value end |