github.com/free5gc/openapi@v1.0.8/models/model_pfd_content.go (about) 1 /* 2 * Nnef_PFDmanagement Sevice API 3 * 4 * Packet Flow Description Management Service 5 * 6 * API version: 1.0.0 7 * Generated by: OpenAPI Generator (https://openapi-generator.tech) 8 */ 9 10 package models 11 12 type PfdContent struct { 13 // Identifies a PDF of an application identifier. 14 PfdId string `json:"pfdId,omitempty" yaml:"pfdId" bson:"pfdId" mapstructure:"PfdId"` 15 // Represents a 3-tuple with protocol, server ip and server port for UL/DL application traffic. 16 FlowDescriptions []string `json:"flowDescriptions,omitempty" yaml:"flowDescriptions" bson:"flowDescriptions" mapstructure:"FlowDescriptions"` 17 // Indicates a URL or a regular expression which is used to match the significant parts of the URL. 18 Urls []string `json:"urls,omitempty" yaml:"urls" bson:"urls" mapstructure:"Urls"` 19 // Indicates an FQDN or a regular expression as a domain name matching criteria. 20 DomainNames []string `json:"domainNames,omitempty" yaml:"domainNames" bson:"domainNames" mapstructure:"DomainNames"` 21 }