main.java.com.streamlayer.sportsdata.common.LeagueOrBuilder 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/sportsdata/sportsdata_common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.sportsdata.common;
public interface LeagueOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.sportsdata.League)
com.google.protobuf.MessageLiteOrBuilder {
/**
* int32 id = 1 [json_name = "id"];
* @return The id.
*/
int 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 logo = 3 [json_name = "logo"];
* @return The logo.
*/
java.lang.String getLogo();
/**
* string logo = 3 [json_name = "logo"];
* @return The bytes for logo.
*/
com.google.protobuf.ByteString
getLogoBytes();
/**
* string sport = 4 [json_name = "sport"];
* @return The sport.
*/
java.lang.String getSport();
/**
* string sport = 4 [json_name = "sport"];
* @return The bytes for sport.
*/
com.google.protobuf.ByteString
getSportBytes();
/**
* .streamlayer.sportsdata.SportType sport_type = 5 [json_name = "sportType"];
* @return The enum numeric value on the wire for sportType.
*/
int getSportTypeValue();
/**
* .streamlayer.sportsdata.SportType sport_type = 5 [json_name = "sportType"];
* @return The sportType.
*/
com.streamlayer.sportsdata.common.SportType getSportType();
}