export type PayOut = { adminUserId?: string | null; amount: string; bic: string; cancellationActorId?: string | null; cancellationCause: string | null; createdAt: string; currency: string; dueOn: string; iban: string; id: string; kind: 'deposit_out'; label: string; nthOfKind: number | null; paidTo: 'client' | 'owner'; paymentTransactionId: string; paymentType: 'stripe' | 'wiretransfer'; recipientName: string; ribFileUrl: string; state: 'cancelled' | 'done' | 'in_progress' | 'to_perform'; stateUpdatedAt: string; updatedAt: string; };