Commit 132ab723 authored by Simon Pastor's avatar Simon Pastor
Browse files

removed old files

parent ddde2e09
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
# 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] [default to null]
**Latitude** | **float32** | Latitude of a second element for query purpose. Taken into account only if AssetName is not present. | [optional] [default to null]
**Longitude** | **float32** | Longitude of a second element for query purpose. Taken into account only if AssetName is not present. | [optional] [default to null]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

+0 −12
Original line number Diff line number Diff line
# DistanceResponse

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Distance** | **float32** | Distance between two points (in meters) | [default to null]
**Latitude** | **float32** | Destination asset latitude | [optional] [default to null]
**Longitude** | **float32** | Destination asset longitude | [optional] [default to null]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

+0 −14
Original line number Diff line number Diff line
# 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] [default to null]
**Latitude** | **float32** | Latitude of a second element for query purpose. Taken into account only if AssetName is not present. | [optional] [default to null]
**Longitude** | **float32** | Longitude of a second element for query purpose. Taken into account only if AssetName is not present. | [optional] [default to null]
**Radius** | **float32** | Radius (in meters) around the location. | [default to null]
**Accuracy** | **float32** | Accuracy of the location (in meters). | [optional] [default to null]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

+0 −12
Original line number Diff line number Diff line
# WithinRangeResponse

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Latitude** | **float32** | Destination asset latitude | [optional] [default to null]
**Longitude** | **float32** | Destination asset longitude | [optional] [default to null]
**Within** | **bool** | Within range result (e.g. true = within range, false = beyond range) | [default to null]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

+0 −35
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_
 *
 * API version: 1.0.0
 * Contact: AdvantEDGE@InterDigital.com
 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
 */

package client

// Parameters for distance query purpose.
type DistanceParameters struct {
	// Asset name of a second element for query purpose. If present, latitude and longitude are ignored.
	AssetName string `json:"assetName,omitempty"`
	// Latitude of a second element for query purpose. Taken into account only if AssetName is not present.
	Latitude float32 `json:"latitude,omitempty"`
	// Longitude of a second element for query purpose. Taken into account only if AssetName is not present.
	Longitude float32 `json:"longitude,omitempty"`
}
Loading