Overview
Gets the globally unique identifier of document.string myDocument.Id { get; }
Example
var doc = $Documents.New('My Document'); doc.Files.AddPDF('<p>Hello</p>', 'report.pdf'); doc.Publish(["myfolder", "otherfolder"]); var id = doc.Id;
string myDocument.Id { get; }
var doc = $Documents.New('My Document'); doc.Files.AddPDF('<p>Hello</p>', 'report.pdf'); doc.Publish(["myfolder", "otherfolder"]); var id = doc.Id;