Commit 076bdea8 authored by M. Rehan Abbasi's avatar M. Rehan Abbasi
Browse files

generate new models for meep-vis for clarity

parent 4a86a3a9
Loading
Loading
Loading
Loading
+483 −469

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -24,6 +24,6 @@
package server

// Hyperlink related to the resource. This shall be only included in the HTTP responses and in HTTP PUT requests.
type ProvChgPc5SubscriptionLinks struct {
type Links struct {
	Self *LinkType `json:"self"`
}
+1 −2
Original line number Diff line number Diff line
@@ -24,8 +24,7 @@
package server

type Pc5ProvisioningInfoInner struct {
	// The provisioning information per location as defined below.
	ProInfoPc5 []interface{} `json:"proInfoPc5,omitempty"`
	ProInfoPc5 *[]interface{} `json:"proInfoPc5,omitempty"`

	TimeStamp *TimeStamp `json:"timeStamp,omitempty"`
}
+1 −1
Original line number Diff line number Diff line
@@ -25,5 +25,5 @@ package server

type PredictedQosRoutes struct {
	// Information relating to a specific route. The first structure shall relate to the route origin and the last to the route destination. Intermediate waypoint locations may also be provided.
	RouteInfo []interface{} `json:"routeInfo,omitempty"`
	RouteInfo []PredictedQosRoutesRouteInfo `json:"routeInfo"`
}
+34 −0
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 V2X Information Service REST API
 *
 * V2X Information Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC030 V2XI API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/030/02.02.01_60/gs_MEC030v020201p.pdf) <p>[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt) <p>**Micro-service**<br>[meep-vis](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-vis) <p>**Type & Usage**<br>Edge Service used by edge applications that want to get information about radio conditions in the network <p>**Note**<br>AdvantEDGE supports a selected subset of RNI API endpoints (see below) and a subset of subscription types.
 *
 * API version: 2.2.1
 * Contact: AdvantEDGE@InterDigital.com
 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
 */
package server

type PredictedQosRoutesRouteInfo struct {
	Location *LocationInfo `json:"location"`
	// Reference Signal Received Power as defined in ETSI TS 136 214 [i.13]. Shall only be included in the response.
	Rsrp int32 `json:"rsrp,omitempty"`
	// Reference Signal Received Quality as defined in ETSI TS 136 214 [i.13]. Shall only be included in the response.
	Rsrq int32 `json:"rsrq,omitempty"`

	Time *TimeStamp `json:"time,omitempty"`
}
Loading