nr_meas_rep_ue_notification.proto 1.59 KB
Newer Older
Michel Roy's avatar
Michel Roy committed
/*
  ETSI GS MEC 012 - Radio Network Information API
 
  The ETSI MEC ISG MEC012 Radio Network Information API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec012;

import public "models/associate_id.proto";
import public "models/nr_meas_rep_ue_notification_eutra_neigh_cell_meas_info.proto";
import public "models/nr_meas_rep_ue_notification_nr_neigh_cell_meas_info.proto";
import public "models/nr_meas_rep_ue_notification_serv_cell_meas_info.proto";
import public "models/time_stamp.proto";
import public "models/trigger_nr.proto";

message NrMeasRepUeNotification {

  // 0 to N identifiers to associate the event for a specific UE or flow.
  repeated AssociateId associateId = 1;

  // This parameter can be repeated to contain measurement information of all the neighbouring cells up to N. It shall not be included if nrNeighCellMeasInfo is included.
  repeated NrMeasRepUeNotificationEutraNeighCellMeasInfo eutraNeighCellMeasInfo = 2;

  // Shall be set to \"NrMeasRepUeNotification\".
  string notificationType = 3;

  // This parameter can be repeated to contain measurement information of all the neighbouring cells up to N. It shall not be included if eutraNeighCellMeasInfo is included.
  repeated NrMeasRepUeNotificationNrNeighCellMeasInfo nrNeighCellMeasInfo = 4;

  // This parameter can be repeated to contain information of all the serving cells up to N.
  repeated NrMeasRepUeNotificationServCellMeasInfo servCellMeasInfo = 5;

  TimeStamp timeStamp = 6;

  TriggerNr triggerNr = 7;

}