connect-sdk-nodejs
Version:
SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API
19 lines (18 loc) • 537 B
TypeScript
import { AmountOfMoney } from "../definitions";
import { Dispute } from "./definitions";
export interface CreateDisputeRequest {
amountOfMoney?: AmountOfMoney | null;
contactPerson?: string | null;
emailAddress?: string | null;
replyTo?: string | null;
requestMessage?: string | null;
}
export interface DisputeResponse extends Dispute {
}
export interface DisputesResponse {
disputes?: Dispute[] | null;
}
export interface UploadDisputeFileResponse {
disputeId?: string | null;
fileId?: string | null;
}