import { CreateMandateWithReturnUrl, MandateMerchantAction, MandateResponse } from "./definitions";
export interface CreateMandateRequest extends CreateMandateWithReturnUrl {
}
export interface CreateMandateResponse {
    mandate?: MandateResponse | null;
    merchantAction?: MandateMerchantAction | null;
}
export interface GetMandateResponse {
    mandate?: MandateResponse | null;
}
