com.google.ads.googleads.v17.resources.CampaignGroupOrBuilder 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/campaign_group.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.resources;
public interface CampaignGroupOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.resources.CampaignGroup)
com.google.protobuf.MessageOrBuilder {
/**
*
* Immutable. The resource name of the campaign group.
* Campaign group resource names have the form:
*
* `customers/{customer_id}/campaignGroups/{campaign_group_id}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The resourceName.
*/
java.lang.String getResourceName();
/**
*
* Immutable. The resource name of the campaign group.
* Campaign group resource names have the form:
*
* `customers/{customer_id}/campaignGroups/{campaign_group_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. The ID of the campaign group.
*
*
* int64 id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The id.
*/
long getId();
/**
*
* The name of the campaign group.
*
* This field is required and should not be empty when creating new campaign
* groups.
*
* It must not contain any null (code point 0x0), NL line feed
* (code point 0xA) or carriage return (code point 0xD) characters.
*
*
* string name = 4;
* @return The name.
*/
java.lang.String getName();
/**
*
* The name of the campaign group.
*
* This field is required and should not be empty when creating new campaign
* groups.
*
* It must not contain any null (code point 0x0), NL line feed
* (code point 0xA) or carriage return (code point 0xD) characters.
*
*
* string name = 4;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* The status of the campaign group.
*
* When a new campaign group is added, the status defaults to ENABLED.
*
*
* .google.ads.googleads.v17.enums.CampaignGroupStatusEnum.CampaignGroupStatus status = 5;
* @return The enum numeric value on the wire for status.
*/
int getStatusValue();
/**
*
* The status of the campaign group.
*
* When a new campaign group is added, the status defaults to ENABLED.
*
*
* .google.ads.googleads.v17.enums.CampaignGroupStatusEnum.CampaignGroupStatus status = 5;
* @return The status.
*/
com.google.ads.googleads.v17.enums.CampaignGroupStatusEnum.CampaignGroupStatus getStatus();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy