github.com/free5gc/openapi@v1.0.8/models/model_ee_subscription.go (about) 1 /* 2 * Nudm_EE 3 * 4 * Nudm Event Exposure Service 5 * 6 * API version: 1.0.1 7 * Generated by: OpenAPI Generator (https://openapi-generator.tech) 8 */ 9 10 package models 11 12 type EeSubscription struct { 13 CallbackReference string `json:"callbackReference" yaml:"callbackReference" bson:"callbackReference" mapstructure:"CallbackReference"` 14 // A map (list of key-value pairs where ReferenceId serves as key) of MonitoringConfigurations 15 MonitoringConfigurations map[string]MonitoringConfiguration `json:"monitoringConfigurations" yaml:"monitoringConfigurations" bson:"monitoringConfigurations" mapstructure:"MonitoringConfigurations"` 16 ReportingOptions *ReportingOptions `json:"reportingOptions,omitempty" yaml:"reportingOptions" bson:"reportingOptions" mapstructure:"ReportingOptions"` 17 SupportedFeatures string `json:"supportedFeatures,omitempty" yaml:"supportedFeatures" bson:"supportedFeatures" mapstructure:"SupportedFeatures"` 18 }