All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.optionfactory.whatsapp.dto.media.Media Maven / Gradle / Ivy

package net.optionfactory.whatsapp.dto.media;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * The type Media.
 */
public record Media(

        @JsonProperty("sha256") String sha256,

        @JsonProperty("mime_type") FileType mimeType,

        @JsonProperty("messaging_product") String messagingProduct,

        @JsonProperty("id") String id,

        @JsonProperty("url") String url,

        @JsonProperty("file_size") long fileSize) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy