sdksio-postnl-ecommerce-apis-sdk
Version:
Collection of PostNL API's for ecommerce processes
20 lines (19 loc) • 796 B
TypeScript
/**
* PostNL Ecommerce APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { DayEnum } from './dayEnum';
import { TypeEnum } from './typeEnum';
export interface CutOffTime {
/** The day for which the cutoff time applies. 00 is your default cutoff that applies to all otherwise not specified days, 01 to 07 is Monday to Sunday. */
day: DayEnum;
/** Specifies whether you are available to process shipments during the selected day */
available?: boolean;
/** Specifies the type belonging to the cutoff time. */
type?: TypeEnum;
/** Specifies the cutoff time (mandatory when Available is true) */
time?: string;
}
export declare const cutOffTimeSchema: Schema<CutOffTime>;