Class: Io::Flow::V0::Models::TrackingStatus
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::TrackingStatus
- 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 TrackingStatus for this value, creating a new instance for an unknown value.
- .attempt_fail ⇒ Object
- .delivered ⇒ Object
- .exception ⇒ Object
- .expired ⇒ Object
-
.from_string(value) ⇒ Object
Returns the instance of TrackingStatus for this value, or nil if not found.
- .in_transit ⇒ Object
- .info_received ⇒ Object
- .out_for_delivery ⇒ Object
- .pending ⇒ Object
Instance Method Summary collapse
-
#initialize(value) ⇒ TrackingStatus
constructor
A new instance of TrackingStatus.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ TrackingStatus
Returns a new instance of TrackingStatus.
6218 6219 6220 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6218 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
6216 6217 6218 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6216 def value @value end |
Class Method Details
.ALL ⇒ Object
6238 6239 6240 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6238 def TrackingStatus.ALL @@all ||= [TrackingStatus.pending, TrackingStatus.info_received, TrackingStatus.in_transit, TrackingStatus.out_for_delivery, TrackingStatus.attempt_fail, TrackingStatus.delivered, TrackingStatus.exception, TrackingStatus.expired] end |
.apply(value) ⇒ Object
Returns the instance of TrackingStatus for this value, creating a new instance for an unknown value
6223 6224 6225 6226 6227 6228 6229 6230 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6223 def TrackingStatus.apply(value) if value.instance_of?(TrackingStatus) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || TrackingStatus.new(value)) end end |
.attempt_fail ⇒ Object
6258 6259 6260 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6258 def TrackingStatus.attempt_fail @@_attempt_fail ||= TrackingStatus.new('attempt_fail') end |
.delivered ⇒ Object
6262 6263 6264 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6262 def TrackingStatus.delivered @@_delivered ||= TrackingStatus.new('delivered') end |
.exception ⇒ Object
6266 6267 6268 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6266 def TrackingStatus.exception @@_exception ||= TrackingStatus.new('exception') end |
.expired ⇒ Object
6270 6271 6272 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6270 def TrackingStatus.expired @@_expired ||= TrackingStatus.new('expired') end |
.from_string(value) ⇒ Object
Returns the instance of TrackingStatus for this value, or nil if not found
6233 6234 6235 6236 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6233 def TrackingStatus.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) TrackingStatus.ALL.find { |v| v.value == value } end |
.in_transit ⇒ Object
6250 6251 6252 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6250 def TrackingStatus.in_transit @@_in_transit ||= TrackingStatus.new('in_transit') end |
.info_received ⇒ Object
6246 6247 6248 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6246 def TrackingStatus.info_received @@_info_received ||= TrackingStatus.new('info_received') end |
.out_for_delivery ⇒ Object
6254 6255 6256 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6254 def TrackingStatus.out_for_delivery @@_out_for_delivery ||= TrackingStatus.new('out_for_delivery') end |
.pending ⇒ Object
6242 6243 6244 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6242 def TrackingStatus.pending @@_pending ||= TrackingStatus.new('pending') end |
Instance Method Details
#to_hash ⇒ Object
6274 6275 6276 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6274 def to_hash value end |