Commit 4892dc30 authored by Ikram Haq's avatar Ikram Haq
Browse files

Fix issue related to NotificationSubscriptionlist.

parent a377caf1
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -3129,6 +3129,12 @@ components:
              $ref: '#/components/schemas/LinkType'
            confirmTermination:
              $ref: '#/components/schemas/LinkType'
    OperationActionType:
      description: Operation that is being performed on the MEC application instance.
      type: string
      enum:
        - STOPPING
        - TERMINATING
    Subscription:
      description: ''
      minItems: 0
+2 −2
Original line number Diff line number Diff line
@@ -292,7 +292,7 @@ func processActiveScenarioUpdate() {
		ueNames = append(ueNames, name)
		var id string = "324561243"
		var mapid *string = &id
		var country string = "Monaco"
		var country string = "MC"
		var country_name *string = &country
		var longitude *float32
		var latitude *float32
@@ -441,7 +441,7 @@ func refreshPositions() {
		}
		var id string = "324561243"
		var mapid *string = &id
		var country string = "Monaco"
		var country string = "MC"
		var country_name *string = &country
		// Get position
		var longitude *float32
+126 −54

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
package server

type UserAreaSubscription struct {
	Links *Links `json:"links,omitempty"`
	Links *Links `json:"_links,omitempty"`
	// List of the users to be monitored.
	AddressList []string `json:"addressList"`

+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
package server

type UserDistanceSubscription struct {
	Links *Links `json:"links,omitempty"`
	Links *Links `json:"_links,omitempty"`
	// URI exposed by the client on which to receive notifications via HTTP. See note 1.
	CallbackReference string `json:"callbackReference,omitempty"`
	// Check location immediately after establishing notification.
Loading