v2x_msg_subscription.proto 1.06 KB
Newer Older
piscione's avatar
piscione committed
/*
  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
piscione's avatar
piscione committed
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec030;

import public "models/links.proto";
piscione's avatar
piscione committed
import public "models/time_stamp.proto";
import public "models/v2x_msg_filter_criteria.proto";
import public "models/websock_notif_config.proto";
piscione's avatar
piscione committed

message V2xMsgSubscription {

  Links _links = 1;

  // URI exposed by the client on which to receive notifications via HTTP. See note.
  string callbackReference = 2;
  TimeStamp expiryDeadline = 3;
  V2xMsgFilterCriteria 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;
piscione's avatar
piscione committed

  // Shall be set to \"V2xMsgSubscription\".
  string subscriptionType = 6;

  WebsockNotifConfig websockNotifConfig = 7;