Commit dc1f82d8 authored by Simon Pastor's avatar Simon Pastor
Browse files

loc-serv-notification and demo-server update in advantEDGE-ops for autogeneration

parent 2b97e828
Loading
Loading
Loading
Loading
+2 −12
Original line number Diff line number Diff line
@@ -50,11 +50,11 @@ command above from.
#### git
#
If the library is hosted at a git repository, e.g.
https://github.com/YOUR_USERNAME/meep_demo_app_api
https://github.com/GIT_USER_ID/GIT_REPO_ID
then install it via:

```shell
    npm install YOUR_USERNAME/meep_demo_app_api --save
    npm install GIT_USER_ID/GIT_REPO_ID --save
```

### For browser
@@ -126,26 +126,16 @@ Class | Method | HTTP request | Description

## Documentation for Models

 - [MeepDemoAppApi.AccessPointId](docs/AccessPointId.md)
 - [MeepDemoAppApi.Address](docs/Address.md)
 - [MeepDemoAppApi.CallbackData](docs/CallbackData.md)
 - [MeepDemoAppApi.EdgeInfo](docs/EdgeInfo.md)
 - [MeepDemoAppApi.InterestRealm](docs/InterestRealm.md)
 - [MeepDemoAppApi.MobilityGroupAppState](docs/MobilityGroupAppState.md)
 - [MeepDemoAppApi.MobilityGroupEvent](docs/MobilityGroupEvent.md)
 - [MeepDemoAppApi.NumberOfAccessPoints](docs/NumberOfAccessPoints.md)
 - [MeepDemoAppApi.NumberOfUsers](docs/NumberOfUsers.md)
 - [MeepDemoAppApi.ResourceURL](docs/ResourceURL.md)
 - [MeepDemoAppApi.SubscriptionId](docs/SubscriptionId.md)
 - [MeepDemoAppApi.Timestamp](docs/Timestamp.md)
 - [MeepDemoAppApi.TrackingNotification](docs/TrackingNotification.md)
 - [MeepDemoAppApi.UeState](docs/UeState.md)
 - [MeepDemoAppApi.UserEventType](docs/UserEventType.md)
 - [MeepDemoAppApi.UserId](docs/UserId.md)
 - [MeepDemoAppApi.UserInfo](docs/UserInfo.md)
 - [MeepDemoAppApi.UserList](docs/UserList.md)
 - [MeepDemoAppApi.UserTrackingNotification](docs/UserTrackingNotification.md)
 - [MeepDemoAppApi.ZoneId](docs/ZoneId.md)
 - [MeepDemoAppApi.ZoneInfo](docs/ZoneInfo.md)


+7 −7
Original line number Diff line number Diff line
@@ -3,13 +3,13 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**callbackData** | [**CallbackData**](CallbackData.md) |  | 
**zoneId** | [**ZoneId**](ZoneId.md) |  | [optional] 
**address** | [**Address**](Address.md) |  | [optional] 
**interestRealma** | [**InterestRealm**](InterestRealm.md) |  | [optional] 
**callbackData** | **String** | CallBackData if passed by the application during the associated Subscription (Zone or User Tracking) operation | 
**zoneId** | **String** | Unique Identifier of a Location Zone | [optional] 
**address** | **String** | Address of the user or device based on the connected access point - address = acr:<UE IP address> | [optional] 
**interestRealm** | **String** | Details about the access point, geographical position, industry, etc. | [optional] 
**userEventType** | [**UserEventType**](UserEventType.md) |  | [optional] 
**currentAccessPointId** | [**AccessPointId**](AccessPointId.md) |  | [optional] 
**previousAccessPointId** | [**AccessPointId**](AccessPointId.md) |  | [optional] 
**timestamp** | [**Timestamp**](Timestamp.md) |  | [optional] 
**currentAccessPointId** | **String** | Unique identifier of a point of access | [optional] 
**previousAccessPointId** | **String** | Unique identifier of a point of access | [optional] 
**timestamp** | **Date** | Indicates the time of day for zonal presence notification. | [optional] 

+5 −5
Original line number Diff line number Diff line
@@ -3,10 +3,10 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**userId** | [**UserId**](UserId.md) |  | [optional] 
**address** | [**Address**](Address.md) |  | 
**accessPointId** | [**AccessPointId**](AccessPointId.md) |  | 
**zoneId** | [**ZoneId**](ZoneId.md) |  | 
**resourceURL** | [**ResourceURL**](ResourceURL.md) |  | 
**userId** | **String** | Unique identifier of a user or client node | [optional] 
**address** | **String** | Address of the user or device based on the connected access point - address = acr:<UE IP address> | 
**accessPointId** | **String** | Unique identifier of a point of access | 
**zoneId** | **String** | Unique Identifier of a Location Zone | 
**resourceURL** | **String** | URL where the UE may be contacted for some service (application specific) | 

+2 −2
Original line number Diff line number Diff line
@@ -3,9 +3,9 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**callbackData** | [**CallbackData**](CallbackData.md) |  | 
**callbackData** | **String** | CallBackData if passed by the application during the associated Subscription (Zone or User Tracking) operation | 
**userInfo** | [**UserInfo**](UserInfo.md) |  | 
**timeStamp** | [**Timestamp**](Timestamp.md) |  | 
**timeStamp** | **Date** | Indicates the time of day for zonal presence notification. | 
**userEventType** | [**UserEventType**](UserEventType.md) |  | [optional] 

+3 −3
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**zoneId** | [**ZoneId**](ZoneId.md) |  | 
**numberOfAccessPoints** | [**NumberOfAccessPoints**](NumberOfAccessPoints.md) |  | 
**numberOfUsers** | [**NumberOfUsers**](NumberOfUsers.md) |  | 
**zoneId** | **String** | Unique Identifier of a Location Zone | 
**numberOfAccessPoints** | **Number** | Number of access points or points of access within a Location Zone | 
**numberOfUsers** | **Number** | The number of users currently on the access point | 

Loading