package org.keycloak.models.credential.dto; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; public class OTPSecretData { private final String value; @JsonCreator public OTPSecretData(@JsonProperty("value") String value) { this.value = value; } public String getValue() { return value; } }