Type Alias WarehouseItemSummary

WarehouseItemSummary: {
    _links?: {
        self?: HateoasLink;
    };
    currency?: string;
    external_id?: string | null;
    id?: number;
    name?: string;
    price?: string;
    quantity?: number;
    retail_currency?: string;
    retail_price?: string;
    source?: WarehouseItemSummary.source;
    type?: WarehouseItemSummary.type;
    warehouse_product_variant_id?: number;
}

Simplified information about the Warehouse Item

Type declaration

  • Optional Readonly_links?: {
        self?: HateoasLink;
    }

    HATEOAS links

  • Optionalcurrency?: string

    The price currency

  • Optionalexternal_id?: string | null

    Item user specified external ID

  • Optional Readonlyid?: number

    Item ID

  • Optionalname?: string

    Item custom name

  • Optionalprice?: string

    The price Printful charges for the Item

  • Optionalquantity?: number

    Item quantity

  • Optionalretail_currency?: string

    The retail price currency

  • Optionalretail_price?: string

    Item retail price

  • Optionalsource?: WarehouseItemSummary.source

    Item source

  • Optionaltype?: WarehouseItemSummary.type

    The item type

  • Optionalwarehouse_product_variant_id?: number

    ID of warehouse product associated with the Item