Google Apps Script API
    Preparing search index...

    Information about a Drive user.

    interface User {
        displayName?: string;
        emailAddress?: string;
        kind?: string;
        me?: boolean;
        permissionId?: string;
        photoLink?: string;
    }
    Index

    Properties

    displayName?: string

    Output only. A plain text displayable name for this user.

    emailAddress?: string

    Output only. The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester.

    kind?: string

    Output only. Identifies what kind of resource this is. Value: the fixed string "drive#user".

    me?: boolean

    Output only. Whether this user is the requesting user.

    permissionId?: string

    Output only. The user's ID as visible in Permission resources.

    photoLink?: string

    Output only.A link to the user 's profile photo, if available.