OBJECT

VideoOverlayView

VideoOverlayView holds the view configuration of an extension if the videoOverlay anchor is supported.

link GraphQL Schema definition

1type VideoOverlayView implements ExtensionView {
2
3# Specifies whether or not the extension has the ability to link to external
4# websites.
5canLinkExternalContent: Boolean!
6
7# Relative path of the HTML file to load for this view, used by devsite to specify
8# the layout of assets.
9viewerPath: String!
10
11# The URL which should be loaded in for the extension.
12viewerURL: String!
13
14}