Class: Io::Flow::V0::Models::AttributeIntent
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::AttributeIntent
- 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 AttributeIntent for this value, creating a new instance for an unknown value.
-
.from_string(value) ⇒ Object
Returns the instance of AttributeIntent for this value, or nil if not found.
-
.price ⇒ Object
Attributes with this data type are inferred to be prices in the organization’s base currency and will be localized based on each Experience’s pricing policy.
Instance Method Summary collapse
-
#initialize(value) ⇒ AttributeIntent
constructor
A new instance of AttributeIntent.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ AttributeIntent
Returns a new instance of AttributeIntent.
6233 6234 6235 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6233 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
6231 6232 6233 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6231 def value @value end |
Class Method Details
.ALL ⇒ Object
6253 6254 6255 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6253 def AttributeIntent.ALL @@all ||= [AttributeIntent.price] end |
.apply(value) ⇒ Object
Returns the instance of AttributeIntent for this value, creating a new instance for an unknown value
6238 6239 6240 6241 6242 6243 6244 6245 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6238 def AttributeIntent.apply(value) if value.instance_of?(AttributeIntent) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || AttributeIntent.new(value)) end end |
.from_string(value) ⇒ Object
Returns the instance of AttributeIntent for this value, or nil if not found
6248 6249 6250 6251 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6248 def AttributeIntent.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) AttributeIntent.ALL.find { |v| v.value == value } end |
.price ⇒ Object
Attributes with this data type are inferred to be prices in the organization’s base currency and will be localized based on each Experience’s pricing policy.
6259 6260 6261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6259 def AttributeIntent.price @@_price ||= AttributeIntent.new('price') end |
Instance Method Details
#to_hash ⇒ Object
6263 6264 6265 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6263 def to_hash value end |