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

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

package net.optionfactory.whatsapp.dto.webhook;

import com.fasterxml.jackson.annotation.JsonProperty;

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

        @JsonProperty("zip") String zip,

        @JsonProperty("country") String country,

        @JsonProperty("country_code") String countryCode,

        @JsonProperty("city") String city,

        @JsonProperty("street") String street,

        @JsonProperty("state") String state,

        @JsonProperty("type") String type) {


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy