@airwallex/node-sdk
Version:
Airwallex Node.js SDK
28 lines • 1.17 kB
TypeScript
import { SimulationCustomerInformation } from './simulationCustomerInformation';
import { SimulationDeliveryInformation } from './simulationDeliveryInformation';
import { SimulationOrderInformation } from './simulationOrderInformation';
import { SimulationSellerInformation } from './simulationSellerInformation';
import { SimulationSupportingDocumentsResponse } from './simulationSupportingDocumentsResponse';
export interface SimulationChallengeDetails {
challenged_at?: Date;
challenged_by?: string;
customer_info?: SimulationCustomerInformation;
delivery_info?: SimulationDeliveryInformation;
order_info?: SimulationOrderInformation;
product_description?: string;
product_type?: string;
reason?: string;
refund_refusal_reason?: string;
seller_info?: SimulationSellerInformation;
stage?: string;
supporting_documents?: SimulationSupportingDocumentsResponse;
}
export declare namespace SimulationChallengeDetails {
const discriminator: string;
const attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
}
//# sourceMappingURL=simulationChallengeDetails.d.ts.map