interface BusinessUnitPagedSearchResponse {
    limit: number;
    offset: number;
    results: BusinessUnitSearchResult[];
    total: number;
}

Properties

limit: number

Number of results requested.

offset: number

Number of elements skipped.

Search result containing the Business Units matching the search query.

total: number

Total number of results matching the query.