@sudoplatform/sudo-secure-communications
    Preparing search index...

    Interface SecureCommsSession

    The Sudo Platform SDK representation of a Secure Comms Session.

    SecureCommsSession

    interface SecureCommsSession {
        createdAt: Date;
        deviceId: string;
        expiresAt: Date;
        handleId: string;
        handleName: string;
        owner: string;
        owners: Owner[];
        token: string;
    }
    Index

    Properties

    createdAt: Date

    Date for when the session was created.

    deviceId: string

    Identifier associated with the device that initiated the session.

    expiresAt: Date

    Date for when the session will expire.

    handleId: string

    Identifier associated with the Secure Comms handle.

    handleName: string

    Name associated with the Secure Comms handle.

    owner: string

    Identifier of the user that owns the Secure Comms user.

    owners: Owner[]

    List of identifiers of auxiliary owners for the Secure Comms user.

    token: string

    Authentication token required to sign into Secure Comms server.