@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
8 lines (6 loc) • 437 B
text/typescript
import { ResourceDownload } from '../resource-download';
/** @description This object provides the requested label that was just created. Exactly one of the keys should be populated. Set href if the label should be downloaded separately. Set data if the label is returned directly in the response. */
export class LabelDownload extends ResourceDownload {
/** @description The base64 encoded resource data. */
label_data?: string;
}