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

net.optionfactory.whatsapp.dto.messages.response.MessageResponse Maven / Gradle / Ivy

package net.optionfactory.whatsapp.dto.messages.response;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

/**
 * The type Message response.
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
public record MessageResponse(

        @JsonProperty("messaging_product") String messagingProduct,

        @JsonProperty("contacts") List contacts,

        @JsonProperty("messages") List messages) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy