@sphereon/pex-models
Version:
Presentation Exchange v1 and v2 typescript models
13 lines (12 loc) • 331 B
TypeScript
import { Format } from './format';
import { Issuance } from './issuance';
import { ConstraintsV2 } from './constraintsV2';
export interface InputDescriptorV2 {
id: string;
name?: string;
purpose?: string;
format?: Format;
group?: Array<string>;
issuance?: Array<Issuance>;
constraints: ConstraintsV2;
}