main.java.com.streamlayer.interactive.feed.AnswerVoteResultOrBuilder 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/interactive/feed/interactive.feed.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.interactive.feed;
public interface AnswerVoteResultOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.interactive.feed.AnswerVoteResult)
com.google.protobuf.MessageLiteOrBuilder {
/**
* string answer_id = 1 [json_name = "answerId"];
* @return The answerId.
*/
java.lang.String getAnswerId();
/**
* string answer_id = 1 [json_name = "answerId"];
* @return The bytes for answerId.
*/
com.google.protobuf.ByteString
getAnswerIdBytes();
/**
* uint32 percentage = 2 [json_name = "percentage"];
* @return The percentage.
*/
int getPercentage();
/**
*
* mark answer voted by you
*
*
* bool voted = 3 [json_name = "voted"];
* @return The voted.
*/
boolean getVoted();
/**
*
* mark if the answer was correct
*
*
* bool correct = 4 [json_name = "correct"];
* @return The correct.
*/
boolean getCorrect();
}