main.java.com.streamlayer.sports.common.PlayerAttributesOrBuilder 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 PlayerAttributesOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.sports.PlayerAttributes)
com.google.protobuf.MessageLiteOrBuilder {
/**
* int32 display_id = 1 [json_name = "displayId"];
* @return The displayId.
*/
int getDisplayId();
/**
* string full_first = 3 [json_name = "fullFirst"];
* @return The fullFirst.
*/
java.lang.String getFullFirst();
/**
* string full_first = 3 [json_name = "fullFirst"];
* @return The bytes for fullFirst.
*/
com.google.protobuf.ByteString
getFullFirstBytes();
/**
* string full_last = 4 [json_name = "fullLast"];
* @return The fullLast.
*/
java.lang.String getFullLast();
/**
* string full_last = 4 [json_name = "fullLast"];
* @return The bytes for fullLast.
*/
com.google.protobuf.ByteString
getFullLastBytes();
/**
* string uniform = 5 [json_name = "uniform"];
* @return The uniform.
*/
java.lang.String getUniform();
/**
* string uniform = 5 [json_name = "uniform"];
* @return The bytes for uniform.
*/
com.google.protobuf.ByteString
getUniformBytes();
/**
* .streamlayer.sports.PlayerAttributes.Height height = 6 [json_name = "height"];
* @return Whether the height field is set.
*/
boolean hasHeight();
/**
* .streamlayer.sports.PlayerAttributes.Height height = 6 [json_name = "height"];
* @return The height.
*/
com.streamlayer.sports.common.PlayerAttributes.Height getHeight();
/**
* .streamlayer.sports.PlayerAttributes.Weight weight = 7 [json_name = "weight"];
* @return Whether the weight field is set.
*/
boolean hasWeight();
/**
* .streamlayer.sports.PlayerAttributes.Weight weight = 7 [json_name = "weight"];
* @return The weight.
*/
com.streamlayer.sports.common.PlayerAttributes.Weight getWeight();
/**
* .streamlayer.sports.PlayerAttributes.Birth birth = 8 [json_name = "birth"];
* @return Whether the birth field is set.
*/
boolean hasBirth();
/**
* .streamlayer.sports.PlayerAttributes.Birth birth = 8 [json_name = "birth"];
* @return The birth.
*/
com.streamlayer.sports.common.PlayerAttributes.Birth getBirth();
}