@jellyfin/sdk
    Preparing search index...

    Interface QuickConnectResult

    Stores the state of an quick connect request.

    QuickConnectResult

    interface QuickConnectResult {
        AppName?: string;
        AppVersion?: string;
        Authenticated?: boolean;
        Code?: string;
        DateAdded?: string;
        DeviceId?: string;
        DeviceName?: string;
        Secret?: string;
    }
    Index

    Properties

    AppName?: string

    Gets the requesting app name.

    QuickConnectResult

    AppVersion?: string

    Gets the requesting app version.

    QuickConnectResult

    Authenticated?: boolean

    Gets or sets a value indicating whether this request is authorized.

    QuickConnectResult

    Code?: string

    Gets the user facing code used so the user can quickly differentiate this request from others.

    QuickConnectResult

    DateAdded?: string

    Gets or sets the DateTime that this request was created.

    QuickConnectResult

    DeviceId?: string

    Gets the requesting device id.

    QuickConnectResult

    DeviceName?: string

    Gets the requesting device name.

    QuickConnectResult

    Secret?: string

    Gets the secret value used to uniquely identify this request. Can be used to retrieve authentication information.

    QuickConnectResult