main.java.com.streamlayer.sdkSettings.game.common.GameTitleCardOrBuilder 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/sdkSettings/game/common/game_common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.sdkSettings.game.common;
public interface GameTitleCardOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.sdkSettings.game.common.GameTitleCard)
com.google.protobuf.MessageLiteOrBuilder {
/**
* bool visible = 1 [json_name = "visible"];
* @return The visible.
*/
boolean getVisible();
/**
*
* if opt_in is true and onboarding enabled, the user must complete onboarding to play the game (poll, trivia, prediction)
*
*
* bool opt_in = 2 [json_name = "optIn"];
* @return The optIn.
*/
boolean getOptIn();
/**
* string title = 3 [json_name = "title"];
* @return The title.
*/
java.lang.String getTitle();
/**
* string title = 3 [json_name = "title"];
* @return The bytes for title.
*/
com.google.protobuf.ByteString
getTitleBytes();
/**
* string subtitle = 4 [json_name = "subtitle"];
* @return The subtitle.
*/
java.lang.String getSubtitle();
/**
* string subtitle = 4 [json_name = "subtitle"];
* @return The bytes for subtitle.
*/
com.google.protobuf.ByteString
getSubtitleBytes();
/**
*
* if no sponsor
*
*
* string header = 5 [json_name = "header"];
* @return The header.
*/
java.lang.String getHeader();
/**
*
* if no sponsor
*
*
* string header = 5 [json_name = "header"];
* @return The bytes for header.
*/
com.google.protobuf.ByteString
getHeaderBytes();
/**
* .streamlayer.sdkSettings.game.common.TitleCardMedia media = 6 [json_name = "media"];
* @return Whether the media field is set.
*/
boolean hasMedia();
/**
* .streamlayer.sdkSettings.game.common.TitleCardMedia media = 6 [json_name = "media"];
* @return The media.
*/
com.streamlayer.sdkSettings.game.common.TitleCardMedia getMedia();
/**
* .streamlayer.sdkSettings.game.common.TitleCardAppearance appearance = 7 [json_name = "appearance"];
* @return Whether the appearance field is set.
*/
boolean hasAppearance();
/**
* .streamlayer.sdkSettings.game.common.TitleCardAppearance appearance = 7 [json_name = "appearance"];
* @return The appearance.
*/
com.streamlayer.sdkSettings.game.common.TitleCardAppearance getAppearance();
/**
* bool completed = 8 [json_name = "completed"];
* @return The completed.
*/
boolean getCompleted();
}