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

it.auties.whatsapp.model.request.RecommendedNewslettersRequest Maven / Gradle / Ivy

package it.auties.whatsapp.model.request;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public record RecommendedNewslettersRequest(Variable variables) {
    public record Variable(Input input) {

    }

    public record Input(String view, Filters filters, int limit) {

    }

    public record Filters(@JsonProperty("country_codes") List countyCodes) {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy