in resource-types/typescript-example-website-monitor/src/models.ts [119:126]
public getAdditionalIdentifiers(): Array<Dict> {
const identifiers: Array<Dict> = new Array<Dict>();
if (this.getIdentifier_Name() != null) {
identifiers.push(this.getIdentifier_Name());
}
// only return the identifiers if any can be used
return identifiers.length === 0 ? null : identifiers;
}