main.java.com.streamlayer.interactive.feed.FeedItemAttributesOrBuilder 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 FeedItemAttributesOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.interactive.feed.FeedItemAttributes)
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();
/**
* .streamlayer.interactive.QuestionStatus status = 3 [json_name = "status"];
* @return The enum numeric value on the wire for status.
*/
int getStatusValue();
/**
* .streamlayer.interactive.QuestionStatus status = 3 [json_name = "status"];
* @return The status.
*/
com.streamlayer.interactive.common.QuestionStatus getStatus();
/**
* string created = 8 [json_name = "created"];
* @return The created.
*/
java.lang.String getCreated();
/**
* string created = 8 [json_name = "created"];
* @return The bytes for created.
*/
com.google.protobuf.ByteString
getCreatedBytes();
/**
* .streamlayer.interactive.feed.PickHistory question = 4 [json_name = "question"];
* @return Whether the question field is set.
*/
boolean hasQuestion();
/**
* .streamlayer.interactive.feed.PickHistory question = 4 [json_name = "question"];
* @return The question.
*/
com.streamlayer.interactive.feed.PickHistory getQuestion();
/**
* .streamlayer.interactive.feed.TweetHistory tweet = 5 [json_name = "tweet"];
* @return Whether the tweet field is set.
*/
boolean hasTweet();
/**
* .streamlayer.interactive.feed.TweetHistory tweet = 5 [json_name = "tweet"];
* @return The tweet.
*/
com.streamlayer.interactive.feed.TweetHistory getTweet();
/**
* .streamlayer.interactive.feed.InsightHistory insight = 6 [json_name = "insight"];
* @return Whether the insight field is set.
*/
boolean hasInsight();
/**
* .streamlayer.interactive.feed.InsightHistory insight = 6 [json_name = "insight"];
* @return The insight.
*/
com.streamlayer.interactive.feed.InsightHistory getInsight();
/**
* .streamlayer.interactive.feed.PromotionHistory promotion = 7 [json_name = "promotion"];
* @return Whether the promotion field is set.
*/
boolean hasPromotion();
/**
* .streamlayer.interactive.feed.PromotionHistory promotion = 7 [json_name = "promotion"];
* @return The promotion.
*/
com.streamlayer.interactive.feed.PromotionHistory getPromotion();
public com.streamlayer.interactive.feed.FeedItemAttributes.AttributesCase getAttributesCase();
}