ping-identity
    Preparing search index...

    Type Alias DeviceOption

    Selectable device option returned by device collectors.

    type DeviceOption = {
        description?: string;
        iconSrc: string;
        id?: string;
        isDefault?: boolean;
        title: string;
        type: string;
    }
    Index

    Properties

    description?: string

    Optional device description.

    iconSrc: string

    URL of the device icon image.

    id?: string

    Optional device identifier.

    isDefault?: boolean

    Whether this device is selected by default.

    title: string

    Human-readable device title.

    type: string

    Device type string.