main.java.com.streamlayer.interactive.question.CreateRequestOrBuilder 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/question/interactive.questions.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.interactive.question;
public interface CreateRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.interactive.question.CreateRequest)
com.google.protobuf.MessageLiteOrBuilder {
/**
* string moderation_id = 1 [json_name = "moderationId"];
* @return The moderationId.
*/
java.lang.String getModerationId();
/**
* string moderation_id = 1 [json_name = "moderationId"];
* @return The bytes for moderationId.
*/
com.google.protobuf.ByteString
getModerationIdBytes();
/**
* .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();
/**
* .streamlayer.interactive.Question question = 3 [json_name = "question"];
* @return Whether the question field is set.
*/
boolean hasQuestion();
/**
* .streamlayer.interactive.Question question = 3 [json_name = "question"];
* @return The question.
*/
com.streamlayer.interactive.common.Question getQuestion();
/**
* string organization_id = 4 [json_name = "organizationId"];
* @return The organizationId.
*/
java.lang.String getOrganizationId();
/**
* string organization_id = 4 [json_name = "organizationId"];
* @return The bytes for organizationId.
*/
com.google.protobuf.ByteString
getOrganizationIdBytes();
/**
* .streamlayer.interactive.ServerNotificationOptions server_notification = 5 [json_name = "serverNotification"];
* @return Whether the serverNotification field is set.
*/
boolean hasServerNotification();
/**
* .streamlayer.interactive.ServerNotificationOptions server_notification = 5 [json_name = "serverNotification"];
* @return The serverNotification.
*/
com.streamlayer.interactive.common.ServerNotificationOptions getServerNotification();
/**
* .streamlayer.interactive.BypassNotifications bypass_notifications = 6 [json_name = "bypassNotifications"];
* @return Whether the bypassNotifications field is set.
*/
boolean hasBypassNotifications();
/**
* .streamlayer.interactive.BypassNotifications bypass_notifications = 6 [json_name = "bypassNotifications"];
* @return The bypassNotifications.
*/
com.streamlayer.interactive.common.BypassNotifications getBypassNotifications();
}