BRShipment

Objective-C

@interface BRShipment : NSObject <BRSerializable>

Swift

class BRShipment : NSObject, BRSerializable

Represents one shipment in an Amazon order

  • The status of this shipment. For example “Arriving Tomorrow”, “Delivered”, “Refunded”, etc.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSString *status;

    Swift

    var status: String! { get }
  • The products contained in this shipment

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSArray<BRProduct *> *products;

    Swift

    var products: [BRProduct]! { get }