main.java.com.streamlayer.interactive.question.DeleteRequestOrBuilder 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 DeleteRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.interactive.question.DeleteRequest)
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();
/**
* repeated string ids = 2 [json_name = "ids"];
* @return A list containing the ids.
*/
java.util.List
getIdsList();
/**
* repeated string ids = 2 [json_name = "ids"];
* @return The count of ids.
*/
int getIdsCount();
/**
* repeated string ids = 2 [json_name = "ids"];
* @param index The index of the element to return.
* @return The ids at the given index.
*/
java.lang.String getIds(int index);
/**
* repeated string ids = 2 [json_name = "ids"];
* @param index The index of the element to return.
* @return The ids at the given index.
*/
com.google.protobuf.ByteString
getIdsBytes(int index);
/**
* string organization_id = 3 [json_name = "organizationId"];
* @return The organizationId.
*/
java.lang.String getOrganizationId();
/**
* string organization_id = 3 [json_name = "organizationId"];
* @return The bytes for organizationId.
*/
com.google.protobuf.ByteString
getOrganizationIdBytes();
/**
* .streamlayer.interactive.ServerNotificationOptions server_notification = 4 [json_name = "serverNotification"];
* @return Whether the serverNotification field is set.
*/
boolean hasServerNotification();
/**
* .streamlayer.interactive.ServerNotificationOptions server_notification = 4 [json_name = "serverNotification"];
* @return The serverNotification.
*/
com.streamlayer.interactive.common.ServerNotificationOptions getServerNotification();
/**
*
* permanent: if supplied the question will be deleted permanently,
* e.g. it will not be available in a list of recently deleted items (see "show_deleted" in ListRequestFilter)
*
*
* bool permanent = 5 [json_name = "permanent"];
* @return The permanent.
*/
boolean getPermanent();
}