getProperties method
Information noteSTABLE.
This API is reliable and breaking changes are unlikely.
This API is reliable and breaking changes are unlikely.
backendApi.getProperties()
Get properties for this object.
Version history
| Version state | Details |
|---|---|
| Introduced | 1.0 |
Parameters
None
Returns
A promise of object properties.
Tip noteFor more information regarding a promise, see The Promise API.
Example
var me = this;
this.backendApi.getProperties().then(function(reply){
reply.title = 'New title';
me.backendApi.setProperties(reply);
});