/**
* Result of signing request.
*/
export interfaceISigningResult {
/** Id of the Verification method. */
verificationMethod: string;
/** The value of th signature. */
signatureValue: string;
/** When the signature was created. */
created: string;
}