/* 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; import public "models/registration_info_device_information.proto"; import public "models/registration_info_service_consumer_id.proto"; message RegistrationInfo { // The identifier of registered application mobility service. Shall be absent in POST requests, and present otherwise. string app_mobility_service_id = 1; // If present, it specifies the device served by the application instance which is registering the application mobility service. repeated RegistrationInfoDeviceInformation device_information = 2; // If present, it indicates the time of application mobility service expiration from the time of registration accepted.The value \"0\" means infinite time, i.e. no expiration.The unit of expiry time is one second. int32 expiry_time = 3; RegistrationInfoServiceConsumerId service_consumer_id = 4; }