Interface TrendInsightMetricsOrBuilder

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

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

    Modifier and Type
    Method
    Description
    double
    The fraction (from 0 to 1 inclusive) of the requested audience that has has searched or viewed this trend.
    double
    The percentage of the change in the trend's value over the comparison period, where 1.0 represents 100%.
    long
    The number of views for this trend.

    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

    • getViewsCount

      long getViewsCount()
       The number of views for this trend. This is only populated for SearchTopics
       requests.
       
      int64 views_count = 1;
      Returns:
      The viewsCount.
    • getAudienceShare

      double getAudienceShare()
       The fraction (from 0 to 1 inclusive) of the requested audience that has
       has searched or viewed this trend. This is only populated for
       SearchAudience requests.
       
      double audience_share = 2;
      Returns:
      The audienceShare.
    • getTrendChangePercent

      double getTrendChangePercent()
       The percentage of the change in the trend's value over the comparison
       period, where 1.0 represents 100%. If this is not set, it means that the
       trend is emerging.
       
      double trend_change_percent = 3;
      Returns:
      The trendChangePercent.