io.mosip.certify.mosipid.integration.dto.IdaVcExchangeRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mosip-identity-certify-plugin Show documentation
Show all versions of mosip-identity-certify-plugin Show documentation
MOSIP-ID plugin implementation that is used for the integration with certify
The newest version!
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package io.mosip.certify.mosipid.integration.dto;
import lombok.Data;
import javax.validation.constraints.NotNull;
import java.util.List;
import java.util.Map;
@Data
public class IdaVcExchangeRequest {
@NotNull
private String vcAuthToken;
/** The Variable to hold value of Credential Subject Id */
@NotNull
private String credSubjectId;
/** The Variable to hold value of VC Format type */
@NotNull
private String vcFormat;
/** The Variable to hold value of list of user selected locales */
private List locales;
private Map metadata;
private String id;
private String version;
private String individualId;
private String transactionID;
private String requestTime;
private CredentialDefinitionDTO credentialsDefinition;
}