main.java.com.streamlayer.inplay.common.SelectionOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: streamlayer/inplay/common/inplay.common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.inplay.common;
public interface SelectionOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.inplay.common.Selection)
com.google.protobuf.MessageLiteOrBuilder {
/**
* string id = 1 [json_name = "id"];
* @return The id.
*/
java.lang.String getId();
/**
* string id = 1 [json_name = "id"];
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
/**
* string name = 2 [json_name = "name"];
* @return The name.
*/
java.lang.String getName();
/**
* string name = 2 [json_name = "name"];
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* int32 numerator = 4 [json_name = "numerator"];
* @return The numerator.
*/
int getNumerator();
/**
* int32 denominator = 5 [json_name = "denominator"];
* @return The denominator.
*/
int getDenominator();
/**
* double decimal = 6 [json_name = "decimal"];
* @return The decimal.
*/
double getDecimal();
/**
* double moneyline = 14 [json_name = "moneyline"];
* @return The moneyline.
*/
double getMoneyline();
/**
* double probability = 7 [json_name = "probability"];
* @return The probability.
*/
double getProbability();
/**
* string updated = 8 [json_name = "updated"];
* @return The updated.
*/
java.lang.String getUpdated();
/**
* string updated = 8 [json_name = "updated"];
* @return The bytes for updated.
*/
com.google.protobuf.ByteString
getUpdatedBytes();
/**
* .streamlayer.inplay.common.SelectionStatus trading_status = 9 [json_name = "tradingStatus"];
* @return The enum numeric value on the wire for tradingStatus.
*/
int getTradingStatusValue();
/**
* .streamlayer.inplay.common.SelectionStatus trading_status = 9 [json_name = "tradingStatus"];
* @return The tradingStatus.
*/
com.streamlayer.inplay.common.SelectionStatus getTradingStatus();
/**
* .streamlayer.inplay.common.SelectionOutcome outcome = 10 [json_name = "outcome"];
* @return Whether the outcome field is set.
*/
boolean hasOutcome();
/**
* .streamlayer.inplay.common.SelectionOutcome outcome = 10 [json_name = "outcome"];
* @return The outcome.
*/
com.streamlayer.inplay.common.SelectionOutcome getOutcome();
/**
* .streamlayer.inplay.common.SelectionRange range = 11 [json_name = "range"];
* @return Whether the range field is set.
*/
boolean hasRange();
/**
* .streamlayer.inplay.common.SelectionRange range = 11 [json_name = "range"];
* @return The range.
*/
com.streamlayer.inplay.common.SelectionRange getRange();
/**
* .streamlayer.inplay.common.SelectionResult result = 12 [json_name = "result"];
* @return Whether the result field is set.
*/
boolean hasResult();
/**
* .streamlayer.inplay.common.SelectionResult result = 12 [json_name = "result"];
* @return The result.
*/
com.streamlayer.inplay.common.SelectionResult getResult();
/**
* .streamlayer.inplay.common.SelectionResultStatus result_status = 13 [json_name = "resultStatus"];
* @return The enum numeric value on the wire for resultStatus.
*/
int getResultStatusValue();
/**
* .streamlayer.inplay.common.SelectionResultStatus result_status = 13 [json_name = "resultStatus"];
* @return The resultStatus.
*/
com.streamlayer.inplay.common.SelectionResultStatus getResultStatus();
}