UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

12 lines (11 loc) 549 B
import { ShippedShipment } from '../pickup/shipped-shipment'; import { ShipFrom } from '../addresses'; /** @description Basic structure for a request to void a label */ export declare class VoidRequest extends ShippedShipment { /** @description Uniquely identifies this request to void a label. Must be returned in a void response. */ void_request_id: string; /** @description The location the shipment was shipped from */ ship_from: ShipFrom; /** @description The shipment's user provided reference */ reference?: string; }