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

export interface AdminOrderProof {
  id: number;
  bookingId: number;
  userId?: number;
  photoUrl: string;
  status: AdminOrderProofStatus;
  /** @nullable */
  note?: string | null;
  /** @nullable */
  reviewedAt?: string | null;
  createdAt: string;
  /** @nullable */
  bookingStatus?: string | null;
  /** @nullable */
  totalPrice?: number | null;
  /** @nullable */
  duration?: string | null;
  /** @nullable */
  profileName?: string | null;
  /** @nullable */
  customerName?: string | null;
}
