blob: 736d895778b9ad0880003b5791b976c5a7c3a8a7 (
plain) (
tree)
|
|
import { SearchTargetQuery } from './search-target-query.model'
import { VideosCommonQuery } from './videos-common-query.model'
export interface VideosSearchQuery extends SearchTargetQuery, VideosCommonQuery {
search?: string
host?: string
startDate?: string // ISO 8601
endDate?: string // ISO 8601
originallyPublishedStartDate?: string // ISO 8601
originallyPublishedEndDate?: string // ISO 8601
durationMin?: number // seconds
durationMax?: number // seconds
// UUIDs or short
uuids?: string[]
}
|