Interface ActivityLogApiGetLogEntriesRequest

Request parameters for getLogEntries operation in ActivityLogApi.

ActivityLogApiGetLogEntriesRequest

interface ActivityLogApiGetLogEntriesRequest {
    hasUserId?: boolean;
    limit?: number;
    minDate?: string;
    startIndex?: number;
}

Properties

hasUserId?: boolean

Optional. Filter log entries if it has user id, or not.

ActivityLogApiGetLogEntries

limit?: number

Optional. The maximum number of records to return.

ActivityLogApiGetLogEntries

minDate?: string

Optional. The minimum date. Format = ISO.

ActivityLogApiGetLogEntries

startIndex?: number

Optional. The record index to start at. All items with a lower index will be dropped from the results.

ActivityLogApiGetLogEntries