org.hyperledger.aries.api.revocation.RevocationEvent 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
/*
* Copyright (c) 2020-2021 - for information on the respective copyright owner
* see the NOTICE file and/or the repository at
* https://github.com/hyperledger-labs/acapy-java-client
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.aries.api.revocation;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* Webhook event: issuer_cred_rev
*/
@Data @NoArgsConstructor @AllArgsConstructor
public class RevocationEvent {
private String state;
private String createdAt;
private String revRegId;
private String recordId;
private String credDefId;
private String credExId;
private String uploadedAt;
private String credRevId;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy