import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateReportExecutionUrlGlobals = { merchantAccountId?: string | undefined; }; export type CreateReportExecutionUrlRequest = { /** * The ID of the report to retrieve a URL for. */ reportId: string; /** * The ID of the execution of a report to retrieve a URL for. */ reportExecutionId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; reportExecutionUrlGenerate?: components.ReportExecutionUrlGenerate | undefined; }; /** @internal */ export type CreateReportExecutionUrlRequest$Outbound = { report_id: string; report_execution_id: string; merchantAccountId?: string | null | undefined; ReportExecutionUrlGenerate?: components.ReportExecutionUrlGenerate$Outbound | undefined; }; /** @internal */ export declare const CreateReportExecutionUrlRequest$outboundSchema: z.ZodType; export declare function createReportExecutionUrlRequestToJSON(createReportExecutionUrlRequest: CreateReportExecutionUrlRequest): string; //# sourceMappingURL=createreportexecutionurl.d.ts.map