shipstation-client
Version:
ShipStation V2 SDK
22 lines (21 loc) • 806 B
TypeScript
/**
* ShipStation API v2
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* The available layouts (sizes) in which shipping labels can be downloaded. The label format determines which sizes are supported. `4x6` is supported for all label formats, whereas `letter` (8.5\" x 11\") is only supported for `pdf` format.
* @export
* @enum {string}
*/
export declare const LabelLayout: {
readonly _4x6: "4x6";
readonly Letter: "letter";
};
export type LabelLayout = typeof LabelLayout[keyof typeof LabelLayout];