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

travel.wink.wise.partner.transfer.api.Field Maven / Gradle / Ivy

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy