dhl-express-api-client
Version:
DHL express API client
30 lines (29 loc) • 885 B
TypeScript
import { PriceDetailInner } from './PriceDetailInner';
export declare class ProductsInner1DetailedPriceBreakdownInnerBreakdownInner {
'name'?: string;
'serviceCode'?: string;
'localServiceCode'?: string;
'typeCode'?: string;
'serviceTypeCode'?: string;
'price'?: number;
'priceCurrency'?: string;
'isCustomerAgreement'?: boolean;
'isMarketedService'?: boolean;
'isBillingServiceIndicator'?: boolean;
'priceBreakdown'?: Array<PriceDetailInner>;
'tariffRateFormula'?: string;
static readonly discriminator: string | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}