associate_id.proto 775 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 {
    ASSOCIATE_ID_TYPE_ENUM_0 = 0;
    ASSOCIATE_ID_TYPE_ENUM_1 = 1;
    ASSOCIATE_ID_TYPE_ENUM_2 = 2;
    ASSOCIATE_ID_TYPE_ENUM_3 = 3;
    ASSOCIATE_ID_TYPE_ENUM_4 = 4;
Elian Kraja's avatar
Elian Kraja committed
  }

  TypeEnum type = 1;

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

}