mobility_status.proto 776 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;

//In case mobilityStatus is not included in the subscription request, the default value 1 = INTER_HOST_MOBILITY_TRIGGERED shall be used and included in the response. 1 = INTERHOST_MOVEOUT_TRIGGERED. 2 = INTERHOST_MOVEOUT_COMPLETED. 3 = INTERHOST_MOVEOUT_FAILED.
message MobilityStatus{
	enum TypeEnum {
		MOBILITY_STATUS_TYPE_ENUM_1 = 0;
		MOBILITY_STATUS_TYPE_ENUM_2 = 1;
		MOBILITY_STATUS_TYPE_ENUM_3 = 2;
Elian Kraja's avatar
Elian Kraja committed
	}
  TypeEnum type = 1;

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

}