export interface CreatePaymentRequest { description: string; amount: string; currency: string; cancelUrl: string; returnUrl: string; idVen: number; storeId: string; data: string; } export interface CreatePaymentResponse { create_time: Date; id: string; intent: string; links: Link[]; state: string; } export interface CreatePaymentErrorResponse { name: string; details: CreatePaymentErrorDetail[]; message: string; information_link: string; debug_id: string; } export interface CreatePaymentErrorDetail { field: string; issue: string; } export interface Link { href: string; method: string; rel: string; }