interface UserProfilesSearchRequest {
    limit?: number;
    search?: {
        name?: string;
    };
}

Properties

Properties

limit?: number

<- Limits the maximum number of results to be returned by single request. The default is 25.

int32

1

1000

search?: {
    name?: string;
}