Class: Increase::Models::PhysicalCard::Shipment
- Defined in:
- lib/increase/models/physical_card.rb
Defined Under Namespace
Instance Attribute Summary collapse
-
#address ⇒ Increase::Models::PhysicalCard::Shipment::Address
The location to where the card's packing label is addressed.
-
#method_ ⇒ Symbol
The shipping method.
-
#status ⇒ Symbol
The status of this shipment.
-
#tracking ⇒ Increase::Models::PhysicalCard::Shipment::Tracking
Tracking details for the shipment.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#address ⇒ Increase::Models::PhysicalCard::Shipment::Address
The location to where the card's packing label is addressed.
67 |
# File 'lib/increase/models/physical_card.rb', line 67 required :address, -> { Increase::Models::PhysicalCard::Shipment::Address } |
#method_ ⇒ Symbol
The shipping method.
72 |
# File 'lib/increase/models/physical_card.rb', line 72 required :method_, Increase::Enum.new(:usps, :fedex_priority_overnight, :fedex_2_day) |
#status ⇒ Symbol
The status of this shipment.
77 78 |
# File 'lib/increase/models/physical_card.rb', line 77 required :status, Increase::Enum.new(:pending, :canceled, :submitted, :acknowledged, :rejected, :shipped, :returned) |
#tracking ⇒ Increase::Models::PhysicalCard::Shipment::Tracking
Tracking details for the shipment.
83 |
# File 'lib/increase/models/physical_card.rb', line 83 required :tracking, -> { Increase::Models::PhysicalCard::Shipment::Tracking } |