org.hyperledger.aries.api.credentials.CredentialPreview Maven / Gradle / Ivy
/*
* 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.credentials;
import com.google.gson.annotations.SerializedName;
import lombok.*;
import java.util.List;
@Data @NoArgsConstructor @AllArgsConstructor
public class CredentialPreview {
@SerializedName("@type")
private String type;
private List attributes;
public CredentialPreview(List attributes) {
super();
this.attributes = attributes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy