nylas
    Preparing search index...

    Interface ManualAssignWorkspaceResponse

    Interface representing the response from manually assigning or removing grants.

    interface ManualAssignWorkspaceResponse {
        applicationId: string;
        domain: string;
        grantsAssigned: null | string[];
        grantsRemoved: null | string[];
        workspaceId: string;
    }
    Index

    Properties

    applicationId: string

    The ID of the application that owns the workspace.

    domain: string

    The domain of the workspace (empty string if none).

    grantsAssigned: null | string[]

    The grant IDs that were actually assigned. Serializes as null (not an empty array) when no assigned grant matched.

    grantsRemoved: null | string[]

    The grant IDs that were actually removed. Serializes as null (not an empty array) when no removed grant matched.

    workspaceId: string

    The ID of the workspace that was updated.