main.java.com.streamlayer.interactive.common.QuestionTimelineOrBuilder 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 QuestionTimelineOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.interactive.QuestionTimeline)
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();
/**
* string activated_at = 4 [json_name = "activatedAt"];
* @return The activatedAt.
*/
java.lang.String getActivatedAt();
/**
* string activated_at = 4 [json_name = "activatedAt"];
* @return The bytes for activatedAt.
*/
com.google.protobuf.ByteString
getActivatedAtBytes();
/**
* .streamlayer.interactive.QuestionStatus status = 5 [json_name = "status"];
* @return The enum numeric value on the wire for status.
*/
int getStatusValue();
/**
* .streamlayer.interactive.QuestionStatus status = 5 [json_name = "status"];
* @return The status.
*/
com.streamlayer.interactive.common.QuestionStatus getStatus();
/**
* .streamlayer.interactive.QuestionOptions options = 6 [json_name = "options"];
* @return Whether the options field is set.
*/
boolean hasOptions();
/**
* .streamlayer.interactive.QuestionOptions options = 6 [json_name = "options"];
* @return The options.
*/
com.streamlayer.interactive.common.QuestionOptions getOptions();
/**
* .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();
}