@airwallex/node-sdk
Version:
Airwallex Node.js SDK
23 lines • 735 B
TypeScript
import { AmendmentChargeDto } from './amendmentChargeDto';
export interface ConversionAmendmentDto {
amendment_id?: string;
charges?: Array<AmendmentChargeDto>;
conversion_id?: string;
created_at?: string;
metadata?: object;
request_id?: string;
short_reference_id?: string;
type?: ConversionAmendmentDto.TypeEnum;
updated_at?: string;
}
export declare namespace ConversionAmendmentDto {
const validTypeEnum: readonly ["CANCEL"];
type TypeEnum = (typeof validTypeEnum)[number] | 'UNKNOWN';
const discriminator: string;
const attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
}
//# sourceMappingURL=conversionAmendmentDto.d.ts.map