travel.wink.wise.partner.transfer.api.Field 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.transfer.api;
import com.fasterxml.jackson.annotation.JsonCreator;
import lombok.Value;
import java.beans.ConstructorProperties;
import java.util.List;
/**
* The type Field.
*/
@Value
public class Field {
String name;
List group;
/**
* Instantiates a new Field.
*
* @param name the name
* @param group the group
*/
@JsonCreator(mode = JsonCreator.Mode.PROPERTIES)
@ConstructorProperties({
"name",
"group",
})
public Field(String name, List group) {
this.name = name;
this.group = group;
}
}