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

travel.wink.wise.partner.recipient.api.Name Maven / Gradle / Ivy

The newest version!
package travel.wink.wise.partner.recipient.api;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Value;

import java.beans.ConstructorProperties;

/**
 * The type Name.
 */
@Value
public class Name {

    String fullName;

    /**
     * Instantiates a new Name.
     *
     * @param fullName the full name
     */
    @JsonCreator(mode = JsonCreator.Mode.PROPERTIES)
    @ConstructorProperties({
            "fullName"
    })
    public Name(
            @JsonProperty("fullName") String fullName
    ) {
        this.fullName = fullName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy