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 ListReportsGlobals = { merchantAccountId?: string | undefined; }; export type ListReportsRequest = { /** * 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; /** * Filters the reports by the type of schedule at which they run. */ schedule?: Array | null | undefined; /** * Filters the reports by wether their schedule is enabled. */ scheduleEnabled?: boolean | null | undefined; /** * Filters the reports by searching their name for (partial) matches. */ name?: string | null | undefined; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; export type ListReportsResponse = { result: components.Reports; }; /** @internal */ export type ListReportsRequest$Outbound = { cursor?: string | null | undefined; limit: number; schedule?: Array | null | undefined; schedule_enabled?: boolean | null | undefined; name?: string | null | undefined; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const ListReportsRequest$outboundSchema: z.ZodType; export declare function listReportsRequestToJSON(listReportsRequest: ListReportsRequest): string; /** @internal */ export declare const ListReportsResponse$inboundSchema: z.ZodType; export declare function listReportsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listreports.d.ts.map