Class: Io::Flow::V0::Models::ShipmentRecipient
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ShipmentRecipient
- 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 ShipmentRecipient for this value, creating a new instance for an unknown value.
-
.crossdock ⇒ Object
Outbound shipment to a crossdock.
-
.customer ⇒ Object
Outbound shipment to the customer.
-
.from_string(value) ⇒ Object
Returns the instance of ShipmentRecipient for this value, or nil if not found.
-
.return ⇒ Object
Inbound or return shipment.
Instance Method Summary collapse
-
#initialize(value) ⇒ ShipmentRecipient
constructor
A new instance of ShipmentRecipient.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ ShipmentRecipient
Returns a new instance of ShipmentRecipient.
16029 16030 16031 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16029 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
16027 16028 16029 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16027 def value @value end |
Class Method Details
.ALL ⇒ Object
16049 16050 16051 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16049 def ShipmentRecipient.ALL @@all ||= [ShipmentRecipient.customer, ShipmentRecipient.return, ShipmentRecipient.crossdock] end |
.apply(value) ⇒ Object
Returns the instance of ShipmentRecipient for this value, creating a new instance for an unknown value
16034 16035 16036 16037 16038 16039 16040 16041 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16034 def ShipmentRecipient.apply(value) if value.instance_of?(ShipmentRecipient) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || ShipmentRecipient.new(value)) end end |
.crossdock ⇒ Object
Outbound shipment to a crossdock
16064 16065 16066 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16064 def ShipmentRecipient.crossdock @@_crossdock ||= ShipmentRecipient.new('crossdock') end |
.customer ⇒ Object
Outbound shipment to the customer
16054 16055 16056 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16054 def ShipmentRecipient.customer @@_customer ||= ShipmentRecipient.new('customer') end |
.from_string(value) ⇒ Object
Returns the instance of ShipmentRecipient for this value, or nil if not found
16044 16045 16046 16047 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16044 def ShipmentRecipient.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) ShipmentRecipient.ALL.find { |v| v.value == value } end |
.return ⇒ Object
Inbound or return shipment
16059 16060 16061 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16059 def ShipmentRecipient.return @@_return ||= ShipmentRecipient.new('return') end |
Instance Method Details
#to_hash ⇒ Object
16068 16069 16070 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16068 def to_hash value end |