@orenda-inc/nestjs-webx-pay
Version:
NestJS module for WebX Pay integration
31 lines (30 loc) • 741 B
TypeScript
export declare class PaymentRequestDto {
firstName: string;
lastName: string;
email: string;
contactNumber: string;
addressLineOne: string;
addressLineTwo?: string;
city: string;
state: string;
postalCode: string;
country: string;
processCurrency: string;
paymentGatewayId?: string;
multiplePaymentGatewayIds?: string;
amount: number;
description?: string;
orderId?: string;
}
export declare class WebhookRequestDto {
orderId: string;
referenceNumber: string;
timestamp: string;
statusCode: string;
statusMessage: string;
gatewayId: string;
transactionAmount: string;
requestedAmount?: string;
customFields?: string;
payment?: string;
}