import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomFieldFinder, CustomFieldFinder$Outbound } from "./customfieldfinder.js"; /** * Custom mapping */ export type GetCustomFieldsResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: Array; }; /** @internal */ export declare const GetCustomFieldsResponse$inboundSchema: z.ZodType; /** @internal */ export type GetCustomFieldsResponse$Outbound = { status_code: number; status: string; data: Array; }; /** @internal */ export declare const GetCustomFieldsResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetCustomFieldsResponse$ { /** @deprecated use `GetCustomFieldsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetCustomFieldsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetCustomFieldsResponse$Outbound` instead. */ type Outbound = GetCustomFieldsResponse$Outbound; } export declare function getCustomFieldsResponseToJSON(getCustomFieldsResponse: GetCustomFieldsResponse): string; export declare function getCustomFieldsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getcustomfieldsresponse.d.ts.map