import { Payload } from "./payload.interface"; export interface Response { transactionId: string; payload: Payload; errors: any[]; } export interface CreateResponse { payload: PayloadResponse; transactionId: string; errors: any[]; } export interface PayloadResponse { queryResponse: QueryResponse; pagination: null; } export interface QueryResponse { message: string; }