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

net.optionfactory.whatsapp.dto.webhook.Order Maven / Gradle / Ivy

package net.optionfactory.whatsapp.dto.webhook;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

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

        @JsonProperty("catalog_id") String catalogId,

        @JsonProperty("product_items") List productItems,

        @JsonProperty("text") String text) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy