Order: {
    createTime: string;
    drawLink?: string;
    giftRecords: VirtualGift[];
    id: string;
    memberId: string;
    orderNumber: string;
    productId: string;
    productIsVirtual: boolean;
    productName: string;
    productPhotoUrl: string;
    productType: GiftType;
    recipientAddress: Address;
    recipientId: string;
    recipientName: string;
    recipientPhone: string;
    redeemAmount: string;
    remark: string;
    status: {
        carrier?: string;
        isShipped: boolean;
        orderState: OrderState;
        trackingNumber?: string;
    };
    totalPointCost: string;
}

订单信息

Type declaration

  • createTime: string
  • Optional drawLink?: string

    抽奖链接

  • giftRecords: VirtualGift[]

    虚拟礼品的卡号/卡密

  • id: string
  • memberId: string
  • orderNumber: string

    订单号

  • productId: string
  • productIsVirtual: boolean

    Deprecated

    是否为虚拟礼品

  • productName: string
  • productPhotoUrl: string
  • productType: GiftType
  • recipientAddress: Address
  • recipientId: string
  • recipientName: string
  • recipientPhone: string
  • redeemAmount: string

    兑换数量

  • remark: string
  • status: {
        carrier?: string;
        isShipped: boolean;
        orderState: OrderState;
        trackingNumber?: string;
    }

    发货状态

    • Optional carrier?: string

      物流方

    • isShipped: boolean

      是否发货

    • orderState: OrderState

      订单状态

    • Optional trackingNumber?: string

      物流单号

  • totalPointCost: string

    消耗的积分数

Generated using TypeDoc