github.com/free5gc/openapi@v1.0.8/models/model_pfd_data.go (about) 1 /* 2 * 3gpp-pfd-management 3 * 4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) 5 * 6 * API version: 1.0.0 7 * Generated by: OpenAPI Generator (https://openapi-generator.tech) 8 */ 9 10 package models 11 12 type PfdData struct { 13 // Each element uniquely external application identifier 14 ExternalAppId string `json:"externalAppId" yaml:"externalAppId" bson:"externalAppId" mapstructure:"ExternalAppId"` 15 // string formatted according to IETF RFC 3986 identifying a referenced resource. 16 Self string `json:"self,omitempty" yaml:"self" bson:"self" mapstructure:"Self"` 17 // Contains the PFDs of the external application identifier. Each PFD is identified in the map via a key containing the PFD identifier. 18 Pfds map[string]Pfd `json:"pfds" yaml:"pfds" bson:"pfds" mapstructure:"Pfds"` 19 // Unsigned integer identifying a period of time in units of seconds with \"nullable=true\" property. 20 AllowedDelay int32 `json:"allowedDelay,omitempty" yaml:"allowedDelay" bson:"allowedDelay" mapstructure:"AllowedDelay"` 21 // Unsigned integer identifying a period of time in units of seconds with \"readOnly=true\" property. 22 CachingTime int32 `json:"cachingTime,omitempty" yaml:"cachingTime" bson:"cachingTime" mapstructure:"CachingTime"` 23 }