nsICredentialMetaInfo
This is described in XPIDL that is an Interface Description Language used to specify XPCOM interface classes.
/**
* An object containing metainfo for a credential stored by the ssi.
*
* Code using ssi can generally ignore this interface. When adding
* credentials, default value will be created. When modifying credentials, these
* properties will be unchanged unless a change is explicitly requested [by
* using modifyCredential() with a nsIPropertyBag]. When deleting a credential or
* comparing credentials, these properties are ignored.
*/
interface nsICredentialMetaInfo : nsISupports {
/**
* The GUID to uniquely identify the credential. This can be any arbitrary
* string, but a format as created by nsIUUIDGenerator is recommended.
* For example, "{d4e1a1f6-5ea0-40ee-bff5-da57982f21cf}"
*
* addCredential will generate a random value unless a value is provided.
*
* addCredential and modifyCredential will throw if the GUID already exists.
*/
attribute AString guid;
/**
* The time, in Unix Epoch milliseconds, when the credential was first created.
*/
attribute unsigned long long timeCreated;
/**
* The time, in Unix Epoch milliseconds, when the credential was last submitted.
*/
attribute unsigned long long timeLastUsed;
/**
* The time, in Unix Epoch milliseconds, when the secret was last modified.
*/
attribute unsigned long long timeSecretChanged;
/**
* The number of times the credential was submitted.
*/
attribute unsigned long timesUsed;
};
This documentation is derived from nsICredentialMetaInfo.idl in gecko-dev-for-ssi.