main.java.com.streamlayer.sports.common.TeamOrBuilder 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 TeamOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.sports.Team)
com.google.protobuf.MessageLiteOrBuilder {
/**
* uint64 id = 1 [json_name = "id"];
* @return The id.
*/
long getId();
/**
* string custom_fields = 2 [json_name = "customFields"];
* @return The customFields.
*/
java.lang.String getCustomFields();
/**
* string custom_fields = 2 [json_name = "customFields"];
* @return The bytes for customFields.
*/
com.google.protobuf.ByteString
getCustomFieldsBytes();
/**
* string name = 3 [json_name = "name"];
* @return The name.
*/
java.lang.String getName();
/**
* string name = 3 [json_name = "name"];
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* string alias = 4 [json_name = "alias"];
* @return The alias.
*/
java.lang.String getAlias();
/**
* string alias = 4 [json_name = "alias"];
* @return The bytes for alias.
*/
com.google.protobuf.ByteString
getAliasBytes();
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
* @return Whether the venue field is set.
*/
boolean hasVenue();
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
* @return The venue.
*/
com.streamlayer.sports.common.Venue getVenue();
}