main.java.com.streamlayer.interactive.feed.InstantViewOrBuilder 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 InstantViewOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.interactive.feed.InstantView)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
* question.subject
*
*
* optional string heading = 1 [json_name = "heading"];
* @return Whether the heading field is set.
*/
boolean hasHeading();
/**
*
* question.subject
*
*
* optional string heading = 1 [json_name = "heading"];
* @return The heading.
*/
java.lang.String getHeading();
/**
*
* question.subject
*
*
* optional string heading = 1 [json_name = "heading"];
* @return The bytes for heading.
*/
com.google.protobuf.ByteString
getHeadingBytes();
/**
*
* options.body
*
*
* optional string body = 2 [json_name = "body"];
* @return Whether the body field is set.
*/
boolean hasBody();
/**
*
* options.body
*
*
* optional string body = 2 [json_name = "body"];
* @return The body.
*/
java.lang.String getBody();
/**
*
* options.body
*
*
* optional string body = 2 [json_name = "body"];
* @return The bytes for body.
*/
com.google.protobuf.ByteString
getBodyBytes();
/**
* optional string image = 3 [json_name = "image"];
* @return Whether the image field is set.
*/
boolean hasImage();
/**
* optional string image = 3 [json_name = "image"];
* @return The image.
*/
java.lang.String getImage();
/**
* optional string image = 3 [json_name = "image"];
* @return The bytes for image.
*/
com.google.protobuf.ByteString
getImageBytes();
/**
* optional .streamlayer.interactive.FileLink video = 4 [json_name = "video"];
* @return Whether the video field is set.
*/
boolean hasVideo();
/**
* optional .streamlayer.interactive.FileLink video = 4 [json_name = "video"];
* @return The video.
*/
com.streamlayer.interactive.common.FileLink getVideo();
/**
* optional .streamlayer.interactive.WebLink web_link = 5 [json_name = "webLink"];
* @return Whether the webLink field is set.
*/
boolean hasWebLink();
/**
* optional .streamlayer.interactive.WebLink web_link = 5 [json_name = "webLink"];
* @return The webLink.
*/
com.streamlayer.interactive.common.WebLink getWebLink();
/**
* .streamlayer.interactive.QuestionImages image_mode = 6 [json_name = "imageMode"];
* @return The enum numeric value on the wire for imageMode.
*/
int getImageModeValue();
/**
* .streamlayer.interactive.QuestionImages image_mode = 6 [json_name = "imageMode"];
* @return The imageMode.
*/
com.streamlayer.interactive.common.QuestionImages getImageMode();
}