registration_info.proto 1.09 KB
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;

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 appMobilityServiceId = 1;

  // If present, it specifies the device served by the application instance which is registering the application mobility service.
  repeated RegistrationInfoDeviceInformation deviceInformation = 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 expiryTime = 3;

  RegistrationInfoServiceConsumerId serviceConsumerId = 4;

}