main.java.com.streamlayer.interactive.common.ExtendedQuestionOrBuilder 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/interactive.common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.interactive.common;
public interface ExtendedQuestionOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.interactive.ExtendedQuestion)
com.google.protobuf.MessageLiteOrBuilder {
/**
* string id = 1 [json_name = "id"];
* @return The id.
*/
java.lang.String getId();
/**
* string id = 1 [json_name = "id"];
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
/**
* .streamlayer.interactive.QuestionType type = 2 [json_name = "type"];
* @return The enum numeric value on the wire for type.
*/
int getTypeValue();
/**
* .streamlayer.interactive.QuestionType type = 2 [json_name = "type"];
* @return The type.
*/
com.streamlayer.interactive.common.QuestionType getType();
/**
* string subject = 3 [json_name = "subject"];
* @return The subject.
*/
java.lang.String getSubject();
/**
* string subject = 3 [json_name = "subject"];
* @return The bytes for subject.
*/
com.google.protobuf.ByteString
getSubjectBytes();
/**
* .streamlayer.interactive.QuestionOptions options = 4 [json_name = "options"];
* @return Whether the options field is set.
*/
boolean hasOptions();
/**
* .streamlayer.interactive.QuestionOptions options = 4 [json_name = "options"];
* @return The options.
*/
com.streamlayer.interactive.common.QuestionOptions getOptions();
/**
* .streamlayer.interactive.QuestionAppearance appearance = 5 [json_name = "appearance"];
* @return Whether the appearance field is set.
*/
boolean hasAppearance();
/**
* .streamlayer.interactive.QuestionAppearance appearance = 5 [json_name = "appearance"];
* @return The appearance.
*/
com.streamlayer.interactive.common.QuestionAppearance getAppearance();
/**
* .streamlayer.interactive.Sponsorship sponsorship = 6 [json_name = "sponsorship"];
* @return Whether the sponsorship field is set.
*/
boolean hasSponsorship();
/**
* .streamlayer.interactive.Sponsorship sponsorship = 6 [json_name = "sponsorship"];
* @return The sponsorship.
*/
com.streamlayer.interactive.common.Sponsorship getSponsorship();
/**
* .streamlayer.interactive.QuestionNotification notification = 7 [json_name = "notification"];
* @return Whether the notification field is set.
*/
boolean hasNotification();
/**
* .streamlayer.interactive.QuestionNotification notification = 7 [json_name = "notification"];
* @return The notification.
*/
com.streamlayer.interactive.common.QuestionNotification getNotification();
/**
* repeated .streamlayer.interactive.ExtendedQuestionAnswer answers = 8 [json_name = "answers"];
*/
java.util.List
getAnswersList();
/**
* repeated .streamlayer.interactive.ExtendedQuestionAnswer answers = 8 [json_name = "answers"];
*/
com.streamlayer.interactive.common.ExtendedQuestionAnswer getAnswers(int index);
/**
* repeated .streamlayer.interactive.ExtendedQuestionAnswer answers = 8 [json_name = "answers"];
*/
int getAnswersCount();
/**
* .streamlayer.interactive.QuestionStatus status = 9 [json_name = "status"];
* @return The enum numeric value on the wire for status.
*/
int getStatusValue();
/**
* .streamlayer.interactive.QuestionStatus status = 9 [json_name = "status"];
* @return The status.
*/
com.streamlayer.interactive.common.QuestionStatus getStatus();
/**
* uint32 position = 10 [json_name = "position"];
* @return The position.
*/
int getPosition();
/**
* bool market_closed = 11 [json_name = "marketClosed"];
* @return The marketClosed.
*/
boolean getMarketClosed();
/**
* string activated_at = 12 [json_name = "activatedAt"];
* @return The activatedAt.
*/
java.lang.String getActivatedAt();
/**
* string activated_at = 12 [json_name = "activatedAt"];
* @return The bytes for activatedAt.
*/
com.google.protobuf.ByteString
getActivatedAtBytes();
/**
* string answer_set_at = 13 [json_name = "answerSetAt"];
* @return The answerSetAt.
*/
java.lang.String getAnswerSetAt();
/**
* string answer_set_at = 13 [json_name = "answerSetAt"];
* @return The bytes for answerSetAt.
*/
com.google.protobuf.ByteString
getAnswerSetAtBytes();
/**
* string event_id = 14 [json_name = "eventId"];
* @return The eventId.
*/
java.lang.String getEventId();
/**
* string event_id = 14 [json_name = "eventId"];
* @return The bytes for eventId.
*/
com.google.protobuf.ByteString
getEventIdBytes();
/**
* .streamlayer.interactive.BypassNotifications bypass_notifications = 15 [json_name = "bypassNotifications"];
* @return Whether the bypassNotifications field is set.
*/
boolean hasBypassNotifications();
/**
* .streamlayer.interactive.BypassNotifications bypass_notifications = 15 [json_name = "bypassNotifications"];
* @return The bypassNotifications.
*/
com.streamlayer.interactive.common.BypassNotifications getBypassNotifications();
}