Commit 268df8b8 authored by M. Rehan Abbasi's avatar M. Rehan Abbasi
Browse files

convert JSON of attributes of CoordinatePowerList and GeoCoordinateList to camel case

parent 4a528c46
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,5 +26,5 @@ package server

// List of geo coordinates with RSRQ/RSRP values
type CoordinatePowerList struct {
	CoordinatesPower []CoordinatePower `json:"CoordinatesPower,omitempty"`
	CoordinatesPower []CoordinatePower `json:"coordinatesPower,omitempty"`
}
+1 −1
Original line number Diff line number Diff line
@@ -26,5 +26,5 @@ package server

// List of geo-coordinates
type GeoCoordinateList struct {
	GeoCoordinates []GeoCoordinate `json:"GeoCoordinates,omitempty"`
	GeoCoordinates []GeoCoordinate `json:"geoCoordinates,omitempty"`
}