UNPKG

shipstation-client

Version:
32 lines (23 loc) 841 B
/* tslint:disable */ /* eslint-disable */ /** * 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 const LabelLayout = { _4x6: '4x6', Letter: 'letter' } as const; export type LabelLayout = typeof LabelLayout[keyof typeof LabelLayout];