associate_id.proto 669 Bytes
Newer Older
Michel Roy's avatar
Michel Roy committed
1
2
3
4
5
/*
  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
6
  The version of the OpenAPI document: 2.2.1
Michel Roy's avatar
Michel Roy committed
7
8
9
10
11
12
13
14
15
16
17
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec012;


message AssociateId {

Michel Roy's avatar
Michel Roy committed
18
  // 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
19
  enum TypeEnum {
Michel Roy's avatar
Michel Roy committed
20
21
22
23
24
    _0 = 0;
    _1 = 1;
    _2 = 2;
    _3 = 3;
    _4 = 4;
Michel Roy's avatar
Michel Roy committed
25
26
27
28
29
30
31
32
  }

  TypeEnum type = 1;

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

}