Class: Io::Flow::V0::Models::ReservationError
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ReservationError
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Types of failed inventory reservation reasons
Direct Known Subclasses
ExternalApiTimeoutReservationError, GenericReservationError, NoInventoryReservationError, ReservationErrorUndefinedType
Defined Under Namespace
Modules: Types
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(incoming = {}) ⇒ ReservationError
constructor
A new instance of ReservationError.
- #subtype_to_hash ⇒ Object
- #to_hash ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ReservationError
Returns a new instance of ReservationError.
9404 9405 9406 9407 9408 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9404 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:code], 'ReservationError') @code = HttpClient::Preconditions.assert_class('code', opts.delete(:code), String) end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
9402 9403 9404 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9402 def code @code end |
Class Method Details
.from_json(hash) ⇒ Object
9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9418 def ReservationError.from_json(hash) HttpClient::Preconditions.assert_class('hash', hash, Hash) discriminator = HttpClient::Helper.symbolize_keys(hash)[:code].to_s.strip if discriminator.empty? raise "Union type[reservation_error] requires a field named 'code'" end case discriminator when Types::NO_INVENTORY_RESERVATION_ERROR; NoInventoryReservationError.new(hash) when Types::EXTERNAL_API_TIMEOUT_RESERVATION_ERROR; ExternalApiTimeoutReservationError.new(hash) when Types::GENERIC_RESERVATION_ERROR; GenericReservationError.new(hash) else ReservationErrorUndefinedType.new(:code => discriminator) end end |
Instance Method Details
#subtype_to_hash ⇒ Object
9410 9411 9412 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9410 def subtype_to_hash raise 'Cannot serialize an instance of reservation_error directly - must use one of the specific types: no_inventory_reservation_error, external_api_timeout_reservation_error, generic_reservation_error' end |
#to_hash ⇒ Object
9414 9415 9416 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9414 def to_hash subtype_to_hash.merge(:code => @code) end |