/* 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.2.1 Generated by OpenAPI Generator: https://openapi-generator.tech */ syntax = "proto3"; package mec012; import public "models/ca_reconf_subscription_links.proto"; import public "models/cell_change_subscription_filter_criteria_assoc_ho.proto"; import public "models/time_stamp.proto"; import public "models/websock_notif_config.proto"; message CellChangeSubscription { CaReconfSubscriptionLinks _links = 1; // URI exposed by the client on which to receive notifications via HTTP. See note. string callbackReference = 2; TimeStamp expiryDeadline = 3; CellChangeSubscriptionFilterCriteriaAssocHo filterCriteriaAssocHo = 4; // Shall be set to \"CellChangeSubscription\". string subscriptionType = 5; 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; }