/** * An object that represents an error that may occur when deleting a resource as part of a batch delete operation. * * API schema: CKDBBatchDeleteError * API version: 1.3.2 */ export interface CKDBBatchDeleteError { /** * The identifier for the resource that failed to be deleted. */ id: string; /** * A string that contains the code for the error that occurred. */ code: string; /** * A string that indicates the reason for the error. */ message: string; } /** * An object the provides the functions that * transform {@link CKDBBatchDeleteError } to and from JSON. */ export declare const jsonCodecCKDBBatchDeleteErrorOwnProperties: { /** * Get an encoder that transforms {@link CKDBBatchDeleteError }'s * own properties to JSON. */ readonly getEncoder: () => { readonly id: (value: string) => import("@apple/cktool.core").ValidatedNEA; readonly code: (value: string) => import("@apple/cktool.core").ValidatedNEA; readonly message: (value: string) => import("@apple/cktool.core").ValidatedNEA; }; /** * Get a decoder that transforms {@link CKDBBatchDeleteError }'s * own properties from JSON. */ readonly getDecoder: () => { readonly id: (value: string) => import("@apple/cktool.core").ValidatedNEA; readonly code: (value: string) => import("@apple/cktool.core").ValidatedNEA; readonly message: (value: string) => import("@apple/cktool.core").ValidatedNEA; }; };