@airwallex/node-sdk
Version:
Airwallex Node.js SDK
16 lines • 527 B
TypeScript
export interface PostTypeSettingRule {
payment_method?: string;
post_type?: PostTypeSettingRule.PostTypeEnum;
transaction_type?: string;
}
export declare namespace PostTypeSettingRule {
const validPostTypeEnum: readonly ["BATCH", "SINGLE"];
type PostTypeEnum = (typeof validPostTypeEnum)[number] | 'UNKNOWN';
const discriminator: string;
const attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
}
//# sourceMappingURL=postTypeSettingRule.d.ts.map