import * as z from "zod/v3"; export type GetReportExecutionGlobals = { merchantAccountId?: string | undefined; }; export type GetReportExecutionRequest = { /** * The ID of the execution of a report to retrieve details for. */ reportExecutionId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetReportExecutionRequest$Outbound = { report_execution_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetReportExecutionRequest$outboundSchema: z.ZodType; export declare function getReportExecutionRequestToJSON(getReportExecutionRequest: GetReportExecutionRequest): string; //# sourceMappingURL=getreportexecution.d.ts.map