/** * An object that represents lookup information for a user. * * API schema: CKDBUserIdentityLookupInfo * API version: 1.3.2 */ export interface CKDBUserIdentityLookupInfo { /** * The record name field in the associated user's record. */ userRecordName?: string; /** * The user’s email address. */ emailAddress?: string; /** * The user’s phone number. */ phoneNumber?: string; } /** * An object the provides the functions that * transform {@link CKDBUserIdentityLookupInfo } to and from JSON. */ export declare const jsonCodecCKDBUserIdentityLookupInfoOwnProperties: { /** * Get an encoder that transforms {@link CKDBUserIdentityLookupInfo }'s * own properties to JSON. */ readonly getEncoder: () => { readonly userRecordName: (value: string | import("fp-ts/lib/Option").Option | null | undefined) => import("@apple/cktool.core").ValidatedNEA>; readonly emailAddress: (value: string | import("fp-ts/lib/Option").Option | null | undefined) => import("@apple/cktool.core").ValidatedNEA>; readonly phoneNumber: (value: string | import("fp-ts/lib/Option").Option | null | undefined) => import("@apple/cktool.core").ValidatedNEA>; }; /** * Get a decoder that transforms {@link CKDBUserIdentityLookupInfo }'s * own properties from JSON. */ readonly getDecoder: () => { readonly userRecordName: (value: string | import("fp-ts/lib/Option").Option | null | undefined) => import("@apple/cktool.core").ValidatedNEA>; readonly emailAddress: (value: string | import("fp-ts/lib/Option").Option | null | undefined) => import("@apple/cktool.core").ValidatedNEA>; readonly phoneNumber: (value: string | import("fp-ts/lib/Option").Option | null | undefined) => import("@apple/cktool.core").ValidatedNEA>; }; };