sdksio-postnl-ecommerce-apis-sdk
Version:
Collection of PostNL API's for ecommerce processes
22 lines (21 loc) • 788 B
TypeScript
/**
* PostNL Ecommerce APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { Options3 } from './options3';
import { Sustainability4 } from './sustainability4';
export interface ReasonNoTimeframe {
/** The reason code */
code?: string;
/** The date associated with the reason no timeframe was calculated */
date?: string;
/** The description associated with the reason no timeframe was calculated */
description?: string;
/** The option for which no timeframe was calculated for a specific date */
options?: Options3;
/** Sustainability score */
sustainability?: Sustainability4;
}
export declare const reasonNoTimeframeSchema: Schema<ReasonNoTimeframe>;