/** @description Reasons for cancellation */
export enum CancellationReason {
  Other = 'other',
  NotReady = 'not_ready',
  CostTooHigh = 'cost_too_high',
  ServiceTooSlow = 'service_too_slow',
  CarrierFailedPickup = 'carrier_failed_pickup',
}
