main.java.com.streamlayer.sports.common.EventTeamOrBuilder 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/sports/sports_common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.sports.common;
public interface EventTeamOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.sports.EventTeam)
com.google.protobuf.MessageLiteOrBuilder {
/**
* uint64 id = 1 [json_name = "id"];
* @return The id.
*/
long getId();
/**
* 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();
/**
* string alias = 3 [json_name = "alias"];
* @return The alias.
*/
java.lang.String getAlias();
/**
* string alias = 3 [json_name = "alias"];
* @return The bytes for alias.
*/
com.google.protobuf.ByteString
getAliasBytes();
/**
* string logo = 4 [json_name = "logo"];
* @return The logo.
*/
java.lang.String getLogo();
/**
* string logo = 4 [json_name = "logo"];
* @return The bytes for logo.
*/
com.google.protobuf.ByteString
getLogoBytes();
/**
* repeated string colors = 5 [json_name = "colors"];
* @return A list containing the colors.
*/
java.util.List
getColorsList();
/**
* repeated string colors = 5 [json_name = "colors"];
* @return The count of colors.
*/
int getColorsCount();
/**
* repeated string colors = 5 [json_name = "colors"];
* @param index The index of the element to return.
* @return The colors at the given index.
*/
java.lang.String getColors(int index);
/**
* repeated string colors = 5 [json_name = "colors"];
* @param index The index of the element to return.
* @return The colors at the given index.
*/
com.google.protobuf.ByteString
getColorsBytes(int index);
/**
* bool is_winner = 6 [json_name = "isWinner"];
* @return The isWinner.
*/
boolean getIsWinner();
}