/* ETSI GS MEC 030 V2X Information Services API ETSI GS MEC 030 V2X Information Services API described using OpenAPI. The version of the OpenAPI document: 3.1.1 Contact: cti_support@etsi.org Generated by OpenAPI Generator: https://openapi-generator.tech */ syntax = "proto3"; package mec030; import public "models/links1.proto"; import public "models/qos_pred_filter_criteria.proto"; import public "models/time_stamp.proto"; import public "models/websock_notif_config.proto"; message PredQosSubscription { Links1 _links = 1; // URI exposed by the client on which to receive notifications via HTTP. See note. string callbackReference = 2; TimeStamp expiryDeadline = 3; QosPredFilterCriteria filterCriteria = 4; // Shall be set to TRUE by the service consumer to request a test notification via HTTP on the callbackReference URI, as described in ETSI GS MEC 009 [9], clause 6.12a. Default: FALSE. bool requestTestNotification = 5; // Shall be set to \"PredQosSubscription\". string subscriptionType = 6; WebsockNotifConfig websockNotifConfig = 7; }