UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

10 lines (8 loc) 344 B
import { ShippedShipment } from '../models'; import { BaseRequest } from './base-request'; export class CancelNotificationRequest extends BaseRequest { /** @description The id of the notification */ notification_id!: string; /** @description The shipment to which the notification pertains */ shipment_information!: ShippedShipment; }