github.com/free5gc/openapi@v1.0.8/models/model_app_detection_info.go (about)

     1  /*
     2   * Npcf_SMPolicyControl
     3   *
     4   * Session Management Policy Control 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 AppDetectionInfo struct {
    13  	// A reference to the application detection filter configured at the UPF
    14  	AppId string `json:"appId" yaml:"appId" bson:"appId" mapstructure:"AppId"`
    15  	// Identifier sent by the SMF in order to allow correlation of application Start and Stop events to the specific service data flow description, if service data flow descriptions are deducible.
    16  	InstanceId string `json:"instanceId,omitempty" yaml:"instanceId" bson:"instanceId" mapstructure:"InstanceId"`
    17  	// Contains the detected service data flow descriptions if they are deducible.
    18  	SdfDescriptions []FlowInformation `json:"sdfDescriptions,omitempty" yaml:"sdfDescriptions" bson:"sdfDescriptions" mapstructure:"SdfDescriptions"`
    19  }