import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ApiResource, ApiResource$Outbound } from "./apiresource.js"; import { Links, Links$Outbound } from "./links.js"; import { Meta, Meta$Outbound } from "./meta.js"; /** * ApiResources */ export type GetApiResourceResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: ApiResource; /** * Response metadata */ meta?: Meta | undefined; /** * Links to navigate to previous or next pages through the API */ links?: Links | undefined; }; /** @internal */ export declare const GetApiResourceResponse$inboundSchema: z.ZodType; /** @internal */ export type GetApiResourceResponse$Outbound = { status_code: number; status: string; data: ApiResource$Outbound; meta?: Meta$Outbound | undefined; links?: Links$Outbound | undefined; }; /** @internal */ export declare const GetApiResourceResponse$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 GetApiResourceResponse$ { /** @deprecated use `GetApiResourceResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiResourceResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiResourceResponse$Outbound` instead. */ type Outbound = GetApiResourceResponse$Outbound; } export declare function getApiResourceResponseToJSON(getApiResourceResponse: GetApiResourceResponse): string; export declare function getApiResourceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiresourceresponse.d.ts.map