import { Mandates, MandatesBeforePayment } from "../shared/mandate"; export interface GetMandateResponse { mandates: Mandates; result: boolean; errors: string[]; } export interface GetMandateOnHoldResponse { mandates: MandatesBeforePayment; result: boolean; errors: string[]; }