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

io.split.client.dtos.UniqueKeys Maven / Gradle / Ivy

package io.split.client.dtos;

import com.google.gson.annotations.SerializedName;

import java.util.List;

public class UniqueKeys {

    static final String KEYS = "keys";

    @SerializedName(KEYS)
    public List uniqueKeys;

    public UniqueKeys(List uniqueKeys) {
        this.uniqueKeys = uniqueKeys;
    }

    public static class UniqueKey {
        static final String FEATURE = "f";

        static final String FEATURE_KEYS = "ks";

        @SerializedName(FEATURE)
        public String featureName;

        @SerializedName(FEATURE_KEYS)
        public List keysDto;

        public UniqueKey(String featureName, List keysDto) {
            this.featureName = featureName;
            this.keysDto = keysDto;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy