WARNING! Gitlab maintenance operation scheduled for Thursday, 18 June between 19:00 and 20:00 (CET). During this time window, short service interruptions (less than 5 minutes) may occur. Thank you in advance for your understanding.
geographical_coords:list[GeographicalCoordinates]=Field(...,description="List of geographical coordinates defining the points.",min_length=3,max_length=15)
classPolygon(BaseModel):
point_list:PointList=Field(...,description="List of points defining the polygon.")
classGeographicArea(BaseModel):
polygon:Polygon|None=Field(None,description="Identifies a polygonal geographic area.")
#This data type represents the user location information which is sent from the NEF to the AF.
classLocationInfo(BaseModel):
ageOfLocationInfo:DurationMin|None=Field(None,description="Indicates the elapsed time since the last network contact of the UE.")
@@ -252,7 +265,7 @@ class LocationInfo(BaseModel):
routingAreaId:str|None=Field(None,description="Routing Area ID where the UE is located")
plmnId:PlmnId|None=Field(None,description="PLMN ID where the UE is located.")
twanId:str|None=Field(None,description="TWAN ID where the UE is located.")
#geographicArea: GeographicArea | None = Field(None,description="Identifies a geographic area of the user where the UE is located.")
geographicArea:GeographicArea|None=Field(None,description="Identifies a geographic area of the user where the UE is located.")