github.com/free5gc/openapi@v1.0.8/models/model_bdt_req_data.go (about) 1 /* 2 * Npcf_BDTPolicyControl Service API 3 * 4 * The Npcf_BDTPolicyControl Service is used by an NF service consumer to retrieve background data transfer policies from the PCF and to update the PCF with the background data transfer policy selected by the NF service consumer. 5 * 6 * API version: 1.0.0 7 * Generated by: OpenAPI Generator (https://openapi-generator.tech) 8 */ 9 10 package models 11 12 // Contains service requirements for creation a new Individual BDT policy resource. 13 type BdtReqData struct { 14 // Contains an identity of an application service provider. 15 AspId string `json:"aspId" yaml:"aspId" bson:"aspId" mapstructure:"AspId"` 16 DesTimeInt *TimeWindow `json:"desTimeInt" yaml:"desTimeInt" bson:"desTimeInt" mapstructure:"DesTimeInt"` 17 NwAreaInfo *NetworkAreaInfo `json:"nwAreaInfo,omitempty" yaml:"nwAreaInfo" bson:"nwAreaInfo" mapstructure:"NwAreaInfo"` 18 // Indicates a number of UEs. 19 NumOfUes int32 `json:"numOfUes" yaml:"numOfUes" bson:"numOfUes" mapstructure:"NumOfUes"` 20 VolPerUe *UsageThreshold `json:"volPerUe" yaml:"volPerUe" bson:"volPerUe" mapstructure:"VolPerUe"` 21 SuppFeat string `json:"suppFeat,omitempty" yaml:"suppFeat" bson:"suppFeat" mapstructure:"SuppFeat"` 22 }