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

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

package net.optionfactory.whatsapp.dto.webhook;

import com.fasterxml.jackson.annotation.JsonProperty;

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

        @JsonProperty("prefix") String prefix,

        @JsonProperty("last_name") String lastName,

        @JsonProperty("middle_name") String middleName,

        @JsonProperty("suffix") String suffix,

        @JsonProperty("first_name") String firstName,

        @JsonProperty("formatted_name") String formattedName

) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy