Class VideoUpdatePayload

    • Constructor Detail

      • VideoUpdatePayload

        public VideoUpdatePayload()
    • Method Detail

      • getPlayerId

        @Nullable
        public String getPlayerId()
        The unique ID for the player you want to associate with your video.
        Returns:
        playerId
      • setPlayerId

        public void setPlayerId​(String playerId)
      • getTitle

        @Nullable
        public String getTitle()
        The title you want to use for your video.
        Returns:
        title
      • setTitle

        public void setTitle​(String title)
      • getDescription

        @Nullable
        public String getDescription()
        A brief description of the video.
        Returns:
        description
      • setDescription

        public void setDescription​(String description)
      • getPublic

        @Nullable
        public Boolean getPublic()
        Whether the video is publicly available or not. False means it is set to private. Default is true. Tutorials on [private videos](https://api.video/blog/endpoints/private-videos).
        Returns:
        _public
      • setPublic

        public void setPublic​(Boolean _public)
      • getPanoramic

        @Nullable
        public Boolean getPanoramic()
        Whether the video is a 360 degree or immersive video.
        Returns:
        panoramic
      • setPanoramic

        public void setPanoramic​(Boolean panoramic)
      • getMp4Support

        @Nullable
        public Boolean getMp4Support()
        Whether the player supports the mp4 format.
        Returns:
        mp4Support
      • setMp4Support

        public void setMp4Support​(Boolean mp4Support)
      • getTags

        @Nullable
        public List<String> getTags()
        A list of terms or words you want to tag the video with. Make sure the list includes all the tags you want as whatever you send in this list will overwrite the existing list for the video.
        Returns:
        tags
      • setTags

        public void setTags​(List<String> tags)
      • getMetadata

        @Nullable
        public List<Metadata> getMetadata()
        A list (array) of dictionaries where each dictionary contains a key value pair that describes the video. As with tags, you must send the complete list of metadata you want as whatever you send here will overwrite the existing metadata for the video. [Dynamic Metadata](https://api.video/blog/endpoints/dynamic-metadata) allows you to define a key that allows any value pair.
        Returns:
        metadata
      • setMetadata

        public void setMetadata​(List<Metadata> metadata)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object