Method syntax
|
Description
|
VOID Export( )
|
Exports the entity data to a JSON file named for the sub-interface entity, for example, area.json or tenant.json for an IArea or ITenant object, respectively.1
|
VOID Export ( cFilename AS CHARACTER )
|
Export entity data to the file specified by cFilename2
|
VOID ExportTree ( cFilename AS CHARACTER )
|
Export entity data with all child collections to the file specified by cFilename.3
|
VOID ExportTree (
cFilename AS CHARACTER , pcCollections AS CHARACTER ) |
Export entity data with specified child collections to the file specified by cFilename.4
|
VOID Import ( cFilename AS CHARACTER )
|
Import entity data from the file specified by cFilename. (The file must exist.)5
|
VOID ImportTree ( cFilename AS CHARACTER )
|
Import entity data, including child collections, from file specified by cFilename. (The top-level entity must exist.)6
|