main.java.com.streamlayer.interactive.feed.PickHistoryOrBuilder 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 PickHistoryOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.interactive.feed.PickHistory)
com.google.protobuf.MessageLiteOrBuilder {
/**
* string question_id = 1 [json_name = "questionId"];
* @return The questionId.
*/
java.lang.String getQuestionId();
/**
* string question_id = 1 [json_name = "questionId"];
* @return The bytes for questionId.
*/
com.google.protobuf.ByteString
getQuestionIdBytes();
/**
* string answer_id = 2 [json_name = "answerId"];
* @return The answerId.
*/
java.lang.String getAnswerId();
/**
* string answer_id = 2 [json_name = "answerId"];
* @return The bytes for answerId.
*/
com.google.protobuf.ByteString
getAnswerIdBytes();
/**
* .streamlayer.interactive.feed.PickHistoryStatus status = 3 [json_name = "status"];
* @return The enum numeric value on the wire for status.
*/
int getStatusValue();
/**
* .streamlayer.interactive.feed.PickHistoryStatus status = 3 [json_name = "status"];
* @return The status.
*/
com.streamlayer.interactive.feed.PickHistoryStatus getStatus();
/**
* .streamlayer.interactive.QuestionType question_type = 4 [json_name = "questionType"];
* @return The enum numeric value on the wire for questionType.
*/
int getQuestionTypeValue();
/**
* .streamlayer.interactive.QuestionType question_type = 4 [json_name = "questionType"];
* @return The questionType.
*/
com.streamlayer.interactive.common.QuestionType getQuestionType();
/**
*
* question text
*
*
* string subject = 5 [json_name = "subject"];
* @return The subject.
*/
java.lang.String getSubject();
/**
*
* question text
*
*
* string subject = 5 [json_name = "subject"];
* @return The bytes for subject.
*/
com.google.protobuf.ByteString
getSubjectBytes();
/**
*
* answer text
*
*
* string text = 6 [json_name = "text"];
* @return The text.
*/
java.lang.String getText();
/**
*
* answer text
*
*
* string text = 6 [json_name = "text"];
* @return The bytes for text.
*/
com.google.protobuf.ByteString
getTextBytes();
/**
* bool open_for_voting = 7 [json_name = "openForVoting"];
* @return The openForVoting.
*/
boolean getOpenForVoting();
/**
* .streamlayer.interactive.QuestionStatus question_status = 8 [json_name = "questionStatus"];
* @return The enum numeric value on the wire for questionStatus.
*/
int getQuestionStatusValue();
/**
* .streamlayer.interactive.QuestionStatus question_status = 8 [json_name = "questionStatus"];
* @return The questionStatus.
*/
com.streamlayer.interactive.common.QuestionStatus getQuestionStatus();
}