cell_change_subscription.proto 1.1 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.
 
Hammad Zafar's avatar
Hammad Zafar committed
  The version of the OpenAPI document: 2.2.1
Michel Roy's avatar
Michel Roy committed
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec012;

import public "models/links.proto";
Michel Roy's avatar
Michel Roy committed
import public "models/cell_change_subscription_filter_criteria_assoc_ho.proto";
import public "models/time_stamp.proto";
Hammad Zafar's avatar
Hammad Zafar committed
import public "models/websock_notif_config.proto";
Michel Roy's avatar
Michel Roy committed

message CellChangeSubscription {

  Links _links = 1;
Hammad Zafar's avatar
Hammad Zafar committed
  // URI exposed by the client on which to receive notifications via HTTP. See note.
Michel Roy's avatar
Michel Roy committed
  string callbackReference = 2;

  TimeStamp expiryDeadline = 3;

  CellChangeSubscriptionFilterCriteriaAssocHo filterCriteriaAssocHo = 4;

  // Shall be set to \"CellChangeSubscription\".
  string subscriptionType = 5;

Hammad Zafar's avatar
Hammad Zafar committed
  WebsockNotifConfig websockNotifConfig = 6;

  // Shall be set to TRUE by the service consumer to request a test notification via HTTP on the callbackReference URI, specified in ETSI GS MEC 009 [6], as described in clause 6.12a.
  bool requestTestNotification = 7;

Michel Roy's avatar
Michel Roy committed
}