Interface AddressBookEntrySearchParams

interface AddressBookEntrySearchParams {
    addressBookId?: string;
    attributes?: string;
    filter?: string;
    page?: number;
    pageSize?: number;
    search?: string;
    sortBy?: string;
    sortOrder?: "asc" | "desc";
}

Hierarchy

  • BaseSearchParams
    • AddressBookEntrySearchParams

Properties

addressBookId?: string
attributes?: string

Attributes to be returned

filter?: string

Filter criteria using RSQL syntax

page?: number

Page number (starts from 0)

pageSize?: number

Number of items per page

search?: string

Search keyword

sortBy?: string

Sort field

sortOrder?: "asc" | "desc"

Sort direction