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

com.github.DNAProject.dnaid.CredentialStatus Maven / Gradle / Ivy

The newest version!
package com.github.DNAProject.dnaid;


import com.alibaba.fastjson.annotation.JSONType;

@JSONType(orders = {"id", "type"})
public class CredentialStatus {

    public String id; // should be CredentialRecord contract address
    public CredentialStatusType type;

    public CredentialStatus() {
    }

    public CredentialStatus(String scriptHash, CredentialStatusType type) {
        this.id = scriptHash;
        this.type = type;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy