com.google.ads.googleads.v17.common.UserListDateRuleItemInfoOrBuilder 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/common/user_lists.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.common;
public interface UserListDateRuleItemInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.common.UserListDateRuleItemInfo)
com.google.protobuf.MessageOrBuilder {
/**
*
* Date comparison operator.
* This field is required and must be populated when creating new date
* rule item.
*
*
* .google.ads.googleads.v17.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator operator = 1;
* @return The enum numeric value on the wire for operator.
*/
int getOperatorValue();
/**
*
* Date comparison operator.
* This field is required and must be populated when creating new date
* rule item.
*
*
* .google.ads.googleads.v17.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator operator = 1;
* @return The operator.
*/
com.google.ads.googleads.v17.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator getOperator();
/**
*
* String representing date value to be compared with the rule variable.
* Supported date format is YYYY-MM-DD.
* Times are reported in the customer's time zone.
*
*
* optional string value = 4;
* @return Whether the value field is set.
*/
boolean hasValue();
/**
*
* String representing date value to be compared with the rule variable.
* Supported date format is YYYY-MM-DD.
* Times are reported in the customer's time zone.
*
*
* optional string value = 4;
* @return The value.
*/
java.lang.String getValue();
/**
*
* String representing date value to be compared with the rule variable.
* Supported date format is YYYY-MM-DD.
* Times are reported in the customer's time zone.
*
*
* optional string value = 4;
* @return The bytes for value.
*/
com.google.protobuf.ByteString
getValueBytes();
/**
*
* The relative date value of the right hand side denoted by number of days
* offset from now. The value field will override this field when both are
* present.
*
*
* optional int64 offset_in_days = 5;
* @return Whether the offsetInDays field is set.
*/
boolean hasOffsetInDays();
/**
*
* The relative date value of the right hand side denoted by number of days
* offset from now. The value field will override this field when both are
* present.
*
*
* optional int64 offset_in_days = 5;
* @return The offsetInDays.
*/
long getOffsetInDays();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy