From 85058d1f3da158f9588d326dadb3a8c487f16632 Mon Sep 17 00:00:00 2001 From: wiwi878 Date: Tue, 26 May 2026 11:50:55 +0000 Subject: [PATCH] fix: distinguish missing registration anN2ApId --- models/model_registration_context_container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/model_registration_context_container.go b/models/model_registration_context_container.go index f1d8f6ab..27c9528a 100644 --- a/models/model_registration_context_container.go +++ b/models/model_registration_context_container.go @@ -18,7 +18,7 @@ type RegistrationContextContainer struct { // String with format \"time-numoffset\" optionally appended by \"daylightSavingTime\", where - \"time-numoffset\" shall represent the time zone adjusted for daylight saving time and be encoded as time-numoffset as defined in clause 5.6 of IETF RFC 3339; - \"daylightSavingTime\" shall represent the adjustment that has been made and shall be encoded as \"+1\" or \"+2\" for a +1 or +2 hours adjustment. The example is for 8 hours behind UTC, +1 hour adjustment for Daylight Saving Time. LocalTimeZone string `json:"localTimeZone,omitempty" yaml:"localTimeZone" bson:"localTimeZone,omitempty"` AnType AccessType `json:"anType" yaml:"anType" bson:"anType,omitempty"` - AnN2ApId int32 `json:"anN2ApId" yaml:"anN2ApId" bson:"anN2ApId,omitempty"` + AnN2ApId *int32 `json:"anN2ApId" yaml:"anN2ApId" bson:"anN2ApId,omitempty"` RanNodeId *GlobalRanNodeId `json:"ranNodeId" yaml:"ranNodeId" bson:"ranNodeId,omitempty"` // Fully Qualified Domain Name InitialAmfName string `json:"initialAmfName" yaml:"initialAmfName" bson:"initialAmfName,omitempty"`