import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListReportExecutionsGlobals = { merchantAccountId?: string | undefined; }; export type ListReportExecutionsRequest = { /** * The ID of the report to retrieve details for. */ reportId: string; /** * A pointer to the page of results to return. */ cursor?: string | null | undefined; /** * The maximum number of items that are at returned. */ limit?: number | undefined; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; export type ListReportExecutionsResponse = { result: components.ReportExecutions; }; /** @internal */ export type ListReportExecutionsRequest$Outbound = { report_id: string; cursor?: string | null | undefined; limit: number; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const ListReportExecutionsRequest$outboundSchema: z.ZodType; export declare function listReportExecutionsRequestToJSON(listReportExecutionsRequest: ListReportExecutionsRequest): string; /** @internal */ export declare const ListReportExecutionsResponse$inboundSchema: z.ZodType; export declare function listReportExecutionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listreportexecutions.d.ts.map