/**
 * Generated by orval v8.9.1 🍺
 * Do not edit manually.
 * Api
 * Model Directory & Booking Platform API
 * OpenAPI spec version: 0.1.0
 */
import type { WithdrawalMethod } from './withdrawalMethod';
import type { WithdrawalStatus } from './withdrawalStatus';

export interface Withdrawal {
  id: number;
  userId: number;
  amount: number;
  method: WithdrawalMethod;
  accountNumber: string;
  status: WithdrawalStatus;
  /** @nullable */
  note?: string | null;
  /** @nullable */
  reviewedAt?: string | null;
  createdAt: string;
  userName?: string;
  userEmail?: string;
}
