X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=e2ap%2Fpkg%2Fe2ap%2Fmsg_e2ap_subscription.go;h=707383184ff8db2302db0d8875834f1042472798;hb=52e2f8ec3ebcb9d58fe2b01d70530f2fa44666cb;hp=7a1f9e0d0eabd6141790c14594cdf6fdd70aecbb;hpb=ff8dccd02d76eebfccc0b509ce0b42a2c1760e12;p=ric-plt%2Fsubmgr.git diff --git a/e2ap/pkg/e2ap/msg_e2ap_subscription.go b/e2ap/pkg/e2ap/msg_e2ap_subscription.go index 7a1f9e0..7073831 100644 --- a/e2ap/pkg/e2ap/msg_e2ap_subscription.go +++ b/e2ap/pkg/e2ap/msg_e2ap_subscription.go @@ -19,6 +19,13 @@ package e2ap +//----------------------------------------------------------------------------- +// +//----------------------------------------------------------------------------- +type SubscriptionRequestList struct { + E2APSubscriptionRequests []E2APSubscriptionRequest +} + //----------------------------------------------------------------------------- // //----------------------------------------------------------------------------- @@ -35,8 +42,8 @@ type E2APSubscriptionRequest struct { type E2APSubscriptionResponse struct { RequestId FunctionId - ActionAdmittedList - ActionNotAdmittedList + ActionAdmittedList ActionAdmittedList // SDL JSON encode requires this format (name data-type) to work correctly + ActionNotAdmittedList ActionNotAdmittedList // SDL JSON encode requires this format (name data-type) to work correctly } //----------------------------------------------------------------------------- @@ -45,6 +52,6 @@ type E2APSubscriptionResponse struct { type E2APSubscriptionFailure struct { RequestId FunctionId - ActionNotAdmittedList + Cause CriticalityDiagnostics }