Interface YouTubeVideoAttributeMetadataOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
YouTubeVideoAttributeMetadata, YouTubeVideoAttributeMetadata.Builder

public interface YouTubeVideoAttributeMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    The total number of comments.
    long
    The total number of likes.
    The URL of the video thumbnail, prefixed by "https://img.youtube.com/".
    com.google.protobuf.ByteString
    The URL of the video thumbnail, prefixed by "https://img.youtube.com/".
    The URL of the video, prefixed by "https://www.youtube.com/".
    com.google.protobuf.ByteString
    The URL of the video, prefixed by "https://www.youtube.com/".
    long
    The total number of views.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getThumbnailUrl

      String getThumbnailUrl()
       The URL of the video thumbnail, prefixed by "https://img.youtube.com/".
       
      string thumbnail_url = 1;
      Returns:
      The thumbnailUrl.
    • getThumbnailUrlBytes

      com.google.protobuf.ByteString getThumbnailUrlBytes()
       The URL of the video thumbnail, prefixed by "https://img.youtube.com/".
       
      string thumbnail_url = 1;
      Returns:
      The bytes for thumbnailUrl.
    • getVideoUrl

      String getVideoUrl()
       The URL of the video, prefixed by "https://www.youtube.com/".
       
      string video_url = 2;
      Returns:
      The videoUrl.
    • getVideoUrlBytes

      com.google.protobuf.ByteString getVideoUrlBytes()
       The URL of the video, prefixed by "https://www.youtube.com/".
       
      string video_url = 2;
      Returns:
      The bytes for videoUrl.
    • getViewsCount

      long getViewsCount()
       The total number of views.
       
      int64 views_count = 3;
      Returns:
      The viewsCount.
    • getLikesCount

      long getLikesCount()
       The total number of likes.
       
      int64 likes_count = 4;
      Returns:
      The likesCount.
    • getCommentsCount

      long getCommentsCount()
       The total number of comments.
       
      int64 comments_count = 5;
      Returns:
      The commentsCount.