Package com.google.openrtb
Interface OpenRtb.BidRequest.ProducerOrBuilder
-
- All Superinterfaces:
com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<OpenRtb.BidRequest.Producer>,com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OpenRtb.BidRequest.Producer,OpenRtb.BidRequest.Producer.Builder
- Enclosing class:
- OpenRtb.BidRequest
public static interface OpenRtb.BidRequest.ProducerOrBuilder extends com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<OpenRtb.BidRequest.Producer>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCat(int index)Array of IAB content categories that describe the content producer.com.google.protobuf.ByteStringgetCatBytes(int index)Array of IAB content categories that describe the content producer.intgetCatCount()Array of IAB content categories that describe the content producer.List<String>getCatList()Array of IAB content categories that describe the content producer.StringgetDomain()Highest level domain of the content producer (e.g., "producer.com").com.google.protobuf.ByteStringgetDomainBytes()Highest level domain of the content producer (e.g., "producer.com").StringgetId()Content producer or originator ID.com.google.protobuf.ByteStringgetIdBytes()Content producer or originator ID.StringgetName()Content producer or originator name (e.g., "Warner Bros").com.google.protobuf.ByteStringgetNameBytes()Content producer or originator name (e.g., "Warner Bros").booleanhasDomain()Highest level domain of the content producer (e.g., "producer.com").booleanhasId()Content producer or originator ID.booleanhasName()Content producer or originator name (e.g., "Warner Bros").-
Methods inherited from interface com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder
getDefaultInstanceForType, getExtension, getExtension, getExtension, getExtension, getExtension, getExtension, getExtensionCount, getExtensionCount, getExtensionCount, hasExtension, hasExtension, hasExtension
-
-
-
-
Method Detail
-
hasId
boolean hasId()
Content producer or originator ID. Useful if content is syndicated, and may be posted on a site using embed tags.
optional string id = 1;- Returns:
- Whether the id field is set.
-
getId
String getId()
Content producer or originator ID. Useful if content is syndicated, and may be posted on a site using embed tags.
optional string id = 1;- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
Content producer or originator ID. Useful if content is syndicated, and may be posted on a site using embed tags.
optional string id = 1;- Returns:
- The bytes for id.
-
hasName
boolean hasName()
Content producer or originator name (e.g., "Warner Bros").
optional string name = 2;- Returns:
- Whether the name field is set.
-
getName
String getName()
Content producer or originator name (e.g., "Warner Bros").
optional string name = 2;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Content producer or originator name (e.g., "Warner Bros").
optional string name = 2;- Returns:
- The bytes for name.
-
getCatList
List<String> getCatList()
Array of IAB content categories that describe the content producer. See enum ContentCategory.
repeated string cat = 3;- Returns:
- A list containing the cat.
-
getCatCount
int getCatCount()
Array of IAB content categories that describe the content producer. See enum ContentCategory.
repeated string cat = 3;- Returns:
- The count of cat.
-
getCat
String getCat(int index)
Array of IAB content categories that describe the content producer. See enum ContentCategory.
repeated string cat = 3;- Parameters:
index- The index of the element to return.- Returns:
- The cat at the given index.
-
getCatBytes
com.google.protobuf.ByteString getCatBytes(int index)
Array of IAB content categories that describe the content producer. See enum ContentCategory.
repeated string cat = 3;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the cat at the given index.
-
hasDomain
boolean hasDomain()
Highest level domain of the content producer (e.g., "producer.com").
optional string domain = 4;- Returns:
- Whether the domain field is set.
-
getDomain
String getDomain()
Highest level domain of the content producer (e.g., "producer.com").
optional string domain = 4;- Returns:
- The domain.
-
getDomainBytes
com.google.protobuf.ByteString getDomainBytes()
Highest level domain of the content producer (e.g., "producer.com").
optional string domain = 4;- Returns:
- The bytes for domain.
-
-