src/verifier/presentations/dto/auth-response.dto.ts
AuthResponse DTO
Properties |
state |
state:
|
Type : string
|
The state parameter to maintain state between the request and callback. |
vp_token |
vp_token:
|
Type : literal type
|
The VP token containing the presentation data. |
export interface AuthResponse {
/**
* The VP token containing the presentation data.
*/
vp_token: {
/**
* Key-value pairs representing the VP token data.
*/
[key: string]: string;
};
/**
* The state parameter to maintain state between the request and callback.
*/
state: string;
}