/** * An object that represents the current user. * * API schema: CKDBSessionUser * API version: 1.3.2 */ export interface CKDBSessionUser { /** * The record name that represents the current user. */ userRecordName: string; } /** * An object the provides the functions that * transform {@link CKDBSessionUser } to and from JSON. */ export declare const jsonCodecCKDBSessionUserOwnProperties: { /** * Get an encoder that transforms {@link CKDBSessionUser }'s * own properties to JSON. */ readonly getEncoder: () => { readonly userRecordName: (value: string) => import("@apple/cktool.core").ValidatedNEA; }; /** * Get a decoder that transforms {@link CKDBSessionUser }'s * own properties from JSON. */ readonly getDecoder: () => { readonly userRecordName: (value: string) => import("@apple/cktool.core").ValidatedNEA; }; };