import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ApiKeyDto } from "./apikeydto.js"; /** * Type of the environment */ export declare const EnvironmentResponseDtoType: { readonly Dev: "dev"; readonly Prod: "prod"; }; /** * Type of the environment */ export type EnvironmentResponseDtoType = ClosedEnum; export type EnvironmentResponseDto = { /** * Unique identifier of the environment */ id: string; /** * Name of the environment */ name: string; /** * Organization ID associated with the environment */ organizationId: string; /** * Unique identifier for the environment */ identifier: string; /** * Type of the environment */ type?: EnvironmentResponseDtoType | null | undefined; /** * List of API keys associated with the environment */ apiKeys?: Array | undefined; /** * Parent environment ID */ parentId?: string | undefined; /** * URL-friendly slug for the environment */ slug?: string | undefined; }; /** @internal */ export declare const EnvironmentResponseDtoType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EnvironmentResponseDto$inboundSchema: z.ZodType; export declare function environmentResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=environmentresponsedto.d.ts.map