@weiliang79/ubl-builder
Version:
Tool to create xml documents with UBL 2.1 standard
24 lines • 839 B
TypeScript
import GenericAggregateComponent from './GenericAggregateComponent';
import { UdtIdentifier, UdtText, UdtCode } from '../types/UnqualifiedDataTypes';
import { UdtAmount } from '../types/UnqualifiedDataTypes/UdtAmount';
import { DeliveryLocation } from './LocationTypeGroup';
type AllowedParams = {
id: string | UdtIdentifier;
specialTerms: string[] | UdtText[];
lossRiskResponsibilityCode: string | UdtCode;
lossRisks: string[] | UdtText[];
amount: string | UdtAmount;
deliveryLocation: DeliveryLocation;
};
/**
*
*/
declare class DeliveryTerms extends GenericAggregateComponent {
/**
* @param {AllowedParams} content
* @param {string} name
*/
constructor(content: AllowedParams);
}
export { DeliveryTerms, AllowedParams as DeliveryTermsParams };
//# sourceMappingURL=DeliveryTerms.d.ts.map