github.com/free5gc/openapi@v1.0.8/models/model_bdt_policy_data_patch.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 // A JSON Merge Patch body schema containing modification instruction to be performed on the BdtPolicy data structure to select a transfer policy. Adds selTransPolicyId to BdtPolicyData data structure. 13 type BdtPolicyDataPatch struct { 14 // Contains an identity (i.e. transPolicyId value) of the selected transfer policy. 15 SelTransPolicyId int32 `json:"selTransPolicyId" yaml:"selTransPolicyId" bson:"selTransPolicyId" mapstructure:"SelTransPolicyId"` 16 }