@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
9 lines (8 loc) • 357 B
TypeScript
import { ShippedShipment } from '../models';
import { BaseRequest } from './base-request';
export declare class CancelNotificationRequest extends BaseRequest {
/** @description The id of the notification */
notification_id: string;
/** @description The shipment to which the notification pertains */
shipment_information: ShippedShipment;
}