sdksio-postnl-ecommerce-apis-sdk
Version:
Collection of PostNL API's for ecommerce processes
20 lines (19 loc) • 766 B
TypeScript
/**
* PostNL Ecommerce APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { Options2 } from './options2';
import { Sustainability4 } from './sustainability4';
export interface TimeframeTimeframe {
/** The start time of the expected delivery window */
from?: string;
/** The delivery option for which the timeframe is calculated. See [Delivery Options](#tag/Reference-codes/Delivery-options) for possible values. */
options?: Options2;
/** The end time of the expected delivery window */
to?: string;
/** Sustainability score */
sustainability?: Sustainability4;
}
export declare const timeframeTimeframeSchema: Schema<TimeframeTimeframe>;