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

net.optionfactory.whatsapp.dto.phone.PhoneNumbers Maven / Gradle / Ivy

package net.optionfactory.whatsapp.dto.phone;

import com.fasterxml.jackson.annotation.JsonProperty;
import net.optionfactory.whatsapp.dto.response.Paging;

import java.util.List;

/**
 * The Object with PhoneNumbers
 *
 * @param data   an objetc with a PhoneNumber list
 * @param paging paging
 */
public record PhoneNumbers(

        @JsonProperty("data") List data,

        @JsonProperty("paging") Paging paging) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy