com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest 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/services/batch_job_service.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.services;
/**
*
* Request message for
* [BatchJobService.AddBatchJobOperations][google.ads.googleads.v17.services.BatchJobService.AddBatchJobOperations].
*
*
* Protobuf type {@code google.ads.googleads.v17.services.AddBatchJobOperationsRequest}
*/
public final class AddBatchJobOperationsRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:google.ads.googleads.v17.services.AddBatchJobOperationsRequest)
AddBatchJobOperationsRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use AddBatchJobOperationsRequest.newBuilder() to construct.
private AddBatchJobOperationsRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private AddBatchJobOperationsRequest() {
resourceName_ = "";
sequenceToken_ = "";
mutateOperations_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new AddBatchJobOperationsRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.ads.googleads.v17.services.BatchJobServiceProto.internal_static_google_ads_googleads_v17_services_AddBatchJobOperationsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.ads.googleads.v17.services.BatchJobServiceProto.internal_static_google_ads_googleads_v17_services_AddBatchJobOperationsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest.class, com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest.Builder.class);
}
public static final int RESOURCE_NAME_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object resourceName_ = "";
/**
*
* Required. The resource name of the batch job.
*
*
* string resource_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* @return The resourceName.
*/
@java.lang.Override
public java.lang.String getResourceName() {
java.lang.Object ref = resourceName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
resourceName_ = s;
return s;
}
}
/**
*
* Required. The resource name of the batch job.
*
*
* string resource_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* @return The bytes for resourceName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getResourceNameBytes() {
java.lang.Object ref = resourceName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
resourceName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int SEQUENCE_TOKEN_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object sequenceToken_ = "";
/**
*
* A token used to enforce sequencing.
*
* The first AddBatchJobOperations request for a batch job should not set
* sequence_token. Subsequent requests must set sequence_token to the value of
* next_sequence_token received in the previous AddBatchJobOperations
* response.
*
*
* string sequence_token = 2;
* @return The sequenceToken.
*/
@java.lang.Override
public java.lang.String getSequenceToken() {
java.lang.Object ref = sequenceToken_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
sequenceToken_ = s;
return s;
}
}
/**
*
* A token used to enforce sequencing.
*
* The first AddBatchJobOperations request for a batch job should not set
* sequence_token. Subsequent requests must set sequence_token to the value of
* next_sequence_token received in the previous AddBatchJobOperations
* response.
*
*
* string sequence_token = 2;
* @return The bytes for sequenceToken.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getSequenceTokenBytes() {
java.lang.Object ref = sequenceToken_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
sequenceToken_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int MUTATE_OPERATIONS_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private java.util.List mutateOperations_;
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public java.util.List getMutateOperationsList() {
return mutateOperations_;
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public java.util.List extends com.google.ads.googleads.v17.services.MutateOperationOrBuilder>
getMutateOperationsOrBuilderList() {
return mutateOperations_;
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public int getMutateOperationsCount() {
return mutateOperations_.size();
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public com.google.ads.googleads.v17.services.MutateOperation getMutateOperations(int index) {
return mutateOperations_.get(index);
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
@java.lang.Override
public com.google.ads.googleads.v17.services.MutateOperationOrBuilder getMutateOperationsOrBuilder(
int index) {
return mutateOperations_.get(index);
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(resourceName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, resourceName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(sequenceToken_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, sequenceToken_);
}
for (int i = 0; i < mutateOperations_.size(); i++) {
output.writeMessage(3, mutateOperations_.get(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(resourceName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, resourceName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(sequenceToken_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, sequenceToken_);
}
for (int i = 0; i < mutateOperations_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, mutateOperations_.get(i));
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest)) {
return super.equals(obj);
}
com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest other = (com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest) obj;
if (!getResourceName()
.equals(other.getResourceName())) return false;
if (!getSequenceToken()
.equals(other.getSequenceToken())) return false;
if (!getMutateOperationsList()
.equals(other.getMutateOperationsList())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + RESOURCE_NAME_FIELD_NUMBER;
hash = (53 * hash) + getResourceName().hashCode();
hash = (37 * hash) + SEQUENCE_TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getSequenceToken().hashCode();
if (getMutateOperationsCount() > 0) {
hash = (37 * hash) + MUTATE_OPERATIONS_FIELD_NUMBER;
hash = (53 * hash) + getMutateOperationsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* Request message for
* [BatchJobService.AddBatchJobOperations][google.ads.googleads.v17.services.BatchJobService.AddBatchJobOperations].
*
*
* Protobuf type {@code google.ads.googleads.v17.services.AddBatchJobOperationsRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:google.ads.googleads.v17.services.AddBatchJobOperationsRequest)
com.google.ads.googleads.v17.services.AddBatchJobOperationsRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.ads.googleads.v17.services.BatchJobServiceProto.internal_static_google_ads_googleads_v17_services_AddBatchJobOperationsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.ads.googleads.v17.services.BatchJobServiceProto.internal_static_google_ads_googleads_v17_services_AddBatchJobOperationsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest.class, com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest.Builder.class);
}
// Construct using com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
resourceName_ = "";
sequenceToken_ = "";
if (mutateOperationsBuilder_ == null) {
mutateOperations_ = java.util.Collections.emptyList();
} else {
mutateOperations_ = null;
mutateOperationsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.google.ads.googleads.v17.services.BatchJobServiceProto.internal_static_google_ads_googleads_v17_services_AddBatchJobOperationsRequest_descriptor;
}
@java.lang.Override
public com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest getDefaultInstanceForType() {
return com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest.getDefaultInstance();
}
@java.lang.Override
public com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest build() {
com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest buildPartial() {
com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest result = new com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest result) {
if (mutateOperationsBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)) {
mutateOperations_ = java.util.Collections.unmodifiableList(mutateOperations_);
bitField0_ = (bitField0_ & ~0x00000004);
}
result.mutateOperations_ = mutateOperations_;
} else {
result.mutateOperations_ = mutateOperationsBuilder_.build();
}
}
private void buildPartial0(com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.resourceName_ = resourceName_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.sequenceToken_ = sequenceToken_;
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest) {
return mergeFrom((com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest other) {
if (other == com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest.getDefaultInstance()) return this;
if (!other.getResourceName().isEmpty()) {
resourceName_ = other.resourceName_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getSequenceToken().isEmpty()) {
sequenceToken_ = other.sequenceToken_;
bitField0_ |= 0x00000002;
onChanged();
}
if (mutateOperationsBuilder_ == null) {
if (!other.mutateOperations_.isEmpty()) {
if (mutateOperations_.isEmpty()) {
mutateOperations_ = other.mutateOperations_;
bitField0_ = (bitField0_ & ~0x00000004);
} else {
ensureMutateOperationsIsMutable();
mutateOperations_.addAll(other.mutateOperations_);
}
onChanged();
}
} else {
if (!other.mutateOperations_.isEmpty()) {
if (mutateOperationsBuilder_.isEmpty()) {
mutateOperationsBuilder_.dispose();
mutateOperationsBuilder_ = null;
mutateOperations_ = other.mutateOperations_;
bitField0_ = (bitField0_ & ~0x00000004);
mutateOperationsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getMutateOperationsFieldBuilder() : null;
} else {
mutateOperationsBuilder_.addAllMessages(other.mutateOperations_);
}
}
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
resourceName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
sequenceToken_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26: {
com.google.ads.googleads.v17.services.MutateOperation m =
input.readMessage(
com.google.ads.googleads.v17.services.MutateOperation.parser(),
extensionRegistry);
if (mutateOperationsBuilder_ == null) {
ensureMutateOperationsIsMutable();
mutateOperations_.add(m);
} else {
mutateOperationsBuilder_.addMessage(m);
}
break;
} // case 26
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object resourceName_ = "";
/**
*
* Required. The resource name of the batch job.
*
*
* string resource_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* @return The resourceName.
*/
public java.lang.String getResourceName() {
java.lang.Object ref = resourceName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
resourceName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Required. The resource name of the batch job.
*
*
* string resource_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* @return The bytes for resourceName.
*/
public com.google.protobuf.ByteString
getResourceNameBytes() {
java.lang.Object ref = resourceName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
resourceName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Required. The resource name of the batch job.
*
*
* string resource_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* @param value The resourceName to set.
* @return This builder for chaining.
*/
public Builder setResourceName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
resourceName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* Required. The resource name of the batch job.
*
*
* string resource_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* @return This builder for chaining.
*/
public Builder clearResourceName() {
resourceName_ = getDefaultInstance().getResourceName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
* Required. The resource name of the batch job.
*
*
* string resource_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* @param value The bytes for resourceName to set.
* @return This builder for chaining.
*/
public Builder setResourceNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
resourceName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object sequenceToken_ = "";
/**
*
* A token used to enforce sequencing.
*
* The first AddBatchJobOperations request for a batch job should not set
* sequence_token. Subsequent requests must set sequence_token to the value of
* next_sequence_token received in the previous AddBatchJobOperations
* response.
*
*
* string sequence_token = 2;
* @return The sequenceToken.
*/
public java.lang.String getSequenceToken() {
java.lang.Object ref = sequenceToken_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
sequenceToken_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* A token used to enforce sequencing.
*
* The first AddBatchJobOperations request for a batch job should not set
* sequence_token. Subsequent requests must set sequence_token to the value of
* next_sequence_token received in the previous AddBatchJobOperations
* response.
*
*
* string sequence_token = 2;
* @return The bytes for sequenceToken.
*/
public com.google.protobuf.ByteString
getSequenceTokenBytes() {
java.lang.Object ref = sequenceToken_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
sequenceToken_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* A token used to enforce sequencing.
*
* The first AddBatchJobOperations request for a batch job should not set
* sequence_token. Subsequent requests must set sequence_token to the value of
* next_sequence_token received in the previous AddBatchJobOperations
* response.
*
*
* string sequence_token = 2;
* @param value The sequenceToken to set.
* @return This builder for chaining.
*/
public Builder setSequenceToken(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
sequenceToken_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* A token used to enforce sequencing.
*
* The first AddBatchJobOperations request for a batch job should not set
* sequence_token. Subsequent requests must set sequence_token to the value of
* next_sequence_token received in the previous AddBatchJobOperations
* response.
*
*
* string sequence_token = 2;
* @return This builder for chaining.
*/
public Builder clearSequenceToken() {
sequenceToken_ = getDefaultInstance().getSequenceToken();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
* A token used to enforce sequencing.
*
* The first AddBatchJobOperations request for a batch job should not set
* sequence_token. Subsequent requests must set sequence_token to the value of
* next_sequence_token received in the previous AddBatchJobOperations
* response.
*
*
* string sequence_token = 2;
* @param value The bytes for sequenceToken to set.
* @return This builder for chaining.
*/
public Builder setSequenceTokenBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
sequenceToken_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private java.util.List mutateOperations_ =
java.util.Collections.emptyList();
private void ensureMutateOperationsIsMutable() {
if (!((bitField0_ & 0x00000004) != 0)) {
mutateOperations_ = new java.util.ArrayList(mutateOperations_);
bitField0_ |= 0x00000004;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.ads.googleads.v17.services.MutateOperation, com.google.ads.googleads.v17.services.MutateOperation.Builder, com.google.ads.googleads.v17.services.MutateOperationOrBuilder> mutateOperationsBuilder_;
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public java.util.List getMutateOperationsList() {
if (mutateOperationsBuilder_ == null) {
return java.util.Collections.unmodifiableList(mutateOperations_);
} else {
return mutateOperationsBuilder_.getMessageList();
}
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public int getMutateOperationsCount() {
if (mutateOperationsBuilder_ == null) {
return mutateOperations_.size();
} else {
return mutateOperationsBuilder_.getCount();
}
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public com.google.ads.googleads.v17.services.MutateOperation getMutateOperations(int index) {
if (mutateOperationsBuilder_ == null) {
return mutateOperations_.get(index);
} else {
return mutateOperationsBuilder_.getMessage(index);
}
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public Builder setMutateOperations(
int index, com.google.ads.googleads.v17.services.MutateOperation value) {
if (mutateOperationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMutateOperationsIsMutable();
mutateOperations_.set(index, value);
onChanged();
} else {
mutateOperationsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public Builder setMutateOperations(
int index, com.google.ads.googleads.v17.services.MutateOperation.Builder builderForValue) {
if (mutateOperationsBuilder_ == null) {
ensureMutateOperationsIsMutable();
mutateOperations_.set(index, builderForValue.build());
onChanged();
} else {
mutateOperationsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public Builder addMutateOperations(com.google.ads.googleads.v17.services.MutateOperation value) {
if (mutateOperationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMutateOperationsIsMutable();
mutateOperations_.add(value);
onChanged();
} else {
mutateOperationsBuilder_.addMessage(value);
}
return this;
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public Builder addMutateOperations(
int index, com.google.ads.googleads.v17.services.MutateOperation value) {
if (mutateOperationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMutateOperationsIsMutable();
mutateOperations_.add(index, value);
onChanged();
} else {
mutateOperationsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public Builder addMutateOperations(
com.google.ads.googleads.v17.services.MutateOperation.Builder builderForValue) {
if (mutateOperationsBuilder_ == null) {
ensureMutateOperationsIsMutable();
mutateOperations_.add(builderForValue.build());
onChanged();
} else {
mutateOperationsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public Builder addMutateOperations(
int index, com.google.ads.googleads.v17.services.MutateOperation.Builder builderForValue) {
if (mutateOperationsBuilder_ == null) {
ensureMutateOperationsIsMutable();
mutateOperations_.add(index, builderForValue.build());
onChanged();
} else {
mutateOperationsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public Builder addAllMutateOperations(
java.lang.Iterable extends com.google.ads.googleads.v17.services.MutateOperation> values) {
if (mutateOperationsBuilder_ == null) {
ensureMutateOperationsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, mutateOperations_);
onChanged();
} else {
mutateOperationsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public Builder clearMutateOperations() {
if (mutateOperationsBuilder_ == null) {
mutateOperations_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
} else {
mutateOperationsBuilder_.clear();
}
return this;
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public Builder removeMutateOperations(int index) {
if (mutateOperationsBuilder_ == null) {
ensureMutateOperationsIsMutable();
mutateOperations_.remove(index);
onChanged();
} else {
mutateOperationsBuilder_.remove(index);
}
return this;
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public com.google.ads.googleads.v17.services.MutateOperation.Builder getMutateOperationsBuilder(
int index) {
return getMutateOperationsFieldBuilder().getBuilder(index);
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public com.google.ads.googleads.v17.services.MutateOperationOrBuilder getMutateOperationsOrBuilder(
int index) {
if (mutateOperationsBuilder_ == null) {
return mutateOperations_.get(index); } else {
return mutateOperationsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public java.util.List extends com.google.ads.googleads.v17.services.MutateOperationOrBuilder>
getMutateOperationsOrBuilderList() {
if (mutateOperationsBuilder_ != null) {
return mutateOperationsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(mutateOperations_);
}
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public com.google.ads.googleads.v17.services.MutateOperation.Builder addMutateOperationsBuilder() {
return getMutateOperationsFieldBuilder().addBuilder(
com.google.ads.googleads.v17.services.MutateOperation.getDefaultInstance());
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public com.google.ads.googleads.v17.services.MutateOperation.Builder addMutateOperationsBuilder(
int index) {
return getMutateOperationsFieldBuilder().addBuilder(
index, com.google.ads.googleads.v17.services.MutateOperation.getDefaultInstance());
}
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
public java.util.List
getMutateOperationsBuilderList() {
return getMutateOperationsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.ads.googleads.v17.services.MutateOperation, com.google.ads.googleads.v17.services.MutateOperation.Builder, com.google.ads.googleads.v17.services.MutateOperationOrBuilder>
getMutateOperationsFieldBuilder() {
if (mutateOperationsBuilder_ == null) {
mutateOperationsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.ads.googleads.v17.services.MutateOperation, com.google.ads.googleads.v17.services.MutateOperation.Builder, com.google.ads.googleads.v17.services.MutateOperationOrBuilder>(
mutateOperations_,
((bitField0_ & 0x00000004) != 0),
getParentForChildren(),
isClean());
mutateOperations_ = null;
}
return mutateOperationsBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.ads.googleads.v17.services.AddBatchJobOperationsRequest)
}
// @@protoc_insertion_point(class_scope:google.ads.googleads.v17.services.AddBatchJobOperationsRequest)
private static final com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest();
}
public static com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public AddBatchJobOperationsRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.ads.googleads.v17.services.AddBatchJobOperationsRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy