BRShipment
Represents one shipment in an Amazon or e-commerce order.
Declaration
@interface BRShipment : NSObject <BRSerializable>
class BRShipment : NSObject, BRSerializable
Quick Reference
Properties
| Property | Description |
|---|---|
status | Shipment status (e.g., "Arriving Tomorrow", "Delivered", "Refunded"). |
products | Collection of products included in this shipment. |
Properties
status (read-only)
@property (nonatomic, strong, readonly) NSString *status;
var status: String! { get }
Shipment status (e.g., "Arriving Tomorrow", "Delivered", "Refunded").
products (read-only)
@property (nonatomic, strong, readonly) NSArray<BRProduct *> *products;
var products: [BRProduct]! { get }
Collection of products included in this shipment.