import { AbstractEntity } from '../../abstractEntity'; import { UserApiKeyFields } from './userApiKey'; export declare type CreateUserApiKeyResultData = { [UserApiKeyFields.CONTACT_NAME]?: string; [UserApiKeyFields.COLUMN_EXPIRATION_DATE]?: string; [UserApiKeyFields.COLUMN_IS_ACTIVE]?: boolean; [UserApiKeyFields.COLUMN_KEY]?: string; [UserApiKeyFields.COLUMN_LAST_CHARACTERS]?: string; [UserApiKeyFields.COLUMN_NAME]?: string; [UserApiKeyFields.COLUMN_REFERENCE]?: string; [UserApiKeyFields.COLUMN_SINCE]?: string; [UserApiKeyFields.COLUMN_USED_AT]?: string; [UserApiKeyFields.COLUMN_USER_LOGIN]?: string; }; export declare class CreateUserApiKeyResult extends AbstractEntity { #private; constructor(dataInput: CreateUserApiKeyResultData); get contactName(): string | undefined; get expirationDate(): string | undefined; get isActive(): boolean | undefined; get key(): string | undefined; get lastCharacters(): string | undefined; get name(): string | undefined; get reference(): string | undefined; get since(): string | undefined; get usedAt(): string | undefined; get userLogin(): string | undefined; toJSON(): CreateUserApiKeyResultData; }