Skip to content

Commit

Permalink
fix: add multipart tags in UpdatePduSessionRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
pf-lin committed Oct 30, 2024
1 parent 4bedc2e commit a0dbc8b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions models/model_update_pdu_session_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
package models

type UpdatePduSessionRequest struct {
JsonData *HsmfUpdateData `json:"jsonData,omitempty" yaml:"jsonData" bson:"jsonData,omitempty"`
BinaryDataN1SmInfoFromUe []byte `json:"binaryDataN1SmInfoFromUe,omitempty" yaml:"binaryDataN1SmInfoFromUe" bson:"binaryDataN1SmInfoFromUe,omitempty"`
BinaryDataUnknownN1SmInfo []byte `json:"binaryDataUnknownN1SmInfo,omitempty" yaml:"binaryDataUnknownN1SmInfo" bson:"binaryDataUnknownN1SmInfo,omitempty"`
BinaryDataN4Information []byte `json:"binaryDataN4Information,omitempty" yaml:"binaryDataN4Information" bson:"binaryDataN4Information,omitempty"`
BinaryDataN4InformationExt1 []byte `json:"binaryDataN4InformationExt1,omitempty" yaml:"binaryDataN4InformationExt1" bson:"binaryDataN4InformationExt1,omitempty"`
BinaryDataN4InformationExt2 []byte `json:"binaryDataN4InformationExt2,omitempty" yaml:"binaryDataN4InformationExt2" bson:"binaryDataN4InformationExt2,omitempty"`
JsonData *HsmfUpdateData `json:"jsonData,omitempty" yaml:"jsonData" bson:"jsonData,omitempty" multipart:"contentType:application/json,omitempty"`
BinaryDataN1SmInfoFromUe []byte `json:"binaryDataN1SmInfoFromUe,omitempty" yaml:"binaryDataN1SmInfoFromUe" bson:"binaryDataN1SmInfoFromUe,omitempty" multipart:"contentType:application/vnd.3gpp.5gnas,ref:JsonData.N1SmInfoFromUe.ContentId,omitempty"`
BinaryDataUnknownN1SmInfo []byte `json:"binaryDataUnknownN1SmInfo,omitempty" yaml:"binaryDataUnknownN1SmInfo" bson:"binaryDataUnknownN1SmInfo,omitempty" multipart:"contentType:application/vnd.3gpp.5gnas,ref:JsonData.UnknownN1SmInfo.ContentId,omitempty"`
BinaryDataN4Information []byte `json:"binaryDataN4Information,omitempty" yaml:"binaryDataN4Information" bson:"binaryDataN4Information,omitempty" multipart:"contentType:application/vnd.3gpp.pfcp,ref:JsonData.N4Info.N4MessagePayload.ContentId,omitempty"`
BinaryDataN4InformationExt1 []byte `json:"binaryDataN4InformationExt1,omitempty" yaml:"binaryDataN4InformationExt1" bson:"binaryDataN4InformationExt1,omitempty" multipart:"contentType:application/vnd.3gpp.pfcp,ref:JsonData.N4InfoExt1.N4MessagePayload.ContentId,omitempty"`
BinaryDataN4InformationExt2 []byte `json:"binaryDataN4InformationExt2,omitempty" yaml:"binaryDataN4InformationExt2" bson:"binaryDataN4InformationExt2,omitempty" multipart:"contentType:application/vnd.3gpp.pfcp,ref:JsonData.N4InfoExt2.N4MessagePayload.ContentId,omitempty"`
}

0 comments on commit a0dbc8b

Please sign in to comment.