/* 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.
 */



/**
 * Reference to the various downloadable file formats for the generated label 
 * @export
 * @interface LabelDownload
 */
export interface LabelDownload {
    /**
     * The URL of the linked resource, if any
     * @type {string}
     * @memberof LabelDownload
     */
    'href'?: string;
    /**
     * The URL for the pdf generated label
     * @type {string}
     * @memberof LabelDownload
     */
    'pdf'?: string;
    /**
     * The URL for the png generated label
     * @type {string}
     * @memberof LabelDownload
     */
    'png'?: string;
    /**
     * The URL for the zpl generated label
     * @type {string}
     * @memberof LabelDownload
     */
    'zpl'?: string;
}

