it.auties.whatsapp.model.media.MediaDimensions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whatsappweb4j Show documentation
Show all versions of whatsappweb4j Show documentation
Standalone fully-featured Whatsapp Web API for Java and Kotlin
The newest version!
package it.auties.whatsapp.model.media;
import com.fasterxml.jackson.annotation.JsonProperty;
public record MediaDimensions(@JsonProperty("width") int width, @JsonProperty("height") int height) {
public static final MediaDimensions DEFAULT = new MediaDimensions(128, 128);
}