@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
12 lines (10 loc) • 490 B
text/typescript
import { HoursOfOperation } from './hours-of-operation';
/** @description Indicates a specific date window that a service point is open with opening hours */
export class SpecialOpeningTime {
/** @description The starting day expressed in ISO 8601 date(yyyy-mm-dd) only format */
start?: string;
/** @description The close time expressed in ISO 8601 date(yyyy-mm-dd) only format */
end?: string;
/** @description The opening hours */
hours_of_operation?: HoursOfOperation[];
}