HieService.getGetMetadataSettings

Syntax

getGetMetadataSettings (hie);

Parameters

hie. Sets a hierarchy object.

Description

The getGetMetadataSettings method returns body of the request to get series hierarchy metadata.

Example

To execute the example, create a service for working with time series, named hieSrv (see HieService.getChildEls) and add the following code to the handler that processes document opening:

console.log("Get body of request to get series hierarchy metadata");
var bodyGetMdSettings = hieSrv.getGetMetadataSettings(hie);
console.log(bodyGetMdSettings);

After executing the example the browser console displays body of the request to get series hierarchy metadata:

Get body of the request to get series hierarchy metadata

Object {GetHieMd: Object}

See also:

HieService