bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
15 lines (14 loc) • 312 B
TypeScript
/**
* Appears within the charge object
*/
export interface ChargeInfoRequest {
chargeDescription: string;
fromDate?: string;
toDate?: string;
}
export interface ChargeInfoResponse {
chargeDescription: string;
fromDate: string;
toDate: string;
chargeType: 'INITIAL' | 'RECURRING';
}