origin property
Origin
get
origin
The origin of this data source.
Returns
- Origin: The origin enum describing where the data comes from.
See also:
- dataSourceType - The type of this data source.
Implementation
Origin get origin {
final OperationResult resultString = objectMethod(
pointerId,
'DataSourceContainer',
'getOrigin',
);
return OriginExtension.fromId(resultString['result']);
}