com.google.ads.googleads.v17.resources.LanguageConstantOrBuilder 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/resources/language_constant.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.resources;
public interface LanguageConstantOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.resources.LanguageConstant)
com.google.protobuf.MessageOrBuilder {
/**
*
* Output only. The resource name of the language constant.
* Language constant resource names have the form:
*
* `languageConstants/{criterion_id}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
* @return The resourceName.
*/
java.lang.String getResourceName();
/**
*
* Output only. The resource name of the language constant.
* Language constant resource names have the form:
*
* `languageConstants/{criterion_id}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
* @return The bytes for resourceName.
*/
com.google.protobuf.ByteString
getResourceNameBytes();
/**
*
* Output only. The ID of the language constant.
*
*
* optional int64 id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the id field is set.
*/
boolean hasId();
/**
*
* Output only. The ID of the language constant.
*
*
* optional int64 id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The id.
*/
long getId();
/**
*
* Output only. The language code, for example, "en_US", "en_AU", "es", "fr",
* etc.
*
*
* optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the code field is set.
*/
boolean hasCode();
/**
*
* Output only. The language code, for example, "en_US", "en_AU", "es", "fr",
* etc.
*
*
* optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The code.
*/
java.lang.String getCode();
/**
*
* Output only. The language code, for example, "en_US", "en_AU", "es", "fr",
* etc.
*
*
* optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The bytes for code.
*/
com.google.protobuf.ByteString
getCodeBytes();
/**
*
* Output only. The full name of the language in English, for example,
* "English (US)", "Spanish", etc.
*
*
* optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the name field is set.
*/
boolean hasName();
/**
*
* Output only. The full name of the language in English, for example,
* "English (US)", "Spanish", etc.
*
*
* optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The name.
*/
java.lang.String getName();
/**
*
* Output only. The full name of the language in English, for example,
* "English (US)", "Spanish", etc.
*
*
* optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* Output only. Whether the language is targetable.
*
*
* optional bool targetable = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the targetable field is set.
*/
boolean hasTargetable();
/**
*
* Output only. Whether the language is targetable.
*
*
* optional bool targetable = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The targetable.
*/
boolean getTargetable();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy