aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/search/videos-search-query.model.ts
blob: 736d895778b9ad0880003b5791b976c5a7c3a8a7 (plain) (tree)
1
2
3
4
5
6
7
8
                                                               
                                                               
 
                                                                                 
                 
 

               


                                


                                                   

                                 


                   
 
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[]
}