ListUserEventsProps
export interface ListUserEventsProps {
/**
* Maximum number of items which may be returned.
* @example 20
*/
limit?: number;
/**
* Timestamp to only include items created since then.
* @example 2019-12-08T10:00:38.976Z
*/
since?: string;
/**
* The Team identifier or slug to perform the request on behalf of.
*/
teamId?: string;
/**
* Comma-delimited list of event "types" to filter the results by.
* @example login,team-member-join,domain-buy
*/
types?: string;
/**
* Timestamp to only include items created until then.
* @example 2019-12-09T23:00:38.976Z
*/
until?: string;
/**
* When retrieving events for a Team, the userId parameter
* may be specified to filter events generated by a specific
* member of the Team.
* @example aeIInYVk59zbFF2SxfyxxmuO
*/
userId?: string;
}