/* 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:

0 = reserved.

1 = UE_IPv4_ADDRESS.

2 = UE_IPV6_ADDRESS.

3 = NATED_IP_ADDRESS.

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; } TypeEnum type = 1; // Value for the identifier. string value = 2; }