main.java.com.streamlayer.social.TweetMediaSizesOrBuilder 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/social/twitter.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.social;
public interface TweetMediaSizesOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.social.TweetMediaSizes)
com.google.protobuf.MessageLiteOrBuilder {
/**
* .streamlayer.social.TweetMediaSize thumb = 1 [json_name = "thumb"];
* @return Whether the thumb field is set.
*/
boolean hasThumb();
/**
* .streamlayer.social.TweetMediaSize thumb = 1 [json_name = "thumb"];
* @return The thumb.
*/
com.streamlayer.social.TweetMediaSize getThumb();
/**
* .streamlayer.social.TweetMediaSize large = 2 [json_name = "large"];
* @return Whether the large field is set.
*/
boolean hasLarge();
/**
* .streamlayer.social.TweetMediaSize large = 2 [json_name = "large"];
* @return The large.
*/
com.streamlayer.social.TweetMediaSize getLarge();
/**
* .streamlayer.social.TweetMediaSize medium = 3 [json_name = "medium"];
* @return Whether the medium field is set.
*/
boolean hasMedium();
/**
* .streamlayer.social.TweetMediaSize medium = 3 [json_name = "medium"];
* @return The medium.
*/
com.streamlayer.social.TweetMediaSize getMedium();
/**
* .streamlayer.social.TweetMediaSize small = 4 [json_name = "small"];
* @return Whether the small field is set.
*/
boolean hasSmall();
/**
* .streamlayer.social.TweetMediaSize small = 4 [json_name = "small"];
* @return The small.
*/
com.streamlayer.social.TweetMediaSize getSmall();
}