io.quarkiverse.openfga.client.model.dto.WriteResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-openfga-client-model Show documentation
Show all versions of quarkus-openfga-client-model Show documentation
OpenFGA Client API model classes
The newest version!
package io.quarkiverse.openfga.client.model.dto;
import static com.fasterxml.jackson.annotation.JsonCreator.Mode.DELEGATING;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
public final class WriteResponse {
@JsonValue
private final Map values;
@JsonCreator(mode = DELEGATING)
public WriteResponse(Map values) {
this.values = values;
}
@JsonValue
public Map getValues() {
return values;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy