-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_pfd_content.go
46 lines (23 loc) · 1.24 KB
/
model_pfd_content.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* Nudr_DataRepository API OpenAPI file
*
* Unified Data Repository Service. © 2021, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
*
* API version: 2.1.5
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package models
import (
)
type PfdContent struct {
// simple type
// Identifies a PDF of an application identifier.
PfdId *string `json:"pfdId,omitempty" yaml:"pfdId" bson:"pfdId" mapstructure:"PfdId"`
// Represents a 3-tuple with protocol, server ip and server port for UL/DL application traffic.
FlowDescriptions *[]string `json:"flowDescriptions,omitempty" yaml:"flowDescriptions" bson:"flowDescriptions" mapstructure:"FlowDescriptions"`
// Indicates a URL or a regular expression which is used to match the significant parts of the URL.
Urls *[]string `json:"urls,omitempty" yaml:"urls" bson:"urls" mapstructure:"Urls"`
// Indicates an FQDN or a regular expression as a domain name matching criteria.
DomainNames *[]string `json:"domainNames,omitempty" yaml:"domainNames" bson:"domainNames" mapstructure:"DomainNames"`
DnProtocol *DomainNameProtocol `json:"dnProtocol,omitempty" yaml:"dnProtocol" bson:"dnProtocol" mapstructure:"DnProtocol"`
}