associate_id.proto 665 Bytes
Newer Older
Elian Kraja's avatar
Elian Kraja committed
/*
  ETSI GS MEC 021 Application Mobility Service API
 
  ETSI GS MEC 021 Application Mobility Service API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec021;


message AssociateId {

  // 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.
  enum TypeEnum {
    _0 = 0;
    _1 = 1;
    _2 = 2;
    _3 = 3;
    _4 = 4;
  }

  TypeEnum type = 1;

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

}