main.java.com.streamlayer.inplay.games.ListRequestOrBuilder 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/games/inplay.games.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.inplay.games;
public interface ListRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.inplay.games.ListRequest)
com.google.protobuf.MessageLiteOrBuilder {
/**
* .streamlayer.inplay.games.ListRequest.Filter filter = 1 [json_name = "filter"];
* @return Whether the filter field is set.
*/
boolean hasFilter();
/**
* .streamlayer.inplay.games.ListRequest.Filter filter = 1 [json_name = "filter"];
* @return The filter.
*/
com.streamlayer.inplay.games.ListRequest.Filter getFilter();
/**
*
* Page number, 0 by default
*
*
* int32 page = 2 [json_name = "page"];
* @return The page.
*/
int getPage();
/**
*
* Amount of items per page, 25 by default
*
*
* int32 page_size = 3 [json_name = "pageSize"];
* @return The pageSize.
*/
int getPageSize();
/**
*
* could be asc or desc
*
*
* string order = 5 [json_name = "order"];
* @return The order.
*/
java.lang.String getOrder();
/**
*
* could be asc or desc
*
*
* string order = 5 [json_name = "order"];
* @return The bytes for order.
*/
com.google.protobuf.ByteString
getOrderBytes();
/**
*
* could be any game field, default is 'id'
*
*
* string criteria = 6 [json_name = "criteria"];
* @return The criteria.
*/
java.lang.String getCriteria();
/**
*
* could be any game field, default is 'id'
*
*
* string criteria = 6 [json_name = "criteria"];
* @return The bytes for criteria.
*/
com.google.protobuf.ByteString
getCriteriaBytes();
/**
*
* show only games, do not enclose markets
*
*
* bool omit_markets = 7 [json_name = "omitMarkets"];
* @return The omitMarkets.
*/
boolean getOmitMarkets();
}