All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.ads.googleads.v17.common.MaximizeConversions Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/ads/googleads/v17/common/bidding.proto

// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.common;

/**
 * 
 * An automated bidding strategy to help get the most conversions for your
 * campaigns while spending your budget.
 * 
* * Protobuf type {@code google.ads.googleads.v17.common.MaximizeConversions} */ public final class MaximizeConversions extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.ads.googleads.v17.common.MaximizeConversions) MaximizeConversionsOrBuilder { private static final long serialVersionUID = 0L; // Use MaximizeConversions.newBuilder() to construct. private MaximizeConversions(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private MaximizeConversions() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new MaximizeConversions(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.ads.googleads.v17.common.BiddingProto.internal_static_google_ads_googleads_v17_common_MaximizeConversions_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.ads.googleads.v17.common.BiddingProto.internal_static_google_ads_googleads_v17_common_MaximizeConversions_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.ads.googleads.v17.common.MaximizeConversions.class, com.google.ads.googleads.v17.common.MaximizeConversions.Builder.class); } public static final int CPC_BID_CEILING_MICROS_FIELD_NUMBER = 2; private long cpcBidCeilingMicros_ = 0L; /** *
   * Maximum bid limit that can be set by the bid strategy.
   * The limit applies to all keywords managed by the strategy.
   * Mutable for portfolio bidding strategies only.
   * 
* * int64 cpc_bid_ceiling_micros = 2; * @return The cpcBidCeilingMicros. */ @java.lang.Override public long getCpcBidCeilingMicros() { return cpcBidCeilingMicros_; } public static final int CPC_BID_FLOOR_MICROS_FIELD_NUMBER = 3; private long cpcBidFloorMicros_ = 0L; /** *
   * Minimum bid limit that can be set by the bid strategy.
   * The limit applies to all keywords managed by the strategy.
   * Mutable for portfolio bidding strategies only.
   * 
* * int64 cpc_bid_floor_micros = 3; * @return The cpcBidFloorMicros. */ @java.lang.Override public long getCpcBidFloorMicros() { return cpcBidFloorMicros_; } public static final int TARGET_CPA_MICROS_FIELD_NUMBER = 4; private long targetCpaMicros_ = 0L; /** *
   * The target cost-per-action (CPA) option. This is the average amount that
   * you would like to spend per conversion action specified in micro units of
   * the bidding strategy's currency. If set, the bid strategy will get as many
   * conversions as possible at or below the target cost-per-action. If the
   * target CPA is not set, the bid strategy will aim to achieve the lowest
   * possible CPA given the budget.
   * 
* * int64 target_cpa_micros = 4; * @return The targetCpaMicros. */ @java.lang.Override public long getTargetCpaMicros() { return targetCpaMicros_; } 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 (cpcBidCeilingMicros_ != 0L) { output.writeInt64(2, cpcBidCeilingMicros_); } if (cpcBidFloorMicros_ != 0L) { output.writeInt64(3, cpcBidFloorMicros_); } if (targetCpaMicros_ != 0L) { output.writeInt64(4, targetCpaMicros_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (cpcBidCeilingMicros_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(2, cpcBidCeilingMicros_); } if (cpcBidFloorMicros_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(3, cpcBidFloorMicros_); } if (targetCpaMicros_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(4, targetCpaMicros_); } 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.common.MaximizeConversions)) { return super.equals(obj); } com.google.ads.googleads.v17.common.MaximizeConversions other = (com.google.ads.googleads.v17.common.MaximizeConversions) obj; if (getCpcBidCeilingMicros() != other.getCpcBidCeilingMicros()) return false; if (getCpcBidFloorMicros() != other.getCpcBidFloorMicros()) return false; if (getTargetCpaMicros() != other.getTargetCpaMicros()) 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) + CPC_BID_CEILING_MICROS_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getCpcBidCeilingMicros()); hash = (37 * hash) + CPC_BID_FLOOR_MICROS_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getCpcBidFloorMicros()); hash = (37 * hash) + TARGET_CPA_MICROS_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getTargetCpaMicros()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.ads.googleads.v17.common.MaximizeConversions parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.ads.googleads.v17.common.MaximizeConversions 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.common.MaximizeConversions parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.ads.googleads.v17.common.MaximizeConversions 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.common.MaximizeConversions parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.ads.googleads.v17.common.MaximizeConversions 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.common.MaximizeConversions parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.ads.googleads.v17.common.MaximizeConversions 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.common.MaximizeConversions parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.google.ads.googleads.v17.common.MaximizeConversions 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.common.MaximizeConversions 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.common.MaximizeConversions 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.common.MaximizeConversions 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; } /** *
   * An automated bidding strategy to help get the most conversions for your
   * campaigns while spending your budget.
   * 
* * Protobuf type {@code google.ads.googleads.v17.common.MaximizeConversions} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.ads.googleads.v17.common.MaximizeConversions) com.google.ads.googleads.v17.common.MaximizeConversionsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.ads.googleads.v17.common.BiddingProto.internal_static_google_ads_googleads_v17_common_MaximizeConversions_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.ads.googleads.v17.common.BiddingProto.internal_static_google_ads_googleads_v17_common_MaximizeConversions_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.ads.googleads.v17.common.MaximizeConversions.class, com.google.ads.googleads.v17.common.MaximizeConversions.Builder.class); } // Construct using com.google.ads.googleads.v17.common.MaximizeConversions.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; cpcBidCeilingMicros_ = 0L; cpcBidFloorMicros_ = 0L; targetCpaMicros_ = 0L; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.ads.googleads.v17.common.BiddingProto.internal_static_google_ads_googleads_v17_common_MaximizeConversions_descriptor; } @java.lang.Override public com.google.ads.googleads.v17.common.MaximizeConversions getDefaultInstanceForType() { return com.google.ads.googleads.v17.common.MaximizeConversions.getDefaultInstance(); } @java.lang.Override public com.google.ads.googleads.v17.common.MaximizeConversions build() { com.google.ads.googleads.v17.common.MaximizeConversions result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.ads.googleads.v17.common.MaximizeConversions buildPartial() { com.google.ads.googleads.v17.common.MaximizeConversions result = new com.google.ads.googleads.v17.common.MaximizeConversions(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.ads.googleads.v17.common.MaximizeConversions result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.cpcBidCeilingMicros_ = cpcBidCeilingMicros_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.cpcBidFloorMicros_ = cpcBidFloorMicros_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.targetCpaMicros_ = targetCpaMicros_; } } @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.common.MaximizeConversions) { return mergeFrom((com.google.ads.googleads.v17.common.MaximizeConversions)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.ads.googleads.v17.common.MaximizeConversions other) { if (other == com.google.ads.googleads.v17.common.MaximizeConversions.getDefaultInstance()) return this; if (other.getCpcBidCeilingMicros() != 0L) { setCpcBidCeilingMicros(other.getCpcBidCeilingMicros()); } if (other.getCpcBidFloorMicros() != 0L) { setCpcBidFloorMicros(other.getCpcBidFloorMicros()); } if (other.getTargetCpaMicros() != 0L) { setTargetCpaMicros(other.getTargetCpaMicros()); } 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 16: { cpcBidCeilingMicros_ = input.readInt64(); bitField0_ |= 0x00000001; break; } // case 16 case 24: { cpcBidFloorMicros_ = input.readInt64(); bitField0_ |= 0x00000002; break; } // case 24 case 32: { targetCpaMicros_ = input.readInt64(); bitField0_ |= 0x00000004; break; } // case 32 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 long cpcBidCeilingMicros_ ; /** *
     * Maximum bid limit that can be set by the bid strategy.
     * The limit applies to all keywords managed by the strategy.
     * Mutable for portfolio bidding strategies only.
     * 
* * int64 cpc_bid_ceiling_micros = 2; * @return The cpcBidCeilingMicros. */ @java.lang.Override public long getCpcBidCeilingMicros() { return cpcBidCeilingMicros_; } /** *
     * Maximum bid limit that can be set by the bid strategy.
     * The limit applies to all keywords managed by the strategy.
     * Mutable for portfolio bidding strategies only.
     * 
* * int64 cpc_bid_ceiling_micros = 2; * @param value The cpcBidCeilingMicros to set. * @return This builder for chaining. */ public Builder setCpcBidCeilingMicros(long value) { cpcBidCeilingMicros_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     * Maximum bid limit that can be set by the bid strategy.
     * The limit applies to all keywords managed by the strategy.
     * Mutable for portfolio bidding strategies only.
     * 
* * int64 cpc_bid_ceiling_micros = 2; * @return This builder for chaining. */ public Builder clearCpcBidCeilingMicros() { bitField0_ = (bitField0_ & ~0x00000001); cpcBidCeilingMicros_ = 0L; onChanged(); return this; } private long cpcBidFloorMicros_ ; /** *
     * Minimum bid limit that can be set by the bid strategy.
     * The limit applies to all keywords managed by the strategy.
     * Mutable for portfolio bidding strategies only.
     * 
* * int64 cpc_bid_floor_micros = 3; * @return The cpcBidFloorMicros. */ @java.lang.Override public long getCpcBidFloorMicros() { return cpcBidFloorMicros_; } /** *
     * Minimum bid limit that can be set by the bid strategy.
     * The limit applies to all keywords managed by the strategy.
     * Mutable for portfolio bidding strategies only.
     * 
* * int64 cpc_bid_floor_micros = 3; * @param value The cpcBidFloorMicros to set. * @return This builder for chaining. */ public Builder setCpcBidFloorMicros(long value) { cpcBidFloorMicros_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * Minimum bid limit that can be set by the bid strategy.
     * The limit applies to all keywords managed by the strategy.
     * Mutable for portfolio bidding strategies only.
     * 
* * int64 cpc_bid_floor_micros = 3; * @return This builder for chaining. */ public Builder clearCpcBidFloorMicros() { bitField0_ = (bitField0_ & ~0x00000002); cpcBidFloorMicros_ = 0L; onChanged(); return this; } private long targetCpaMicros_ ; /** *
     * The target cost-per-action (CPA) option. This is the average amount that
     * you would like to spend per conversion action specified in micro units of
     * the bidding strategy's currency. If set, the bid strategy will get as many
     * conversions as possible at or below the target cost-per-action. If the
     * target CPA is not set, the bid strategy will aim to achieve the lowest
     * possible CPA given the budget.
     * 
* * int64 target_cpa_micros = 4; * @return The targetCpaMicros. */ @java.lang.Override public long getTargetCpaMicros() { return targetCpaMicros_; } /** *
     * The target cost-per-action (CPA) option. This is the average amount that
     * you would like to spend per conversion action specified in micro units of
     * the bidding strategy's currency. If set, the bid strategy will get as many
     * conversions as possible at or below the target cost-per-action. If the
     * target CPA is not set, the bid strategy will aim to achieve the lowest
     * possible CPA given the budget.
     * 
* * int64 target_cpa_micros = 4; * @param value The targetCpaMicros to set. * @return This builder for chaining. */ public Builder setTargetCpaMicros(long value) { targetCpaMicros_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     * The target cost-per-action (CPA) option. This is the average amount that
     * you would like to spend per conversion action specified in micro units of
     * the bidding strategy's currency. If set, the bid strategy will get as many
     * conversions as possible at or below the target cost-per-action. If the
     * target CPA is not set, the bid strategy will aim to achieve the lowest
     * possible CPA given the budget.
     * 
* * int64 target_cpa_micros = 4; * @return This builder for chaining. */ public Builder clearTargetCpaMicros() { bitField0_ = (bitField0_ & ~0x00000004); targetCpaMicros_ = 0L; onChanged(); return this; } @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.common.MaximizeConversions) } // @@protoc_insertion_point(class_scope:google.ads.googleads.v17.common.MaximizeConversions) private static final com.google.ads.googleads.v17.common.MaximizeConversions DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.ads.googleads.v17.common.MaximizeConversions(); } public static com.google.ads.googleads.v17.common.MaximizeConversions getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public MaximizeConversions 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.common.MaximizeConversions getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy