com.devcycle.sdk.server.local.protobuf.SDKVariable_PBOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-server-sdk Show documentation
Show all versions of java-server-sdk Show documentation
Server side SDK to interact with DevCycle.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: variableForUserParams.proto
package com.devcycle.sdk.server.local.protobuf;
public interface SDKVariable_PBOrBuilder extends
// @@protoc_insertion_point(interface_extends:SDKVariable_PB)
com.google.protobuf.MessageOrBuilder {
/**
* string _id = 1;
* @return The id.
*/
java.lang.String getId();
/**
* string _id = 1;
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
/**
* .VariableType_PB type = 2;
* @return The enum numeric value on the wire for type.
*/
int getTypeValue();
/**
* .VariableType_PB type = 2;
* @return The type.
*/
com.devcycle.sdk.server.local.protobuf.VariableType_PB getType();
/**
* string key = 3;
* @return The key.
*/
java.lang.String getKey();
/**
* string key = 3;
* @return The bytes for key.
*/
com.google.protobuf.ByteString
getKeyBytes();
/**
* bool boolValue = 4;
* @return The boolValue.
*/
boolean getBoolValue();
/**
* double doubleValue = 5;
* @return The doubleValue.
*/
double getDoubleValue();
/**
* string stringValue = 6;
* @return The stringValue.
*/
java.lang.String getStringValue();
/**
* string stringValue = 6;
* @return The bytes for stringValue.
*/
com.google.protobuf.ByteString
getStringValueBytes();
/**
* .NullableString evalReason = 7;
* @return Whether the evalReason field is set.
*/
boolean hasEvalReason();
/**
* .NullableString evalReason = 7;
* @return The evalReason.
*/
com.devcycle.sdk.server.local.protobuf.NullableString getEvalReason();
/**
* .NullableString evalReason = 7;
*/
com.devcycle.sdk.server.local.protobuf.NullableStringOrBuilder getEvalReasonOrBuilder();
}