Interface GetUsersResponse

interface GetUsersResponse {
    container: string;
    name?: string;
    users: User[];
}

Properties

Properties

container: string

The path of the requested container.

name?: string

If "name" property is specified on request, then it's value will be included in the response.

users: User[]

An array of users matching the request criteria.

Generated using TypeDoc