@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
11 lines (9 loc) • 449 B
text/typescript
import { ShippedShipment } from '../pickup/shipped-shipment';
import { ShipFrom } from '../addresses';
/** @description Basic structure for a request to void a label */
export 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;
}