com.google.ads.googleads.v17.services.EffectiveFrequencyBreakdownOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v17 Show documentation
Show all versions of google-ads-stubs-v17 Show documentation
Stubs for GAAPI version google-ads-stubs-v17
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/ads/googleads/v17/services/reach_plan_service.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.services;
public interface EffectiveFrequencyBreakdownOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.services.EffectiveFrequencyBreakdown)
com.google.protobuf.MessageOrBuilder {
/**
* * The effective frequency [1-10].
*
*
* int32 effective_frequency = 1;
* @return The effectiveFrequency.
*/
int getEffectiveFrequency();
/**
* * The number of unique people reached at least effective_frequency times that
* exactly matches the Targeting.
*
* Note that a minimum number of unique people must be reached in order for
* data to be reported. If the minimum number is not met, the on_target_reach
* value will be rounded to 0.
*
*
* int64 on_target_reach = 2;
* @return The onTargetReach.
*/
long getOnTargetReach();
/**
* * Total number of unique people reached at least effective_frequency times.
* This includes people that may fall outside the specified Targeting.
*
* Note that a minimum number of unique people must be reached in order for
* data to be reported. If the minimum number is not met, the total_reach
* value will be rounded to 0.
*
*
* int64 total_reach = 3;
* @return The totalReach.
*/
long getTotalReach();
/**
* * The number of users (including co-viewing users) reached for the associated
* effective_frequency value.
*
*
* optional int64 effective_coview_reach = 4;
* @return Whether the effectiveCoviewReach field is set.
*/
boolean hasEffectiveCoviewReach();
/**
* * The number of users (including co-viewing users) reached for the associated
* effective_frequency value.
*
*
* optional int64 effective_coview_reach = 4;
* @return The effectiveCoviewReach.
*/
long getEffectiveCoviewReach();
/**
* * The number of users (including co-viewing users) reached for the associated
* effective_frequency value within the specified plan demographic.
*
*
* optional int64 on_target_effective_coview_reach = 5;
* @return Whether the onTargetEffectiveCoviewReach field is set.
*/
boolean hasOnTargetEffectiveCoviewReach();
/**
* * The number of users (including co-viewing users) reached for the associated
* effective_frequency value within the specified plan demographic.
*
*
* optional int64 on_target_effective_coview_reach = 5;
* @return The onTargetEffectiveCoviewReach.
*/
long getOnTargetEffectiveCoviewReach();
}