36 lines
972 B
Text
36 lines
972 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into webref
|
|
// (https://github.com/w3c/webref)
|
|
// Source: Digital Credentials (https://w3c-fedid.github.io/digital-credentials/)
|
|
|
|
partial dictionary CredentialRequestOptions {
|
|
DigitalCredentialRequestOptions digital;
|
|
};
|
|
|
|
dictionary DigitalCredentialRequestOptions {
|
|
sequence<DigitalCredentialGetRequest> requests;
|
|
};
|
|
|
|
dictionary DigitalCredentialGetRequest {
|
|
required DOMString protocol;
|
|
required object data;
|
|
};
|
|
|
|
partial dictionary CredentialCreationOptions {
|
|
DigitalCredentialCreationOptions digital;
|
|
};
|
|
|
|
dictionary DigitalCredentialCreationOptions {
|
|
sequence<DigitalCredentialCreateRequest> requests;
|
|
};
|
|
|
|
dictionary DigitalCredentialCreateRequest {
|
|
required DOMString protocol;
|
|
required object data;
|
|
};
|
|
|
|
[Exposed=Window, SecureContext]
|
|
interface DigitalCredential : Credential {
|
|
readonly attribute DOMString protocol;
|
|
[SameObject] readonly attribute object data;
|
|
};
|