com.google.ads.googleads.v17.resources.LabelOrBuilder 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/label.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.resources;
public interface LabelOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.resources.Label)
com.google.protobuf.MessageOrBuilder {
/**
*
* Immutable. Name of the resource.
* Label resource names have the form:
* `customers/{customer_id}/labels/{label_id}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The resourceName.
*/
java.lang.String getResourceName();
/**
*
* Immutable. Name of the resource.
* Label resource names have the form:
* `customers/{customer_id}/labels/{label_id}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The bytes for resourceName.
*/
com.google.protobuf.ByteString
getResourceNameBytes();
/**
*
* Output only. ID of the label. Read only.
*
*
* optional int64 id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the id field is set.
*/
boolean hasId();
/**
*
* Output only. ID of the label. Read only.
*
*
* optional int64 id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The id.
*/
long getId();
/**
*
* The name of the label.
*
* This field is required and should not be empty when creating a new label.
*
* The length of this string should be between 1 and 80, inclusive.
*
*
* optional string name = 7;
* @return Whether the name field is set.
*/
boolean hasName();
/**
*
* The name of the label.
*
* This field is required and should not be empty when creating a new label.
*
* The length of this string should be between 1 and 80, inclusive.
*
*
* optional string name = 7;
* @return The name.
*/
java.lang.String getName();
/**
*
* The name of the label.
*
* This field is required and should not be empty when creating a new label.
*
* The length of this string should be between 1 and 80, inclusive.
*
*
* optional string name = 7;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* Output only. Status of the label. Read only.
*
*
* .google.ads.googleads.v17.enums.LabelStatusEnum.LabelStatus status = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The enum numeric value on the wire for status.
*/
int getStatusValue();
/**
*
* Output only. Status of the label. Read only.
*
*
* .google.ads.googleads.v17.enums.LabelStatusEnum.LabelStatus status = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The status.
*/
com.google.ads.googleads.v17.enums.LabelStatusEnum.LabelStatus getStatus();
/**
*
* A type of label displaying text on a colored background.
*
*
* .google.ads.googleads.v17.common.TextLabel text_label = 5;
* @return Whether the textLabel field is set.
*/
boolean hasTextLabel();
/**
*
* A type of label displaying text on a colored background.
*
*
* .google.ads.googleads.v17.common.TextLabel text_label = 5;
* @return The textLabel.
*/
com.google.ads.googleads.v17.common.TextLabel getTextLabel();
/**
*
* A type of label displaying text on a colored background.
*
*
* .google.ads.googleads.v17.common.TextLabel text_label = 5;
*/
com.google.ads.googleads.v17.common.TextLabelOrBuilder getTextLabelOrBuilder();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy