travel.wink.wise.partner.recipient.api.Name Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wise-java-sdk Show documentation
Show all versions of wise-java-sdk Show documentation
Spring Boot implementation to TransferWise
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;
}
}