@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
8 lines (7 loc) • 302 B
text/typescript
/** @description Indicates a specific time window that a service point is open */
export class HoursOfOperation {
/** @description The open time expressed in ISO 8601 time only format */
open?: string;
/** @description The close time expressed in ISO 8601 time only format */
close?: string;
}