com.google.ads.googleads.v17.common.AgeSegmentOrBuilder 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/common/audiences.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.common;
public interface AgeSegmentOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.common.AgeSegment)
com.google.protobuf.MessageOrBuilder {
/**
*
* Minimum age to include. A minimum age must be specified and must be at
* least 18. Allowed values are 18, 25, 35, 45, 55, and 65.
*
*
* optional int32 min_age = 1;
* @return Whether the minAge field is set.
*/
boolean hasMinAge();
/**
*
* Minimum age to include. A minimum age must be specified and must be at
* least 18. Allowed values are 18, 25, 35, 45, 55, and 65.
*
*
* optional int32 min_age = 1;
* @return The minAge.
*/
int getMinAge();
/**
*
* Maximum age to include. A maximum age need not be specified. If specified,
* max_age must be greater than min_age, and allowed values are 24, 34, 44,
* 54, and 64.
*
*
* optional int32 max_age = 2;
* @return Whether the maxAge field is set.
*/
boolean hasMaxAge();
/**
*
* Maximum age to include. A maximum age need not be specified. If specified,
* max_age must be greater than min_age, and allowed values are 24, 34, 44,
* 54, and 64.
*
*
* optional int32 max_age = 2;
* @return The maxAge.
*/
int getMaxAge();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy