@@ -25831,6 +25831,103 @@ public Generatetags setTagFormats(java.util.List<java.lang.String> tagFormats) {
2583125831 return this;
2583225832 }
2583325833
25834+ /**
25835+ * Optional. Indicates whether to include the dc_dbm macro in the generated tags. [Learn
25836+ * more](https://support.google.com/campaignmanager/answer/9280273) about this macro.
25837+ */
25838+ @com.google.api.client.util.Key("tagProperties.dcDbmMacroIncluded")
25839+ private java.lang.Boolean tagPropertiesDcDbmMacroIncluded;
25840+
25841+ /** Optional. Indicates whether to include the dc_dbm macro in the generated tags. [Learn
25842+ more](https://support.google.com/campaignmanager/answer/9280273) about this macro.
25843+ */
25844+ public java.lang.Boolean getTagPropertiesDcDbmMacroIncluded() {
25845+ return tagPropertiesDcDbmMacroIncluded;
25846+ }
25847+
25848+ /**
25849+ * Optional. Indicates whether to include the dc_dbm macro in the generated tags. [Learn
25850+ * more](https://support.google.com/campaignmanager/answer/9280273) about this macro.
25851+ */
25852+ public Generatetags setTagPropertiesDcDbmMacroIncluded(java.lang.Boolean tagPropertiesDcDbmMacroIncluded) {
25853+ this.tagPropertiesDcDbmMacroIncluded = tagPropertiesDcDbmMacroIncluded;
25854+ return this;
25855+ }
25856+
25857+ /**
25858+ * Optional. Indicates whether to include the GPP macro in the generated tags. [Learn
25859+ * more](https://support.google.com/campaignmanager/answer/10031693) about this macro.
25860+ */
25861+ @com.google.api.client.util.Key("tagProperties.gppMacrosIncluded")
25862+ private java.lang.Boolean tagPropertiesGppMacrosIncluded;
25863+
25864+ /** Optional. Indicates whether to include the GPP macro in the generated tags. [Learn
25865+ more](https://support.google.com/campaignmanager/answer/10031693) about this macro.
25866+ */
25867+ public java.lang.Boolean getTagPropertiesGppMacrosIncluded() {
25868+ return tagPropertiesGppMacrosIncluded;
25869+ }
25870+
25871+ /**
25872+ * Optional. Indicates whether to include the GPP macro in the generated tags. [Learn
25873+ * more](https://support.google.com/campaignmanager/answer/10031693) about this macro.
25874+ */
25875+ public Generatetags setTagPropertiesGppMacrosIncluded(java.lang.Boolean tagPropertiesGppMacrosIncluded) {
25876+ this.tagPropertiesGppMacrosIncluded = tagPropertiesGppMacrosIncluded;
25877+ return this;
25878+ }
25879+
25880+ /**
25881+ * Optional. Indicates whether to include the TCF macro in the generated tags. Default true.
25882+ * [Learn more](https://support.google.com/campaignmanager/answer/10031693) about this macro.
25883+ */
25884+ @com.google.api.client.util.Key("tagProperties.tcfGdprMacrosIncluded")
25885+ private java.lang.Boolean tagPropertiesTcfGdprMacrosIncluded;
25886+
25887+ /** Optional. Indicates whether to include the TCF macro in the generated tags. Default true. [Learn
25888+ more](https://support.google.com/campaignmanager/answer/10031693) about this macro. [default: true]
25889+ */
25890+ public java.lang.Boolean getTagPropertiesTcfGdprMacrosIncluded() {
25891+ return tagPropertiesTcfGdprMacrosIncluded;
25892+ }
25893+
25894+ /**
25895+ * Optional. Indicates whether to include the TCF macro in the generated tags. Default true.
25896+ * [Learn more](https://support.google.com/campaignmanager/answer/10031693) about this macro.
25897+ */
25898+ public Generatetags setTagPropertiesTcfGdprMacrosIncluded(java.lang.Boolean tagPropertiesTcfGdprMacrosIncluded) {
25899+ this.tagPropertiesTcfGdprMacrosIncluded = tagPropertiesTcfGdprMacrosIncluded;
25900+ return this;
25901+ }
25902+
25903+ /**
25904+ * Convenience method that returns only {@link Boolean#TRUE} or {@link Boolean#FALSE}.
25905+ *
25906+ * <p>
25907+ * Boolean properties can have four possible values:
25908+ * {@code null}, {@link com.google.api.client.util.Data#NULL_BOOLEAN}, {@link Boolean#TRUE}
25909+ * or {@link Boolean#FALSE}.
25910+ * </p>
25911+ *
25912+ * <p>
25913+ * This method returns {@link Boolean#TRUE} if the default of the property is {@link Boolean#TRUE}
25914+ * and it is {@code null} or {@link com.google.api.client.util.Data#NULL_BOOLEAN}.
25915+ * {@link Boolean#FALSE} is returned if the default of the property is {@link Boolean#FALSE} and
25916+ * it is {@code null} or {@link com.google.api.client.util.Data#NULL_BOOLEAN}.
25917+ * </p>
25918+ *
25919+ * <p>
25920+ * Optional. Indicates whether to include the TCF macro in the generated tags. Default true. [Learn
25921+ more](https://support.google.com/campaignmanager/answer/10031693) about this macro.
25922+ * </p>
25923+ */
25924+ public boolean isTagPropertiesTcfGdprMacrosIncluded() {
25925+ if (tagPropertiesTcfGdprMacrosIncluded == null || tagPropertiesTcfGdprMacrosIncluded == com.google.api.client.util.Data.NULL_BOOLEAN) {
25926+ return true;
25927+ }
25928+ return tagPropertiesTcfGdprMacrosIncluded;
25929+ }
25930+
2583425931 @Override
2583525932 public Generatetags set(String parameterName, Object value) {
2583625933 return (Generatetags) super.set(parameterName, value);
0 commit comments