github.com/free5gc/openapi@v1.0.8/models/model_amf_event_report.go (about) 1 /* 2 * Namf_EventExposure 3 * 4 * AMF Event Exposure Service 5 * 6 * API version: 1.0.0 7 * Generated by: OpenAPI Generator (https://openapi-generator.tech) 8 */ 9 10 package models 11 12 import ( 13 "time" 14 ) 15 16 type AmfEventReport struct { 17 Type AmfEventType `json:"type" bson:"type" ` 18 State *AmfEventState `json:"state" bson:"state" ` 19 TimeStamp *time.Time `json:"timeStamp" bson:"timeStamp" ` 20 SubscriptionId string `json:"subscriptionId,omitempty" bson:"subscriptionId" ` 21 AnyUe bool `json:"anyUe,omitempty" bson:"anyUe" ` 22 Supi string `json:"supi,omitempty" bson:"supi" ` 23 AreaList []AmfEventArea `json:"areaList,omitempty" bson:"areaList" ` 24 Gpsi string `json:"gpsi,omitempty" bson:"gpsi" ` 25 Pei string `json:"pei,omitempty" bson:"pei" ` 26 Location *UserLocation `json:"location,omitempty" bson:"location" ` 27 Timezone string `json:"timezone,omitempty" bson:"timezone" ` 28 AccessTypeList []AccessType `json:"accessTypeList,omitempty" bson:"accessTypeList" ` 29 RmInfoList []RmInfo `json:"rmInfoList,omitempty" bson:"rmInfoList" ` 30 CmInfoList []CmInfo `json:"cmInfoList,omitempty" bson:"cmInfoList" ` 31 Reachability UeReachability `json:"reachability,omitempty" bson:"reachability" ` 32 SubscribedData *SubscribedData `json:"subscribedData,omitempty" bson:"subscribedData" ` 33 CommFailure *CommunicationFailure `json:"commFailure,omitempty" bson:"commFailure" ` 34 NumberOfUes int32 `json:"numberOfUes,omitempty" bson:"numberOfUes" ` 35 }