v7.0.0
Thu, 18 September, 2025Feature
- Added
TemplateNameandTemplateIdproperties to the Document Properties API, under theFilesproperty.
Breaking changes
- Changed the type of the
Filesproperty in the Template Properties API fromList<DocumentFiles>toList<TemplateFiles>.
Previous
var templateClient = new TemplateClient(apiClient);
var templateProperties = templateClient.GetProperties("templateId");
List<DocumentFiles> files = templateProperties.Files;
Now
var templateClient = new TemplateClient(apiClient);
var templateProperties = templateClient.GetProperties("templateId");
List<TemplateFiles> files = templateProperties.Files;