associate_id.proto 669 Bytes
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;


message AssociateId {

Michel Roy's avatar
Michel Roy committed
  // Numeric value (0-255) corresponding to specified type of identifier as following: <p>0 = reserved. <p>1 = UE_IPv4_ADDRESS. <p>2 = UE_IPV6_ADDRESS. <p>3 = NATED_IP_ADDRESS. <p>4 = GTP_TEID.
Michel Roy's avatar
Michel Roy committed
  enum TypeEnum {
Michel Roy's avatar
Michel Roy committed
    _0 = 0;
    _1 = 1;
    _2 = 2;
    _3 = 3;
    _4 = 4;
Michel Roy's avatar
Michel Roy committed
  }

  TypeEnum type = 1;

  // Value for the identifier.
  string value = 2;

}