2020-05-29 09:16:24 -05:00
|
|
|
import { SearchTargetQuery } from './search-target-query.model'
|
2021-05-03 04:06:19 -05:00
|
|
|
import { VideosCommonQuery } from './videos-common-query.model'
|
2020-05-29 09:16:24 -05:00
|
|
|
|
2021-05-03 04:06:19 -05:00
|
|
|
export interface VideosSearchQuery extends SearchTargetQuery, VideosCommonQuery {
|
2018-07-24 04:09:00 -05:00
|
|
|
search?: string
|
2018-07-20 07:35:18 -05:00
|
|
|
|
|
|
|
startDate?: string // ISO 8601
|
|
|
|
endDate?: string // ISO 8601
|
|
|
|
|
2018-11-27 11:57:02 -06:00
|
|
|
originallyPublishedStartDate?: string // ISO 8601
|
|
|
|
originallyPublishedEndDate?: string // ISO 8601
|
|
|
|
|
2018-07-20 07:35:18 -05:00
|
|
|
durationMin?: number // seconds
|
|
|
|
durationMax?: number // seconds
|
|
|
|
}
|