Commit 46a8a123 authored by Simon Pastor's avatar Simon Pastor
Browse files

remove file in js package

parent 132ab723
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
# AdvantEdgeGisEngineRestApi.DistanceParameters

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**assetName** | **String** | Asset name of a second element for query purpose. If present, latitude and longitude are ignored. | [optional] 
**latitude** | **Number** | Latitude of a second element for query purpose. Taken into account only if AssetName is not present. | [optional] 
**longitude** | **Number** | Longitude of a second element for query purpose. Taken into account only if AssetName is not present. | [optional] 

+0 −10
Original line number Diff line number Diff line
# AdvantEdgeGisEngineRestApi.DistanceResponse

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**distance** | **Number** | Distance between two points (in meters) | 
**latitude** | **Number** | Destination asset latitude | [optional] 
**longitude** | **Number** | Destination asset longitude | [optional] 

+0 −12
Original line number Diff line number Diff line
# AdvantEdgeGisEngineRestApi.WithinRangeParameters

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**assetName** | **String** | Asset name of a second element for query purpose. If present, latitude and longitude are ignored. | [optional] 
**latitude** | **Number** | Latitude of a second element for query purpose. Taken into account only if AssetName is not present. | [optional] 
**longitude** | **Number** | Longitude of a second element for query purpose. Taken into account only if AssetName is not present. | [optional] 
**radius** | **Number** | Radius (in meters) around the location. | 
**accuracy** | **Number** | Accuracy of the location (in meters). | [optional] 

+0 −10
Original line number Diff line number Diff line
# AdvantEdgeGisEngineRestApi.WithinRangeResponse

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**latitude** | **Number** | Destination asset latitude | [optional] 
**longitude** | **Number** | Destination asset longitude | [optional] 
**within** | **Boolean** | Within range result (e.g. true = within range, false = beyond range) | 

+0 −103
Original line number Diff line number Diff line
/*
 * Copyright (c) 2020  InterDigital Communications, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the \"License\");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an \"AS IS\" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * AdvantEDGE GIS Engine REST API
 * This API allows to control geo-spatial behavior and simulation. <p>**Micro-service**<br>[meep-gis-engine](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-gis-engine) <p>**Type & Usage**<br>Platform runtime interface to control geo-spatial behavior and simulation <p>**Details**<br>API details available at _your-AdvantEDGE-ip-address/api_
 *
 * OpenAPI spec version: 1.0.0
 * Contact: AdvantEDGE@InterDigital.com
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 *
 * Swagger Codegen version: 2.4.9
 *
 * Do not edit the class manually.
 *
 */

(function(root, factory) {
  if (typeof define === 'function' && define.amd) {
    // AMD. Register as an anonymous module.
    define(['ApiClient'], factory);
  } else if (typeof module === 'object' && module.exports) {
    // CommonJS-like environments that support module.exports, like Node.
    module.exports = factory(require('../ApiClient'));
  } else {
    // Browser globals (root is window)
    if (!root.AdvantEdgeGisEngineRestApi) {
      root.AdvantEdgeGisEngineRestApi = {};
    }
    root.AdvantEdgeGisEngineRestApi.DistanceParameters = factory(root.AdvantEdgeGisEngineRestApi.ApiClient);
  }
}(this, function(ApiClient) {
  'use strict';

  /**
   * The DistanceParameters model module.
   * @module model/DistanceParameters
   * @version 1.0.0
   */

  /**
   * Constructs a new <code>DistanceParameters</code>.
   * Parameters for distance query purpose.
   * @alias module:model/DistanceParameters
   * @class
   */
  var exports = function() {
  };

  /**
   * Constructs a <code>DistanceParameters</code> from a plain JavaScript object, optionally creating a new instance.
   * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
   * @param {Object} data The plain JavaScript object bearing properties of interest.
   * @param {module:model/DistanceParameters} obj Optional instance to populate.
   * @return {module:model/DistanceParameters} The populated <code>DistanceParameters</code> instance.
   */
  exports.constructFromObject = function(data, obj) {
    if (data) {
      obj = obj || new exports();
      if (data.hasOwnProperty('assetName'))
        obj.assetName = ApiClient.convertToType(data['assetName'], 'String');
      if (data.hasOwnProperty('latitude'))
        obj.latitude = ApiClient.convertToType(data['latitude'], 'Number');
      if (data.hasOwnProperty('longitude'))
        obj.longitude = ApiClient.convertToType(data['longitude'], 'Number');
    }
    return obj;
  }

  /**
   * Asset name of a second element for query purpose. If present, latitude and longitude are ignored.
   * @member {String} assetName
   */
  exports.prototype.assetName = undefined;

  /**
   * Latitude of a second element for query purpose. Taken into account only if AssetName is not present.
   * @member {Number} latitude
   */
  exports.prototype.latitude = undefined;

  /**
   * Longitude of a second element for query purpose. Taken into account only if AssetName is not present.
   * @member {Number} longitude
   */
  exports.prototype.longitude = undefined;

  return exports;

}));
Loading