interface PermissionRetrieveParams {
    after?: string;
    limit?: number;
    order?: "ascending" | "descending";
    project_id?: string;
}

Properties

after?: string

Identifier for the last permission ID from the previous pagination request.

limit?: number

Number of permissions to retrieve.

order?: "ascending" | "descending"

The order in which to retrieve permissions.

project_id?: string

The ID of the project to get permissions for.