typings: Add comments in recording.model
This commit is contained in:
parent
07ac5b91c9
commit
8af5759e4d
@ -152,9 +152,24 @@ export interface MeetRecordingInfo {
|
||||
details?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Filters for querying recordings with pagination, sorting and field selection.
|
||||
*/
|
||||
export interface MeetRecordingFilters extends SortAndPagination {
|
||||
/**
|
||||
* Filter recordings by room ID (exact match)
|
||||
*/
|
||||
roomId?: string;
|
||||
/**
|
||||
* Filter recordings by room name (case-insensitive partial match)
|
||||
*/
|
||||
roomName?: string;
|
||||
/**
|
||||
* Filter recordings by status
|
||||
*/
|
||||
status?: MeetRecordingStatus;
|
||||
/**
|
||||
* Comma-separated list of fields to include in the response
|
||||
*/
|
||||
fields?: string;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user