/** * An object that represents the request to create a new zone. * * API schema: CKDBCreateZoneRequestBody * API version: 1.3.2 */ export interface CKDBCreateZoneRequestBody { /** * The name that identifies the zone. */ zoneName: string; /** * The type for the zone. * * Possible value is `REGULAR_CUSTOM_ZONE`. */ zoneType?: string; } /** * An object the provides the functions that * transform {@link CKDBCreateZoneRequestBody } to and from JSON. */ export declare const jsonCodecCKDBCreateZoneRequestBodyOwnProperties: { /** * Get an encoder that transforms {@link CKDBCreateZoneRequestBody }'s * own properties to JSON. */ readonly getEncoder: () => { readonly zoneName: (value: string) => import("@apple/cktool.core").ValidatedNEA; readonly zoneType: (value: string | import("fp-ts/lib/Option").Option | null | undefined) => import("@apple/cktool.core").ValidatedNEA>; }; /** * Get a decoder that transforms {@link CKDBCreateZoneRequestBody }'s * own properties from JSON. */ readonly getDecoder: () => { readonly zoneName: (value: string) => import("@apple/cktool.core").ValidatedNEA; readonly zoneType: (value: string | import("fp-ts/lib/Option").Option | null | undefined) => import("@apple/cktool.core").ValidatedNEA>; }; };