export interface IOneTimeCheckoutPayload { amount: number; currency: string; success_url: string; cancel_url: string; description?: string; } export interface ICheckoutSession { id: string; url: string | null; } export interface ICheckoutResponse { session: ICheckoutSession; } export interface IPaymentStatusResponse { status: string; }