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;
}
