net.optionfactory.whatsapp.dto.webhook.Video Maven / Gradle / Ivy
package net.optionfactory.whatsapp.dto.webhook;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The type Video.
*
* @param sha256 The checksum of the media.
* @param mimeType The mime type of the media. The caption that describes the media.
* @param caption Added to Webhooks if it has been previously specified. The caption that describes the media.
* @param id The ID of the medi
*/
public record Video(
@JsonProperty("mime_type") String mimeType,
@JsonProperty("sha256") String sha256,
@JsonProperty("caption") String caption,
@JsonProperty("id") String id
) {
}