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;
}
