UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

13 lines (12 loc) 503 B
import { CancellationReason } from './cancellation-reason'; /** @description Basic structure for a cancellation */ export declare 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; }