main.java.com.streamlayer.social.TweetMediaSizeOrBuilder 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 TweetMediaSizeOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.social.TweetMediaSize)
com.google.protobuf.MessageLiteOrBuilder {
/**
* int32 w = 1 [json_name = "w"];
* @return The w.
*/
int getW();
/**
* int32 h = 2 [json_name = "h"];
* @return The h.
*/
int getH();
/**
*
* Resizing method used to obtain this size.
* A value of fit means that the media was resized to fit one dimension, keeping its native aspect ratio.
* A value of crop means that the media was cropped in order to fit a specific resolution.
*
*
* string resize = 3 [json_name = "resize"];
* @return The resize.
*/
java.lang.String getResize();
/**
*
* Resizing method used to obtain this size.
* A value of fit means that the media was resized to fit one dimension, keeping its native aspect ratio.
* A value of crop means that the media was cropped in order to fit a specific resolution.
*
*
* string resize = 3 [json_name = "resize"];
* @return The bytes for resize.
*/
com.google.protobuf.ByteString
getResizeBytes();
}