aes70
Version:
A controller library for the AES70 protocol.
29 lines (27 loc) • 562 B
JavaScript
/*
* This file has been generated.
*/
export class OcaDatasetSearchResult {
/**
* Result of Dataset search via the **FindDatasets(...)** and
* **FindDatasetsRecursive(...)** methods of **OcaBlock**.
* @class OcaDatasetSearchResult
*/
constructor(Object, Name, Type) {
/**
* Member descriptor of Dataset Object
* @type OcaBlockMember
*/
this.Object = Object;
/**
* Dataset name
* @type string
*/
this.Name = Name;
/**
* Dataset type
* @type string
*/
this.Type = Type;
}
}