aboutsummaryrefslogtreecommitdiff
path: root/dhall/types/StreamVOD.dhall
blob: af6ea64856ff6942dfe6c5f9780bf974b92550e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
let Link = ./Link.dhall

in  { Type =
        { title : Text
        , slug : Text
        , date : Text
        , description : Text
        , cdnPath : Text
        , tags : List Text
        }
    , default =
      { title = ""
      , slug = ""
      , date = ""
      , description = ""
      , cdnPath = ""
      , tags = [] : List Text
      }
    }