Merge "Copy latest code"
[ric-plt/e2mgr.git] / E2Manager / models / notification_request.go
index ebbeeb6..b275587 100644 (file)
 // 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.
-//
+
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 
 package models
 
@@ -24,10 +27,10 @@ type NotificationRequest struct {
        Len           int
        Payload       []byte
        StartTime     time.Time
-       TransactionId string
+       TransactionId []byte
 }
 
-func NewNotificationRequest(ranName string, payload []byte, startTime time.Time, transactionId string) *NotificationRequest {
+func NewNotificationRequest(ranName string, payload []byte, startTime time.Time, transactionId []byte) *NotificationRequest {
        return &NotificationRequest{
                ranName,
                len(payload),