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

io.flipt.client.models.EvaluationRequest Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package io.flipt.client.models;

import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.Map;

@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class EvaluationRequest {
  private final String flagKey;

  private final String entityId;

  private final Map context;

  public EvaluationRequest(String flagKey, String entityId, Map context) {
    this.flagKey = flagKey;
    this.entityId = entityId;
    this.context = context;
  }

  public String getFlagKey() {
    return flagKey;
  }

  public String getEntityId() {
    return entityId;
  }

  public Map getContext() {
    return context;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy