UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

12 lines (10 loc) 472 B
import { CancellationReason } from './cancellation-reason'; /** @description Basic structure for a cancellation */ export class CancellationDetails { /** @description The reason the pickup has been cancelled */ reason!: CancellationReason; /** @description Additional properties about cancellation */ cancellation_options?: { [key: string]: string }; /** @description Any additional info about why the customer is cancelling the pickup */ remarks?: string; }