import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ResourceStatus } from "./resourcestatus.js"; export type LinkedConnectorResource = { /** * ID of the resource, typically a lowercased version of name. */ id?: string | undefined; /** * Name of the resource (plural) */ name?: string | undefined; /** * Status of the resource. Resources with status live or beta are callable. */ status?: ResourceStatus | undefined; /** * ID of the resource in the Connector's API (downstream) */ downstreamId?: string | undefined; /** * Name of the resource in the Connector's API (downstream) */ downstreamName?: string | undefined; }; /** @internal */ export declare const LinkedConnectorResource$inboundSchema: z.ZodType; /** @internal */ export type LinkedConnectorResource$Outbound = { id?: string | undefined; name?: string | undefined; status?: string | undefined; downstream_id?: string | undefined; downstream_name?: string | undefined; }; /** @internal */ export declare const LinkedConnectorResource$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 LinkedConnectorResource$ { /** @deprecated use `LinkedConnectorResource$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedConnectorResource$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedConnectorResource$Outbound` instead. */ type Outbound = LinkedConnectorResource$Outbound; } export declare function linkedConnectorResourceToJSON(linkedConnectorResource: LinkedConnectorResource): string; export declare function linkedConnectorResourceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedconnectorresource.d.ts.map