UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

10 lines (8 loc) 296 B
import { BaseResponse } from './base-response'; /** @description Basic structure for a response to cancel pickup */ export class CancelPickupResponse extends BaseResponse { confirmation_id?: string; successful!: boolean; status?: string; custom_properties?: { [key: string]: string }; }