org.hyperledger.acy_py.generated.model.IndyRevRegDefValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aries-client-python Show documentation
Show all versions of aries-client-python Show documentation
Aries Cloud Agent - Python: Java client implementation
/*
* aca-py client
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v0.7.2
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.hyperledger.acy_py.generated.model;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
/**
* IndyRevRegDefValue
*/
@lombok.Data
@lombok.AllArgsConstructor
@lombok.NoArgsConstructor
@lombok.Builder
public class IndyRevRegDefValue {
/**
* Issuance type
*/
@JsonAdapter(IssuanceTypeEnum.Adapter.class)
public enum IssuanceTypeEnum {
ON_DEMAND("ISSUANCE_ON_DEMAND"),
BY_DEFAULT("ISSUANCE_BY_DEFAULT");
private String value;
IssuanceTypeEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static IssuanceTypeEnum fromValue(String value) {
for (IssuanceTypeEnum b : IssuanceTypeEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final IssuanceTypeEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public IssuanceTypeEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return IssuanceTypeEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_ISSUANCE_TYPE = "issuanceType";
@SerializedName(SERIALIZED_NAME_ISSUANCE_TYPE)
private IssuanceTypeEnum issuanceType;
public static final String SERIALIZED_NAME_MAX_CRED_NUM = "maxCredNum";
@SerializedName(SERIALIZED_NAME_MAX_CRED_NUM)
private Integer maxCredNum;
public static final String SERIALIZED_NAME_PUBLIC_KEYS = "publicKeys";
@SerializedName(SERIALIZED_NAME_PUBLIC_KEYS)
private IndyRevRegDefValuePublicKeys publicKeys;
public static final String SERIALIZED_NAME_TAILS_HASH = "tailsHash";
@SerializedName(SERIALIZED_NAME_TAILS_HASH)
private String tailsHash;
public static final String SERIALIZED_NAME_TAILS_LOCATION = "tailsLocation";
@SerializedName(SERIALIZED_NAME_TAILS_LOCATION)
private String tailsLocation;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy