Conexia Telecom SDK
    Preparing search index...

    Type Alias ProfileInfo

    Represents profile info of currently logged in user.

    type ProfileInfo = {
        apiToken?: string;
        avatar?: string;
        chatUserId: string;
        deviceUid?: string;
        extension: string;
        name: string;
        phoneDnd: DndState;
        presence?: UserPresence;
        presenceExpiryTimestamp: number;
        smsNumber: string;
        smsPermission: SmsPermission;
        tenantCode?: string;
    }
    Index
    apiToken?: string

    Api token. This is optional since not all versions of systems support api token.

    avatar?: string

    User avatar file name.

    chatUserId: string

    Id of the current logged in user.

    deviceUid?: string

    Current device uid.

    extension: string

    User extension.

    name: string

    User name.

    phoneDnd: DndState

    Phone do not disturb state.

    presence?: UserPresence

    User presence.

    presenceExpiryTimestamp: number

    Timestamp of presence expiry time.

    smsNumber: string

    Sms number of the current logged in user.

    smsPermission: SmsPermission

    Sms permissions of the current logged in user.

    tenantCode?: string

    User tenant code. This is optional since there is no tenant code on single tenant systems.