com.google.ads.googleads.v17.common.ValueOrBuilder 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/value.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.common;
public interface ValueOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.common.Value)
com.google.protobuf.MessageOrBuilder {
/**
*
* A boolean.
*
*
* bool boolean_value = 1;
* @return Whether the booleanValue field is set.
*/
boolean hasBooleanValue();
/**
*
* A boolean.
*
*
* bool boolean_value = 1;
* @return The booleanValue.
*/
boolean getBooleanValue();
/**
*
* An int64.
*
*
* int64 int64_value = 2;
* @return Whether the int64Value field is set.
*/
boolean hasInt64Value();
/**
*
* An int64.
*
*
* int64 int64_value = 2;
* @return The int64Value.
*/
long getInt64Value();
/**
*
* A float.
*
*
* float float_value = 3;
* @return Whether the floatValue field is set.
*/
boolean hasFloatValue();
/**
*
* A float.
*
*
* float float_value = 3;
* @return The floatValue.
*/
float getFloatValue();
/**
*
* A double.
*
*
* double double_value = 4;
* @return Whether the doubleValue field is set.
*/
boolean hasDoubleValue();
/**
*
* A double.
*
*
* double double_value = 4;
* @return The doubleValue.
*/
double getDoubleValue();
/**
*
* A string.
*
*
* string string_value = 5;
* @return Whether the stringValue field is set.
*/
boolean hasStringValue();
/**
*
* A string.
*
*
* string string_value = 5;
* @return The stringValue.
*/
java.lang.String getStringValue();
/**
*
* A string.
*
*
* string string_value = 5;
* @return The bytes for stringValue.
*/
com.google.protobuf.ByteString
getStringValueBytes();
com.google.ads.googleads.v17.common.Value.ValueCase getValueCase();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy