Skip to main content

BRShipment

Represents one shipment in an Amazon or e-commerce order.

Declaration

@interface BRShipment : NSObject <BRSerializable>
class BRShipment : NSObject, BRSerializable

Quick Reference

Properties

PropertyDescription
statusShipment status (e.g., "Arriving Tomorrow", "Delivered", "Refunded").
productsCollection 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.