├── .github └── workflows │ └── go.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── amf ├── Communication │ ├── api_individual_subscription_document.go │ ├── api_individual_ue_context_document.go │ ├── api_n1_n2_individual_subscription_document.go │ ├── api_n1_n2_message_collection_collection.go │ ├── api_n1_n2_subscriptions_collection_for_individual_ue_contexts_collection.go │ ├── api_non_uen2_message_notification_individual_subscription_document.go │ ├── api_non_uen2_messages_collection_collection.go │ ├── api_non_uen2_messages_subscriptions_collection_collection.go │ ├── api_subscriptions_collection_collection.go │ ├── client.go │ └── configuration.go ├── EventExposure │ ├── api_individual_subscription_document.go │ ├── api_subscriptions_collection_collection.go │ ├── client.go │ └── configuration.go ├── Location │ ├── api_individual_ue_context_document.go │ ├── client.go │ └── configuration.go ├── MBSBroadcast │ ├── api_broadcast_mbs_session_contexts_collection_collection.go │ ├── api_individual_broadcast_mbs_session_context_document.go │ ├── client.go │ └── configuration.go ├── MBSCommunication │ ├── api_n2_messages_handler_custom_operation.go │ ├── client.go │ └── configuration.go └── MT │ ├── api_ue_context_document.go │ ├── api_ue_contexts_collection.go │ ├── api_ue_reach_ind_document.go │ ├── client.go │ └── configuration.go ├── ausf ├── SoRProtection │ ├── api_default.go │ ├── client.go │ └── configuration.go ├── UEAuthentication │ ├── api_authentication_result_deletion.go │ ├── api_default.go │ ├── client.go │ └── configuration.go └── UPUProtection │ ├── api_default.go │ ├── client.go │ └── configuration.go ├── auth.go ├── bsf └── Management │ ├── api_individual_pcf_binding_document.go │ ├── api_individual_pcf_for_an_mbs_session_binding_document.go │ ├── api_individual_pcf_for_apdu_session_binding_document.go │ ├── api_individual_pcf_for_aue_binding_document.go │ ├── api_individual_subscription_document.go │ ├── api_pcf_bindings_collection.go │ ├── api_pcf_for_an_mbs_session_bindings_collection.go │ ├── api_pcf_for_aue_bindings_collection.go │ ├── api_subscriptions_collection.go │ ├── client.go │ └── configuration.go ├── chf ├── ConvergedCharging │ ├── api_default.go │ ├── client.go │ └── configuration.go ├── OfflineOnlyCharging │ ├── api_default.go │ ├── client.go │ └── configuration.go └── SpendingLimitControl │ ├── api_default.go │ ├── client.go │ └── configuration.go ├── client.go ├── client_test.go ├── convert.go ├── convert_test.go ├── error.go ├── go.mod ├── go.sum ├── json_query_builder.go ├── lmf ├── Broadcast │ ├── api_request_ciphering_key_data.go │ ├── client.go │ └── configuration.go └── Location │ ├── api_cancel_location.go │ ├── api_determine_location.go │ ├── api_location_context_transfer.go │ ├── client.go │ └── configuration.go ├── media_type.go ├── metrics.go ├── models ├── model_3_g_aka_av.go ├── model_3_gppps_data_off_status.go ├── model_5_g_ddnmf_info.go ├── model_5_g_srvcc_info.go ├── model_5_g_vn_group_configuration.go ├── model_5_g_vn_group_data.go ├── model_5_glan_type_service.go ├── model_5_gs_user_state.go ├── model_5_gs_user_state_info.go ├── model_5_mbs_authorization_info.go ├── model_aanf_info.go ├── model_abnormal_behaviour.go ├── model_acc_net_ch_id.go ├── model_acc_net_charging_address.go ├── model_acceptable_mbs_serv_info.go ├── model_acceptable_service_info.go ├── model_access_and_mobility_data.go ├── model_access_and_mobility_subscription_data.go ├── model_access_net_charging_identifier.go ├── model_access_network_id.go ├── model_access_network_info_change.go ├── model_access_right_status.go ├── model_access_state_transition_type.go ├── model_access_tech.go ├── model_access_token_claims.go ├── model_access_token_err.go ├── model_access_token_req.go ├── model_access_transfer_information.go ├── model_access_transfer_type.go ├── model_access_type.go ├── model_access_type_1.go ├── model_access_type_rm.go ├── model_accu_usage_report.go ├── model_accumulated_usage.go ├── model_accuracy_fulfilment_indicator.go ├── model_ack_of_notify.go ├── model_acknowledge_info.go ├── model_acs_info.go ├── model_acs_info_rm.go ├── model_activation_state.go ├── model_addition_info_analytics_info_request.go ├── model_addition_info_enable_ue_reachability.go ├── model_additional_access_info.go ├── model_additional_ee_subs_info.go ├── model_additional_measurement.go ├── model_additional_qos_flow_info.go ├── model_additional_snssai_data.go ├── model_addr_fqdn.go ├── model_address_list.go ├── model_administrative_state.go ├── model_adrf_data_type.go ├── model_aerial_ue_indication.go ├── model_aerial_ue_subscription_info.go ├── model_af_ack_info.go ├── model_af_coordination_info.go ├── model_af_event_exposure_af_event.go ├── model_af_event_exposure_af_event_notification.go ├── model_af_event_exposure_data.go ├── model_af_event_exposure_dispersion_collection.go ├── model_af_event_exposure_event_filter.go ├── model_af_event_exposure_notif.go ├── model_af_event_exposure_subsc.go ├── model_af_event_subscription.go ├── model_af_external.go ├── model_af_notif_method.go ├── model_af_requested_data.go ├── model_af_result_info.go ├── model_af_result_status.go ├── model_af_routing_requirement.go ├── model_af_routing_requirement_rm.go ├── model_af_sig_protocol.go ├── model_affinity_anti_affinity.go ├── model_aggregation_level.go ├── model_alert_limit.go ├── model_allowed_mbs_info.go ├── model_allowed_mtc_provider_info.go ├── model_allowed_nssai.go ├── model_allowed_snssai.go ├── model_alternative_qos_profile.go ├── model_alternative_service_requirements_data.go ├── model_am_event.go ├── model_am_event_data.go ├── model_am_event_notification.go ├── model_am_events_notification.go ├── model_am_events_subsc_data.go ├── model_am_events_subsc_data_rm.go ├── model_am_events_subsc_resp_data.go ├── model_am_influ_data.go ├── model_am_influ_event.go ├── model_am_policy_data.go ├── model_am_requested_value_rep.go ├── model_am_termination_cause.go ├── model_am_termination_info.go ├── model_ambr.go ├── model_ambr_rm.go ├── model_amf3_gpp_access_registration.go ├── model_amf3_gpp_access_registration_modification.go ├── model_amf_communication_ec_restriction_data_wb.go ├── model_amf_communication_ngap_ie_type.go ├── model_amf_communication_release_cause.go ├── model_amf_communication_subscription_data.go ├── model_amf_cond.go ├── model_amf_create_event_subscription.go ├── model_amf_created_event_subscription.go ├── model_amf_dereg_info.go ├── model_amf_event.go ├── model_amf_event_area.go ├── model_amf_event_exposure_traffic_descriptor.go ├── model_amf_event_mode.go ├── model_amf_event_notification.go ├── model_amf_event_report.go ├── model_amf_event_state.go ├── model_amf_event_subs_sync_info.go ├── model_amf_event_subscription.go ├── model_amf_event_subscription_add_info.go ├── model_amf_event_subscription_info.go ├── model_amf_event_trigger.go ├── model_amf_event_type.go ├── model_amf_location_data.go ├── model_amf_location_location_event.go ├── model_amf_location_location_type.go ├── model_amf_mbs_broadcast_context_update_req_data.go ├── model_amf_mbs_broadcast_context_update_rsp_data.go ├── model_amf_mbs_broadcast_n2_mbs_sm_info.go ├── model_amf_mbs_broadcast_ngap_ie_type.go ├── model_amf_mbs_communication_n2_mbs_sm_info.go ├── model_amf_mt_ue_info.go ├── model_amf_non3_gpp_access_registration.go ├── model_amf_non3_gpp_access_registration_modification.go ├── model_amf_status_change_notification.go ├── model_amf_status_info.go ├── model_amf_subscription_info.go ├── model_amf_update_event_option_item.go ├── model_amf_update_event_subscription_item.go ├── model_amf_updated_event_subscription.go ├── model_an_gw_address.go ├── model_an_node_type.go ├── model_analytics_context_identifier.go ├── model_analytics_metadata.go ├── model_analytics_metadata_indication.go ├── model_analytics_metadata_info.go ├── model_analytics_subscription.go ├── model_analytics_subscriptions_transfer.go ├── model_analytics_subset.go ├── model_anchor_smf_features.go ├── model_announcement_information.go ├── model_announcement_privacy_indicator.go ├── model_api_direction.go ├── model_apn_rate_status.go ├── model_app_am_context_data.go ├── model_app_am_context_resp_data.go ├── model_app_am_context_update_data.go ├── model_app_descriptor.go ├── model_app_detection_info.go ├── model_app_detection_notif_type.go ├── model_app_detection_report.go ├── model_app_list_for_ue_comm.go ├── model_app_port_id.go ├── model_app_session_context.go ├── model_app_session_context_req_data.go ├── model_app_session_context_resp_data.go ├── model_app_session_context_update_data.go ├── model_app_session_context_update_data_patch.go ├── model_application_data_change_notif.go ├── model_application_data_subs.go ├── model_application_for_pfd_request.go ├── model_application_server.go ├── model_application_volume.go ├── model_applied_smcc_type.go ├── model_area.go ├── model_area_event_info.go ├── model_area_of_interest_event_state.go ├── model_area_of_validity.go ├── model_area_scope.go ├── model_arp.go ├── model_as_session_with_qo_s_subscription.go ├── model_as_session_with_qo_s_subscription_patch.go ├── model_assign_ebi_data.go ├── model_assign_ebi_error.go ├── model_assign_ebi_failed.go ├── model_assigned_ebi_data.go ├── model_atom.go ├── model_atsss_capability.go ├── model_ausf_info.go ├── model_ausf_so_r_protection_sor_info.go ├── model_ausf_so_r_protection_steering_container.go ├── model_ausf_so_r_protection_steering_info.go ├── model_ausf_ue_authentication_auth_result.go ├── model_ausf_ue_authentication_auth_type.go ├── model_ausf_ue_authentication_rg_auth_ctx.go ├── model_ausf_upu_protection_upu_data.go ├── model_ausf_upu_protection_upu_info.go ├── model_auth_event.go ├── model_auth_method.go ├── model_auth_notification.go ├── model_auth_status.go ├── model_auth_update_info.go ├── model_auth_update_notification.go ├── model_authentication_info.go ├── model_authentication_info_request.go ├── model_authentication_subscription.go ├── model_authentication_vector.go ├── model_authorization_data.go ├── model_authorization_info.go ├── model_authorization_request.go ├── model_authorization_response.go ├── model_authorization_result.go ├── model_authorization_type.go ├── model_authorization_ue_id.go ├── model_authorized_default_qos.go ├── model_authorized_network_slice_info.go ├── model_authorized_nssai_availability_data.go ├── model_authorized_nssai_availability_info.go ├── model_av5_g_he_aka.go ├── model_av5g_aka.go ├── model_av_eap_aka_prime.go ├── model_av_eps_aka.go ├── model_av_ims_gba_eap_aka.go ├── model_av_type.go ├── model_backup_amf_info.go ├── model_base_record.go ├── model_battery_indication.go ├── model_battery_indication_rm.go ├── model_bdt_data.go ├── model_bdt_data_patch.go ├── model_bdt_policy.go ├── model_bdt_policy_data.go ├── model_bdt_policy_data_patch.go ├── model_bdt_policy_status.go ├── model_bdt_req_data.go ├── model_bdt_req_data_patch.go ├── model_binding_level.go ├── model_block.go ├── model_bootstrapping_info.go ├── model_bridge_management_container.go ├── model_bsf_event.go ├── model_bsf_event_notification.go ├── model_bsf_management_ext_problem_details.go ├── model_bsf_management_mbs_ext_problem_details.go ├── model_bsf_notification.go ├── model_bsf_subscription.go ├── model_bsf_subscription_resp.go ├── model_bw_requirement.go ├── model_cache_status.go ├── model_cag_ack_data.go ├── model_cag_data.go ├── model_cag_info.go ├── model_call_reference_info.go ├── model_called_identity_change.go ├── model_cancel_pos_info.go ├── model_cancel_relocate_ue_context_request.go ├── model_candidate_for_replacement.go ├── model_ce_mode_b_ind.go ├── model_cell_global_id.go ├── model_change_item.go ├── model_change_of_supi_pei_association_report.go ├── model_change_type.go ├── model_charging_characteristics_selection_mode.go ├── model_charging_data.go ├── model_charging_info.go ├── model_charging_information.go ├── model_charging_notify_request.go ├── model_charging_notify_response.go ├── model_chf_converged_charging_charging_data_request.go ├── model_chf_converged_charging_charging_data_response.go ├── model_chf_converged_charging_multiple_qf_icontainer.go ├── model_chf_converged_charging_multiple_unit_usage.go ├── model_chf_converged_charging_nf_identification.go ├── model_chf_converged_charging_node_functionality.go ├── model_chf_converged_charging_notification_type.go ├── model_chf_converged_charging_pdu_address.go ├── model_chf_converged_charging_pdu_container_information.go ├── model_chf_converged_charging_pdu_session_charging_information.go ├── model_chf_converged_charging_pdu_session_information.go ├── model_chf_converged_charging_qfi_container_information.go ├── model_chf_converged_charging_qos_monitoring_report.go ├── model_chf_converged_charging_redirect_address_type.go ├── model_chf_converged_charging_result_code.go ├── model_chf_converged_charging_roaming_charging_profile.go ├── model_chf_converged_charging_roaming_qbc_information.go ├── model_chf_converged_charging_serving_network_function_id.go ├── model_chf_converged_charging_trigger.go ├── model_chf_converged_charging_trigger_type.go ├── model_chf_converged_charging_used_unit_container.go ├── model_chf_converged_charging_user_information.go ├── model_chf_info.go ├── model_chf_offline_only_charging_charging_data_request.go ├── model_chf_offline_only_charging_charging_data_response.go ├── model_chf_offline_only_charging_multiple_qf_icontainer.go ├── model_chf_offline_only_charging_multiple_unit_usage.go ├── model_chf_offline_only_charging_nf_identification.go ├── model_chf_offline_only_charging_node_functionality.go ├── model_chf_offline_only_charging_pdu_address.go ├── model_chf_offline_only_charging_pdu_container_information.go ├── model_chf_offline_only_charging_pdu_session_charging_information.go ├── model_chf_offline_only_charging_pdu_session_information.go ├── model_chf_offline_only_charging_qfi_container_information.go ├── model_chf_offline_only_charging_result_code.go ├── model_chf_offline_only_charging_roaming_charging_profile.go ├── model_chf_offline_only_charging_roaming_qbc_information.go ├── model_chf_offline_only_charging_serving_network_function_id.go ├── model_chf_offline_only_charging_trigger.go ├── model_chf_offline_only_charging_trigger_type.go ├── model_chf_offline_only_charging_used_unit_container.go ├── model_chf_offline_only_charging_user_information.go ├── model_chf_spending_limit_control_termination_cause.go ├── model_cipher_request_data.go ├── model_cipher_response_data.go ├── model_ciphering_algorithm.go ├── model_ciphering_data_set.go ├── model_ciphering_key_info.go ├── model_ciphering_key_response.go ├── model_ciphering_set_report.go ├── model_circumstance_description.go ├── model_civic_address.go ├── model_class_criterion.go ├── model_class_identifier.go ├── model_client_id.go ├── model_cm_info.go ├── model_cm_info_report.go ├── model_cm_state.go ├── model_cn_assisted_ran_para.go ├── model_cn_type.go ├── model_cn_type_change_report.go ├── model_cnf.go ├── model_cnf_unit.go ├── model_code_word_ind.go ├── model_collection_period_rmm_lte_mdt.go ├── model_collection_period_rmm_nr_mdt.go ├── model_collective_behaviour_filter.go ├── model_collective_behaviour_filter_type.go ├── model_collective_behaviour_info.go ├── model_collocated_nf_instance.go ├── model_collocated_nf_type.go ├── model_communication_characteristics.go ├── model_communication_characteristics_af.go ├── model_communication_collection.go ├── model_communication_failure.go ├── model_comparison_operator.go ├── model_complex_query.go ├── model_condition_data.go ├── model_condition_event_type.go ├── model_condition_operator.go ├── model_configured_snssai.go ├── model_confirmation_data.go ├── model_confirmation_data_response.go ├── model_congestion_info.go ├── model_connection_capabilities.go ├── model_consumer_nf_information.go ├── model_context_create_req_data.go ├── model_context_create_request.go ├── model_context_create_response_201.go ├── model_context_create_rsp_data.go ├── model_context_data.go ├── model_context_data_set_name.go ├── model_context_data_sets.go ├── model_context_element.go ├── model_context_id_list.go ├── model_context_info.go ├── model_context_status_notification.go ├── model_context_type.go ├── model_context_update_request.go ├── model_context_update_response_200.go ├── model_core_network_service_authorization.go ├── model_core_network_type.go ├── model_coverage_info.go ├── model_create_ue_context_request.go ├── model_create_ue_context_response_201.go ├── model_create_ue_context_response_403.go ├── model_created_ue_reachability_subscription.go ├── model_credit_management_status.go ├── model_cs_location.go ├── model_cs_user_state.go ├── model_csg_information.go ├── model_csrn.go ├── model_data_availability.go ├── model_data_change_notify.go ├── model_data_collection_purpose.go ├── model_data_filter.go ├── model_data_ind.go ├── model_data_notification.go ├── model_data_set_id.go ├── model_data_set_name.go ├── model_data_subscription.go ├── model_datalink_reporting_configuration.go ├── model_dataset_statistical_property.go ├── model_dccf_cond.go ├── model_dccf_data_management_reporting_options.go ├── model_dccf_event.go ├── model_dccf_info.go ├── model_ddd_traffic_descriptor.go ├── model_ddn_failure_sub_info.go ├── model_ddn_failure_subs.go ├── model_deconceal_req_data.go ├── model_deconceal_rsp_data.go ├── model_def_sub_service_info.go ├── model_default_notification_subscription.go ├── model_default_unrelated_class.go ├── model_deliver_add_info.go ├── model_deliver_error.go ├── model_deliver_request.go ├── model_delivery_report_requested.go ├── model_deregistration_data.go ├── model_deregistration_info.go ├── model_deregistration_reason.go ├── model_deregistration_reason_code.go ├── model_detecting_node.go ├── model_determine_location_request.go ├── model_digest_authentication.go ├── model_direct_discovery_model.go ├── model_dispersion_area.go ├── model_dispersion_class.go ├── model_dispersion_info.go ├── model_dispersion_ordering_criterion.go ├── model_dispersion_requirement.go ├── model_dispersion_type.go ├── model_dl_data_delivery_status.go ├── model_dn_perf.go ├── model_dn_perf_info.go ├── model_dn_perf_ordering_criterion.go ├── model_dn_performance_req.go ├── model_dnai_change_type.go ├── model_dnai_information.go ├── model_dnf.go ├── model_dnf_unit.go ├── model_dnn_configuration.go ├── model_dnn_easdf_info_item.go ├── model_dnn_info.go ├── model_dnn_info_item.go ├── model_dnn_mb_smf_info_item.go ├── model_dnn_route_selection_descriptor.go ├── model_dnn_selection_mode.go ├── model_dnn_smf_info_item.go ├── model_dnn_snssai_information.go ├── model_dnn_tsctsf_info_item.go ├── model_dnn_upf_info_item.go ├── model_dns_server_identifier.go ├── model_domain_name_protocol.go ├── model_downlink_data_notification_control.go ├── model_downlink_data_notification_control_rm.go ├── model_dsai_tag_information.go ├── model_dsai_tag_status.go ├── model_dynamic5_qi.go ├── model_dynamic_policy.go ├── model_eap_auth_method_response_200.go ├── model_eap_session.go ├── model_early_media_description.go ├── model_eas_dep_notification.go ├── model_eas_deploy_info_data.go ├── model_eas_deploy_info_notif.go ├── model_eas_deploy_sub_data.go ├── model_eas_deployment_charging_information.go ├── model_eas_event.go ├── model_eas_ip_replacement_info.go ├── model_eas_requirements.go ├── model_eas_server_address.go ├── model_easdf_info.go ├── model_ebi_arp_mapping.go ├── model_ec_restriction.go ├── model_ecgi.go ├── model_ecs_addr_config_info.go ├── model_ecs_server_addr.go ├── model_edge_infrastructure_usage_charging_information.go ├── model_edrx_parameters.go ├── model_ee_group_profile_data.go ├── model_ee_monitoring_revoked.go ├── model_ee_profile_data.go ├── model_ee_subscription.go ├── model_ee_subscription_ext.go ├── model_ellipsoid_arc.go ├── model_emergency_info.go ├── model_enable_group_reachability_req_data.go ├── model_enable_group_reachability_rsp_data.go ├── model_enable_ue_reachability_req_data.go ├── model_enable_ue_reachability_rsp_data.go ├── model_endpoint_address.go ├── model_enhanced_coverage_restriction_data.go ├── model_enhanced_diagnostics5_g.go ├── model_eps_bearer_info.go ├── model_eps_interworking_indication.go ├── model_eps_interworking_info.go ├── model_eps_iwk_pgw.go ├── model_eps_nas_ciphering_algorithm.go ├── model_eps_nas_integrity_algorithm.go ├── model_eps_nas_security_mode.go ├── model_eps_pdn_cnx_info.go ├── model_error_report.go ├── model_eth_flow_description.go ├── model_eth_flow_info.go ├── model_ethernet_flow_info.go ├── model_eutra_location.go ├── model_event.go ├── model_event_class.go ├── model_event_for_mdt.go ├── model_event_id.go ├── model_event_notification.go ├── model_event_param_report.go ├── model_event_report_message.go ├── model_event_report_mode.go ├── model_event_reporting_requirement.go ├── model_event_reporting_status.go ├── model_events_subs.go ├── model_events_subsc_put_data.go ├── model_exception.go ├── model_exception_id.go ├── model_exception_info.go ├── model_exception_trend.go ├── model_exemption_ind.go ├── model_expected_analytics_type.go ├── model_expected_ue_behavior.go ├── model_expected_ue_behaviour.go ├── model_expected_ue_behaviour_data.go ├── model_exposure_data_change_notification.go ├── model_exposure_data_subscription.go ├── model_ext_amf_event_subscription.go ├── model_ext_snssai.go ├── model_extended_sm_subs_data.go ├── model_external_client_type.go ├── model_external_unrelated_class.go ├── model_failure.go ├── model_failure_code.go ├── model_failure_event_info.go ├── model_failure_event_info_for_ml_model.go ├── model_failure_handling.go ├── model_fetch_instruction.go ├── model_final_unit_action.go ├── model_final_unit_indication.go ├── model_fix_type.go ├── model_flow_direction.go ├── model_flow_direction_rm.go ├── model_flow_info.go ├── model_flow_information.go ├── model_flow_status.go ├── model_flow_usage.go ├── model_flows.go ├── model_formatting_instruction.go ├── model_fqdn_pattern_matching_rule.go ├── model_frame_route_info.go ├── model_g_nb_id.go ├── model_gad_shape.go ├── model_gba_auth_type.go ├── model_gba_authentication_info_request.go ├── model_gba_authentication_info_result.go ├── model_geo_loc.go ├── model_geo_service_area.go ├── model_geographic_area.go ├── model_geographical_area.go ├── model_geographical_coordinates.go ├── model_gera_location.go ├── model_global_ran_node_id.go ├── model_gmlc_info.go ├── model_gnss_id.go ├── model_gnss_positioning_method_and_usage.go ├── model_gpsi_type.go ├── model_granted_unit.go ├── model_group_identifiers.go ├── model_guami.go ├── model_guami_list_cond.go ├── model_header_sip_request.go ├── model_hfc_node_id.go ├── model_high_accuracy_gnss_metrics.go ├── model_historical_data.go ├── model_ho_state.go ├── model_horizontal_velocity.go ├── model_horizontal_velocity_with_uncertainty.go ├── model_horizontal_with_vertical_velocity.go ├── model_horizontal_with_vertical_velocity_and_uncertainty.go ├── model_hsmf_update_data.go ├── model_hsmf_update_error.go ├── model_hsmf_updated_data.go ├── model_hss_auth_type.go ├── model_hss_auth_type_in_uri.go ├── model_hss_authentication_info_request.go ├── model_hss_authentication_info_result.go ├── model_hss_authentication_vectors.go ├── model_hss_av_type.go ├── model_hss_info.go ├── model_hss_subscription_info.go ├── model_hss_subscription_item.go ├── model_hssims_sdm_access_type.go ├── model_hssims_sdm_data_set_name.go ├── model_hssims_sdm_shared_data.go ├── model_hssims_uecm_extended_problem_details.go ├── model_id_translation_result.go ├── model_identity_data.go ├── model_identity_range.go ├── model_identity_type.go ├── model_idle_status_indication.go ├── model_ifc.go ├── model_ifcs.go ├── model_imei_sv_information.go ├── model_immediate_mdt_conf.go ├── model_immediate_report.go ├── model_ims_address.go ├── model_ims_associated_identities.go ├── model_ims_charging_information.go ├── model_ims_location_data.go ├── model_ims_node_functionality.go ├── model_ims_profile_data.go ├── model_ims_registration_state.go ├── model_ims_registration_status.go ├── model_ims_registration_type.go ├── model_ims_sdm_subscription.go ├── model_ims_service_profile.go ├── model_ims_session_priority.go ├── model_ims_vo_ps.go ├── model_ims_voice_over_ps_session_support.go ├── model_imsi_range.go ├── model_indirect_data_forwarding_tunnel_info.go ├── model_integrity_algorithm.go ├── model_integrity_requirements.go ├── model_inter_freq_target_info.go ├── model_inter_operator_identifier.go ├── model_interface_type.go ├── model_interface_upf_info_item.go ├── model_internal_group_id_range.go ├── model_invalid_cause.go ├── model_invalid_param.go ├── model_invocation_result.go ├── model_ip_addr.go ├── model_ip_end_point.go ├── model_ip_eth_flow_description.go ├── model_ip_flow_info.go ├── model_ip_multicast_address_info.go ├── model_ip_packet_filter_set.go ├── model_ip_reachability.go ├── model_ip_sm_gw_address.go ├── model_ip_sm_gw_guidance.go ├── model_ip_sm_gw_info.go ├── model_ip_sm_gw_registration.go ├── model_iptv_config_data.go ├── model_iptv_config_data_patch.go ├── model_isup_cause.go ├── model_iwmsc_info.go ├── model_job_type.go ├── model_key_amf.go ├── model_key_amf_type.go ├── model_key_type.go ├── model_ladn_info.go ├── model_lcs_broadcast_assistance_types_data.go ├── model_lcs_client_class.go ├── model_lcs_client_external.go ├── model_lcs_client_group_external.go ├── model_lcs_mo_data.go ├── model_lcs_mo_service_class.go ├── model_lcs_priority.go ├── model_lcs_privacy.go ├── model_lcs_privacy_data.go ├── model_lcs_qos_class.go ├── model_lcs_service_auth.go ├── model_ldr_type.go ├── model_limit_id_to_monitoring_key.go ├── model_line_type.go ├── model_link.go ├── model_lmf_info.go ├── model_lmf_location_cancel_loc_data.go ├── model_lmf_location_event_notify_data.go ├── model_lmf_location_geographical_coordinates.go ├── model_lmf_location_input_data.go ├── model_lmf_location_location_data.go ├── model_lmf_location_termination_cause.go ├── model_loc_context_data.go ├── model_local2d_point_uncertainty_ellipse.go ├── model_local3d_point_uncertainty_ellipsoid.go ├── model_local_area.go ├── model_local_origin.go ├── model_location_area.go ├── model_location_area5_g.go ├── model_location_area_id.go ├── model_location_filter.go ├── model_location_info.go ├── model_location_info_request.go ├── model_location_info_result.go ├── model_location_privacy_ind.go ├── model_location_privacy_ver_result.go ├── model_location_qo_s.go ├── model_location_report.go ├── model_location_reporting_charging_information.go ├── model_logging_duration_mdt.go ├── model_logging_duration_nr_mdt.go ├── model_logging_interval_mdt.go ├── model_logging_interval_nr_mdt.go ├── model_loose_route_indication.go ├── model_loss_connectivity_cfg.go ├── model_loss_connectivity_report.go ├── model_loss_of_connectivity_reason.go ├── model_lpi.go ├── model_lte_m_ind.go ├── model_lte_v2x_auth.go ├── model_m5_qo_s_specification.go ├── model_ma_pdu_indication.go ├── model_ma_release_indication.go ├── model_management_operation.go ├── model_management_operation_status.go ├── model_mapdu_session_information.go ├── model_mapping_of_snssai.go ├── model_matching_direction.go ├── model_matching_operator.go ├── model_max_integrity_protected_data_rate.go ├── model_mb_smf_info.go ├── model_mb_upf_info.go ├── model_mbs_app_session_ctxt.go ├── model_mbs_app_session_ctxt_patch.go ├── model_mbs_error_report.go ├── model_mbs_failure_code.go ├── model_mbs_media_comp.go ├── model_mbs_media_comp_rm.go ├── model_mbs_media_info.go ├── model_mbs_n2_message_transfer_req_data.go ├── model_mbs_n2_message_transfer_rsp_data.go ├── model_mbs_ngap_ie_type.go ├── model_mbs_pcc_rule.go ├── model_mbs_pcc_rule_status.go ├── model_mbs_pcrt.go ├── model_mbs_policy_ctxt_data.go ├── model_mbs_policy_ctxt_data_update.go ├── model_mbs_policy_data.go ├── model_mbs_policy_decision.go ├── model_mbs_qo_s_req.go ├── model_mbs_qos_char.go ├── model_mbs_qos_dec.go ├── model_mbs_report.go ├── model_mbs_service_area.go ├── model_mbs_service_area_info.go ├── model_mbs_service_info.go ├── model_mbs_session_id.go ├── model_mbs_subscription_data.go ├── model_mbsfn_area.go ├── model_mdt_configuration.go ├── model_mdt_user_consent.go ├── model_measurement_lte_for_mdt.go ├── model_measurement_nr_for_mdt.go ├── model_measurement_period_lte_mdt.go ├── model_media_component.go ├── model_media_component_resources_status.go ├── model_media_component_rm.go ├── model_media_initiator_flag.go ├── model_media_streaming_access_record.go ├── model_media_sub_component.go ├── model_media_sub_component_rm.go ├── model_media_type.go ├── model_message_body.go ├── model_message_class.go ├── model_message_waiting_data.go ├── model_meta_schema.go ├── model_metering_method.go ├── model_mfaf_info.go ├── model_mico_mode_indication.go ├── model_minor_location_qo_s.go ├── model_ml_analytics_info.go ├── model_ml_event_notif.go ├── model_ml_event_subscription.go ├── model_ml_model_addr.go ├── model_ml_model_info.go ├── model_mm_context.go ├── model_mm_tel_charging_information.go ├── model_mm_transaction_location_report_item.go ├── model_mm_transaction_slice_report_item.go ├── model_mme_capabilities.go ├── model_mme_location_data.go ├── model_mnpf_info.go ├── model_mo_exp_data_counter.go ├── model_model_info.go ├── model_modification_notification.go ├── model_modify_pdu_session_request.go ├── model_modify_pdu_session_response_200.go ├── model_modify_pdu_session_response_400.go ├── model_modify_response_200.go ├── model_modify_shared_data_subs_response_200.go ├── model_modify_subscription_request.go ├── model_modifysubscription_data_subscription_response_200.go ├── model_monitoring_event.go ├── model_motion_event_info.go ├── model_mps_action.go ├── model_ms_access_activity_collection.go ├── model_ms_consumption_collection.go ├── model_ms_dyn_policy_invocation_collection.go ├── model_ms_net_ass_invocation_collection.go ├── model_ms_qoe_metrics_collection.go ├── model_msisdn_list.go ├── model_mtc_provider.go ├── model_multicast_access_control.go ├── model_multicast_mbs_group_memb.go ├── model_multiple_unit_information.go ├── model_n1_message_class.go ├── model_n1_message_container.go ├── model_n1_message_notification.go ├── model_n1_message_notify_request.go ├── model_n1_n2_message_transfer_cause.go ├── model_n1_n2_message_transfer_error.go ├── model_n1_n2_message_transfer_req_data.go ├── model_n1_n2_message_transfer_request.go ├── model_n1_n2_message_transfer_rsp_data.go ├── model_n1_n2_msg_txfr_err_detail.go ├── model_n1_n2_msg_txfr_failure_notification.go ├── model_n2_connection_charging_information.go ├── model_n2_info_container.go ├── model_n2_info_content.go ├── model_n2_info_notification_rsp_data.go ├── model_n2_info_notify_handover_complete_response_200.go ├── model_n2_info_notify_reason.go ├── model_n2_info_notify_request.go ├── model_n2_information_class.go ├── model_n2_information_notification.go ├── model_n2_information_transfer_error.go ├── model_n2_information_transfer_req_data.go ├── model_n2_information_transfer_result.go ├── model_n2_information_transfer_rsp_data.go ├── model_n2_interface_amf_info.go ├── model_n2_message_transfer_request.go ├── model_n2_ran_information.go ├── model_n2_sm_info_type.go ├── model_n2_sm_information.go ├── model_n3ga_location.go ├── model_n4_information.go ├── model_n4_message_type.go ├── model_nas_security_mode.go ├── model_ncgi.go ├── model_ncgi_tai.go ├── model_nef_authentication_auth_container.go ├── model_nef_authentication_auth_result.go ├── model_nef_authentication_uav_auth_info.go ├── model_nef_authentication_uav_auth_response.go ├── model_nef_charging_information.go ├── model_nef_cond.go ├── model_nef_event.go ├── model_nef_event_exposure_notif.go ├── model_nef_event_exposure_service_experience_info.go ├── model_nef_event_exposure_subsc.go ├── model_nef_event_exposure_target_ue_identification.go ├── model_nef_event_filter.go ├── model_nef_event_notification.go ├── model_nef_event_subs.go ├── model_nef_info.go ├── model_nef_sm_context_deliver_req_data.go ├── model_nef_sm_context_nidd_information.go ├── model_nef_sm_context_release_cause.go ├── model_nef_sm_context_sm_context_create_data.go ├── model_nef_sm_context_sm_context_created_data.go ├── model_nef_sm_context_sm_context_release_data.go ├── model_nef_sm_context_sm_context_status_notification.go ├── model_nef_sm_context_sm_context_update_data.go ├── model_nef_traffic_influ_sub.go ├── model_nef_traffic_influ_sub_patch.go ├── model_net_loc_access_support.go ├── model_network_area_info.go ├── model_network_assistance_session.go ├── model_network_node_diameter_address.go ├── model_network_perf_info.go ├── model_network_perf_requirement.go ├── model_network_perf_type.go ├── model_network_slice_cond.go ├── model_network_slicing_info.go ├── model_nf_group_cond.go ├── model_nf_group_list_cond.go ├── model_nf_identifier.go ├── model_nf_info.go ├── model_nf_instance_id_cond.go ├── model_nf_instance_id_list_cond.go ├── model_nf_instance_info.go ├── model_nf_load_level_information.go ├── model_nf_service_instance.go ├── model_nf_service_set_cond.go ├── model_nf_service_status.go ├── model_nf_service_version.go ├── model_nf_set_cond.go ├── model_nf_type.go ├── model_nf_type_cond.go ├── model_ng_ap_cause.go ├── model_ng_ksi.go ├── model_ng_ran_target_id.go ├── model_ngran_failure_event.go ├── model_ngran_failure_indication.go ├── model_nidd_auth_update_info.go ├── model_nidd_auth_update_notification.go ├── model_nidd_authorization_info.go ├── model_nidd_cause.go ├── model_nni_information.go ├── model_nni_relationship_mode.go ├── model_nni_session_direction.go ├── model_nni_type.go ├── model_nnwdaf_data_management_notif.go ├── model_nnwdaf_data_management_subsc.go ├── model_nnwdaf_events_subscription.go ├── model_nnwdaf_events_subscription_notification.go ├── model_no_profile_match_info.go ├── model_no_profile_match_reason.go ├── model_node_type.go ├── model_non_dynamic5_qi.go ├── model_non_ue_n2_info_notify_request.go ├── model_non_ue_n2_info_subscription_create_data.go ├── model_non_ue_n2_info_subscription_created_data.go ├── model_non_ue_n2_message_transfer_request.go ├── model_notif_condition.go ├── model_notif_summary_report.go ├── model_notif_type.go ├── model_notification_cause.go ├── model_notification_control.go ├── model_notification_control_indication.go ├── model_notification_description.go ├── model_notification_event_type.go ├── model_notification_flag.go ├── model_notification_item.go ├── model_notification_push.go ├── model_notification_subscription.go ├── model_notified_pos_info.go ├── model_notify_item.go ├── model_npn_access_info.go ├── model_nr_location.go ├── model_nr_v2x_auth.go ├── model_nrf_access_token_access_token_claims.go ├── model_nrf_access_token_access_token_req.go ├── model_nrf_access_token_access_token_rsp.go ├── model_nrf_info.go ├── model_nrf_nf_discovery_nf_profile.go ├── model_nrf_nf_discovery_nf_service.go ├── model_nrf_nf_management_amf_info.go ├── model_nrf_nf_management_bsf_info.go ├── model_nrf_nf_management_ipv4_address_range.go ├── model_nrf_nf_management_ipv6_prefix_range.go ├── model_nrf_nf_management_mbs_session.go ├── model_nrf_nf_management_nf_profile.go ├── model_nrf_nf_management_nf_service.go ├── model_nrf_nf_management_nf_status.go ├── model_nrf_nf_management_nf_type.go ├── model_nrf_nf_management_notification_data.go ├── model_nrf_nf_management_notification_type.go ├── model_nrf_nf_management_pfd_data.go ├── model_nrf_nf_management_pro_se_capability.go ├── model_nrf_nf_management_subscription_data.go ├── model_nrf_nf_management_transport_protocol.go ├── model_nrppa_information.go ├── model_nsacf_capability.go ├── model_nsacf_info.go ├── model_nsag_info.go ├── model_nsi_id_info.go ├── model_nsi_information.go ├── model_nsi_load_level_info.go ├── model_nsm_charging_information.go ├── model_nsmf_event_exposure.go ├── model_nsmf_event_exposure_notification.go ├── model_nspa_charging_information.go ├── model_nspa_container_information.go ├── model_nssaa_status.go ├── model_nssaaf_info.go ├── model_nssai.go ├── model_nssai_ack_data.go ├── model_nssai_availability_info.go ├── model_nssai_map.go ├── model_nssai_mapping.go ├── model_nssf_event_notification.go ├── model_nssf_event_subscription_create_data.go ├── model_nssf_event_subscription_created_data.go ├── model_nssf_event_type.go ├── model_null_request.go ├── model_number_average.go ├── model_nwdaf_analytics_info_analytics_data.go ├── model_nwdaf_analytics_info_event_filter.go ├── model_nwdaf_capability.go ├── model_nwdaf_cond.go ├── model_nwdaf_data.go ├── model_nwdaf_event.go ├── model_nwdaf_events_subscription_accuracy.go ├── model_nwdaf_events_subscription_congestion_type.go ├── model_nwdaf_events_subscription_dispersion_collection.go ├── model_nwdaf_events_subscription_event_notification.go ├── model_nwdaf_events_subscription_event_subscription.go ├── model_nwdaf_events_subscription_location_info.go ├── model_nwdaf_events_subscription_nf_status.go ├── model_nwdaf_events_subscription_notification_method.go ├── model_nwdaf_events_subscription_service_experience_info.go ├── model_nwdaf_failure_code.go ├── model_nwdaf_info.go ├── model_nwdaf_ml_model_prov_notif.go ├── model_nwdaf_ml_model_prov_subsc.go ├── model_nwdaf_ml_model_provision_failure_code.go ├── model_nwdaf_registration.go ├── model_nwdaf_registration_info.go ├── model_nwdaf_registration_modification.go ├── model_nwdaf_subscription.go ├── model_observed_redundant_trans_exp.go ├── model_occurrence_info.go ├── model_odb_data.go ├── model_odb_packet_services.go ├── model_one_time_event_type.go ├── model_op_event_type.go ├── model_operation_event.go ├── model_operation_mode.go ├── model_operation_status.go ├── model_operational_state.go ├── model_operator_specific_data_container.go ├── model_options_response.go ├── model_originator_info.go ├── model_originator_party_type.go ├── model_out_of_credit_information.go ├── model_output_strategy.go ├── model_packet_filter_info.go ├── model_parameter_combination.go ├── model_parameter_processing_instruction.go ├── model_partial_record_method.go ├── model_partial_success_report.go ├── model_participant_action_type.go ├── model_partitioning_criteria.go ├── model_patch_bdt_policy.go ├── model_patch_item.go ├── model_patch_operation.go ├── model_patch_result.go ├── model_pc5_capability.go ├── model_pc5_container_information.go ├── model_pc5_data_container.go ├── model_pc5_flow_bit_rates.go ├── model_pc5_qo_s_para.go ├── model_pc5_qos_flow_item.go ├── model_pc_event.go ├── model_pc_event_exposure_notif.go ├── model_pc_event_exposure_subsc.go ├── model_pc_event_notification.go ├── model_pcc_rule.go ├── model_pcf_addressing_info.go ├── model_pcf_am_policy_control_as_time_distribution_param.go ├── model_pcf_am_policy_control_policy_association.go ├── model_pcf_am_policy_control_policy_association_request.go ├── model_pcf_am_policy_control_policy_association_update_request.go ├── model_pcf_am_policy_control_policy_update.go ├── model_pcf_am_policy_control_request_trigger.go ├── model_pcf_am_policy_control_termination_notification.go ├── model_pcf_bdt_policy_control_bdt_policy_data.go ├── model_pcf_bdt_policy_control_bdt_policy_data_patch.go ├── model_pcf_bdt_policy_control_notification.go ├── model_pcf_bdt_policy_control_transfer_policy.go ├── model_pcf_binding.go ├── model_pcf_binding_patch.go ├── model_pcf_event_exposure_pdu_session_information.go ├── model_pcf_for_pdu_session_info.go ├── model_pcf_for_ue_binding.go ├── model_pcf_for_ue_binding_patch.go ├── model_pcf_for_ue_info.go ├── model_pcf_info.go ├── model_pcf_mbs_binding.go ├── model_pcf_mbs_binding_patch.go ├── model_pcf_mbs_policy_authorization_mbs_ext_problem_details.go ├── model_pcf_policy_authorization_af_event.go ├── model_pcf_policy_authorization_af_event_notification.go ├── model_pcf_policy_authorization_events_notification.go ├── model_pcf_policy_authorization_events_subsc_req_data.go ├── model_pcf_policy_authorization_events_subsc_req_data_rm.go ├── model_pcf_policy_authorization_extended_problem_details.go ├── model_pcf_policy_authorization_pdu_session_status.go ├── model_pcf_policy_authorization_qos_monitoring_information.go ├── model_pcf_policy_authorization_qos_monitoring_information_rm.go ├── model_pcf_policy_authorization_qos_monitoring_report.go ├── model_pcf_policy_authorization_qos_notification_control_info.go ├── model_pcf_policy_authorization_termination_cause.go ├── model_pcf_selection_assistance_info.go ├── model_pcf_sm_policy_control_atsss_capability.go ├── model_pcf_sm_policy_control_failure_cause.go ├── model_pcf_sm_policy_control_failure_code.go ├── model_pcf_sm_policy_control_multicast_access_control.go ├── model_pcf_sm_policy_control_qos_monitoring_report.go ├── model_pcf_sm_policy_control_qos_notification_control_info.go ├── model_pcf_sm_policy_control_redirect_address_type.go ├── model_pcf_sm_policy_control_termination_notification.go ├── model_pcf_ue_callback_info.go ├── model_pcf_ue_policy_control_policy_association.go ├── model_pcf_ue_policy_control_policy_association_request.go ├── model_pcf_ue_policy_control_policy_association_update_request.go ├── model_pcf_ue_policy_control_policy_update.go ├── model_pcf_ue_policy_control_pro_se_capability.go ├── model_pcf_ue_policy_control_request_trigger.go ├── model_pcf_ue_policy_control_termination_notification.go ├── model_pcscf_address.go ├── model_pcscf_info.go ├── model_pcscf_restoration_notification.go ├── model_pcscf_restoration_request_data.go ├── model_pcscf_subscription_info.go ├── model_pdn_connectivity_stat_report.go ├── model_pdn_connectivity_status.go ├── model_pdu_session.go ├── model_pdu_session_context.go ├── model_pdu_session_context_type.go ├── model_pdu_session_continuity_ind.go ├── model_pdu_session_create_data.go ├── model_pdu_session_create_error.go ├── model_pdu_session_created_data.go ├── model_pdu_session_event_notification.go ├── model_pdu_session_info.go ├── model_pdu_session_management_data.go ├── model_pdu_session_notify_item.go ├── model_pdu_session_rel_cause.go ├── model_pdu_session_status.go ├── model_pdu_session_tsn_bridge.go ├── model_pdu_session_type.go ├── model_pdu_session_types.go ├── model_pduid_information.go ├── model_pei_update_info.go ├── model_pending_policy_counter_status.go ├── model_per_ue_attribute.go ├── model_perf_data.go ├── model_performance_data.go ├── model_performance_data_collection.go ├── model_performance_data_info.go ├── model_periodic_communication_indicator.go ├── model_periodic_event_info.go ├── model_periodicity.go ├── model_pfd.go ├── model_pfd_change_notification.go ├── model_pfd_change_report.go ├── model_pfd_content.go ├── model_pfd_data.go ├── model_pfd_data_for_app.go ├── model_pfd_data_for_app_ext.go ├── model_pfd_management.go ├── model_pfd_management_patch.go ├── model_pfd_operation.go ├── model_pfd_report.go ├── model_pfd_subscription.go ├── model_pfi_container_information.go ├── model_pgw_info.go ├── model_play_to_party.go ├── model_plmn_ec_info.go ├── model_plmn_id.go ├── model_plmn_id_nid.go ├── model_plmn_oauth2.go ├── model_plmn_operator_class.go ├── model_plmn_range.go ├── model_plmn_restriction.go ├── model_plmn_route_selection_descriptor.go ├── model_plmn_snssai.go ├── model_point.go ├── model_point_altitude.go ├── model_point_altitude_uncertainty.go ├── model_point_uncertainty_circle.go ├── model_point_uncertainty_ellipse.go ├── model_policy_association_release_cause.go ├── model_policy_control_request_trigger.go ├── model_policy_counter_info.go ├── model_policy_data_change_notification.go ├── model_policy_data_for_individual_ue.go ├── model_policy_data_subscription.go ├── model_policy_data_subset.go ├── model_policy_decision_failure_code.go ├── model_policy_req_trigger.go ├── model_polygon.go ├── model_port_management_container.go ├── model_positioning_method.go ├── model_positioning_method_and_usage.go ├── model_positioning_method_mdt.go ├── model_positioning_mode.go ├── model_post_charging_data_response_400.go ├── model_post_charging_data_response_403.go ├── model_post_charging_data_response_404.go ├── model_post_charging_notification_response_400.go ├── model_post_pdu_sessions_request.go ├── model_post_pdu_sessions_response_201.go ├── model_post_pdu_sessions_response_400.go ├── model_post_sm_contexts_request.go ├── model_post_sm_contexts_response_201.go ├── model_post_sm_contexts_response_400.go ├── model_pp5g_mbs_group_profile_data.go ├── model_pp5g_vn_group_profile_data.go ├── model_pp_active_time.go ├── model_pp_data.go ├── model_pp_data_entry.go ├── model_pp_data_entry_list.go ├── model_pp_dl_packet_count_ext.go ├── model_pp_maximum_latency.go ├── model_pp_maximum_response_time.go ├── model_pp_profile_data.go ├── model_pp_subs_reg_timer.go ├── model_preemption_capability.go ├── model_preemption_capability_rm.go ├── model_preemption_control_information.go ├── model_preemption_control_information_rm.go ├── model_preemption_vulnerability.go ├── model_preemption_vulnerability_rm.go ├── model_preferred_search.go ├── model_presence_info.go ├── model_presence_info_rm.go ├── model_presence_state.go ├── model_prev_sub_info.go ├── model_priority_levels.go ├── model_priority_sharing_indicator.go ├── model_privacy_check_related_action.go ├── model_private_identities.go ├── model_private_identity.go ├── model_private_identity_type.go ├── model_pro_se_allowed_plmn.go ├── model_pro_se_auth_data.go ├── model_pro_se_authentication_ctx.go ├── model_pro_se_authentication_info.go ├── model_pro_se_authentication_info_request.go ├── model_pro_se_authentication_info_result.go ├── model_pro_se_authentication_result.go ├── model_pro_se_authentication_vectors.go ├── model_pro_se_eap_session.go ├── model_pro_se_information.go ├── model_problem_details.go ├── model_problem_details_add_info.go ├── model_problem_details_analytics_info_request.go ├── model_problem_details_enable_ue_reachability.go ├── model_processing_instruction.go ├── model_prose_auth_response_200.go ├── model_prose_charging_information.go ├── model_prose_context.go ├── model_prose_direct_allowed.go ├── model_prose_event_type.go ├── model_prose_functionality.go ├── model_prose_service_auth.go ├── model_prose_subscription_data.go ├── model_protection_result.go ├── model_provide_loc_info.go ├── model_provide_pos_info.go ├── model_provisioned_data_sets.go ├── model_ps_cell_information.go ├── model_ps_location.go ├── model_ps_user_state.go ├── model_psa_indication.go ├── model_psa_information.go ├── model_psi_activation_state.go ├── model_ptw_parameters.go ├── model_public_identifier.go ├── model_public_identities.go ├── model_public_identity.go ├── model_pws_error_data.go ├── model_pws_information.go ├── model_pws_response_data.go ├── model_qos_characteristics.go ├── model_qos_data.go ├── model_qos_flow_access_type.go ├── model_qos_flow_item.go ├── model_qos_flow_notify_item.go ├── model_qos_flow_release_request_item.go ├── model_qos_flow_setup_item.go ├── model_qos_flow_tunnel.go ├── model_qos_flow_usage.go ├── model_qos_flow_usage_report.go ├── model_qos_flows_usage_report.go ├── model_qos_monitoring_data.go ├── model_qos_monitoring_info.go ├── model_qos_monitoring_information.go ├── model_qos_monitoring_information_rm.go ├── model_qos_monitoring_report.go ├── model_qos_monitoring_req.go ├── model_qos_notif_type.go ├── model_qos_requirement.go ├── model_qos_resource_type.go ├── model_qos_sustainability_info.go ├── model_query_param_combination.go ├── model_query_parameter.go ├── model_quota_consumption_indicator.go ├── model_quota_management_indicator.go ├── model_radio_parameter_set_info.go ├── model_radio_resources_id.go ├── model_ran_nas_rel_cause.go ├── model_ran_secondary_rat_usage_report.go ├── model_range_class.go ├── model_ranking_criterion.go ├── model_rat_freq_information.go ├── model_rat_selector.go ├── model_rat_type.go ├── model_reachability_filter.go ├── model_reachability_for_data_report_config.go ├── model_reachability_for_sms_configuration.go ├── model_reachability_notification_data.go ├── model_reachability_report.go ├── model_reachable_ue_info.go ├── model_reauthorization_details.go ├── model_recipient_address.go ├── model_recipient_info.go ├── model_record.go ├── model_record_id_list.go ├── model_record_meta.go ├── model_record_notification.go ├── model_record_operation.go ├── model_record_search_result.go ├── model_red_trans_exp_ordering_criterion.go ├── model_redirect_information.go ├── model_redirect_response.go ├── model_redirect_server.go ├── model_redundant_pdu_session_information.go ├── model_redundant_transmission_exp_info.go ├── model_redundant_transmission_exp_per_ts.go ├── model_redundant_transmission_exp_req.go ├── model_redundant_transmission_type.go ├── model_ref_to_binary_data.go ├── model_reference_location_information.go ├── model_reflective_qo_s_attribute.go ├── model_registration_charging_information.go ├── model_registration_context_container.go ├── model_registration_data_set_name.go ├── model_registration_data_sets.go ├── model_registration_location_info.go ├── model_registration_message_type.go ├── model_registration_reason.go ├── model_registration_type.go ├── model_relative_cartesian_location.go ├── model_release_charging_data_response_404.go ├── model_release_data.go ├── model_release_pdu_session_request.go ├── model_release_pdu_session_response_200.go ├── model_release_session_info.go ├── model_release_sm_context_request.go ├── model_released_data.go ├── model_relocate_ue_context_request.go ├── model_reply_path_requested.go ├── model_report.go ├── model_report_amount_mdt.go ├── model_report_interval_mdt.go ├── model_report_interval_nr_mdt.go ├── model_report_item.go ├── model_report_type_mdt.go ├── model_reported_event_type.go ├── model_reporting_access_type.go ├── model_reporting_area.go ├── model_reporting_area_type.go ├── model_reporting_frequency.go ├── model_reporting_information.go ├── model_reporting_level.go ├── model_reporting_trigger.go ├── model_repository_data.go ├── model_repository_data_list.go ├── model_request_direction.go ├── model_request_indication.go ├── model_request_loc_info.go ├── model_request_pos_info.go ├── model_request_type.go ├── model_requested_context.go ├── model_requested_node.go ├── model_requested_qos.go ├── model_requested_qos_monitoring_parameter.go ├── model_requested_rule_data.go ├── model_requested_rule_data_type.go ├── model_requested_unit.go ├── model_requested_usage_data.go ├── model_required_access_info.go ├── model_reserv_priority.go ├── model_resource_item.go ├── model_resource_status.go ├── model_resource_usage.go ├── model_resources_allocation_info.go ├── model_response_time.go ├── model_restoration_info.go ├── model_restricted_snssai.go ├── model_restriction_type.go ├── model_resynchronization_info.go ├── model_retainability_threshold.go ├── model_retrieve_data.go ├── model_retrieve_records.go ├── model_retrieved_data.go ├── model_revoked_cause.go ├── model_rg_auth_ctx.go ├── model_rg_authentication_info.go ├── model_rm_info.go ├── model_rm_state.go ├── model_roamer_in_out.go ├── model_roaming_indication.go ├── model_roaming_info_update.go ├── model_roaming_odb.go ├── model_roaming_restrictions.go ├── model_roaming_status_report.go ├── model_role_of_ims_node.go ├── model_role_of_ue.go ├── model_route_information.go ├── model_route_selection_parameter_set.go ├── model_route_to_location.go ├── model_routing_area_id.go ├── model_routing_info_sm_request.go ├── model_routing_info_sm_response.go ├── model_rsn.go ├── model_rule_operation.go ├── model_rule_report.go ├── model_rule_status.go ├── model_sac_event.go ├── model_sac_event_report.go ├── model_sac_event_report_item.go ├── model_sac_event_state.go ├── model_sac_event_status.go ├── model_sac_event_subscription.go ├── model_sac_event_trigger.go ├── model_sac_event_type.go ├── model_sac_info.go ├── model_satellite_backhaul_category.go ├── model_sbi_binding_level.go ├── model_sc_type.go ├── model_scheduled_communication_time.go ├── model_scheduled_communication_time_rm.go ├── model_scheduled_communication_type.go ├── model_scheduled_communication_type_rm.go ├── model_scp_capability.go ├── model_scp_domain_cond.go ├── model_scp_domain_connectivity.go ├── model_scp_domain_info.go ├── model_scp_domain_routing_info_notification.go ├── model_scp_domain_routing_info_subscription.go ├── model_scp_domain_routing_information.go ├── model_scp_info.go ├── model_scscf_capability_list.go ├── model_scscf_registration.go ├── model_scscf_restoration_info.go ├── model_scscf_restoration_info_request.go ├── model_scscf_restoration_info_response.go ├── model_scscf_selection_assistance_information.go ├── model_sd_range.go ├── model_sdm_data_set_name.go ├── model_sdm_subs_modification.go ├── model_sdm_subscription.go ├── model_sdp_description.go ├── model_sdp_media_component.go ├── model_sdp_time_stamps.go ├── model_sdp_type.go ├── model_seaf_data.go ├── model_search_comparison.go ├── model_search_condition.go ├── model_search_expression.go ├── model_search_result.go ├── model_secondary_rat_usage_info.go ├── model_secondary_rat_usage_report.go ├── model_security_result.go ├── model_send_mo_data_req_data.go ├── model_send_mo_data_request.go ├── model_send_sms_request.go ├── model_send_sms_response_200.go ├── model_sensor_measurement.go ├── model_sepp_info.go ├── model_sequence_number.go ├── model_serv_auth_info.go ├── model_server_addressing_info.go ├── model_server_capabilities.go ├── model_service_area_coverage_info.go ├── model_service_area_id.go ├── model_service_area_restriction.go ├── model_service_data_flow_description.go ├── model_service_experience_info_per_app.go ├── model_service_experience_info_per_flow.go ├── model_service_experience_type.go ├── model_service_identification.go ├── model_service_info_status.go ├── model_service_information.go ├── model_service_level_trace_information.go ├── model_service_name.go ├── model_service_name_cond.go ├── model_service_name_list_cond.go ├── model_service_parameter_data.go ├── model_service_parameter_data_patch.go ├── model_service_profile_charging_information.go ├── model_service_specific_authorization_data.go ├── model_service_specific_authorization_info.go ├── model_service_specific_authorization_remove_data.go ├── model_service_type.go ├── model_service_type_unrelated_class.go ├── model_serving_location.go ├── model_serving_nf_identity.go ├── model_serving_node_address.go ├── model_sess_inact_timer_for_ue_comm.go ├── model_session_failover.go ├── model_session_management_subscription_data.go ├── model_session_rule.go ├── model_session_rule_failure_code.go ├── model_session_rule_report.go ├── model_sgsn_address.go ├── model_sgsn_location_data.go ├── model_shared_data_id_range.go ├── model_shared_data_treatment_instruction.go ├── model_sharing_level.go ├── model_sign.go ├── model_sip_authentication_info_request.go ├── model_sip_authentication_info_result.go ├── model_sip_authentication_scheme.go ├── model_sip_digest_algorithm.go ├── model_sip_digest_qop.go ├── model_sip_event_type.go ├── model_sip_forking_indication.go ├── model_slice_info_for_pdu_session.go ├── model_slice_info_for_registration.go ├── model_slice_info_for_ue_configuration_update.go ├── model_slice_load_level_information.go ├── model_slice_mbr.go ├── model_slice_mbr_rm.go ├── model_slice_policy_data.go ├── model_sm_address_domain.go ├── model_sm_address_info.go ├── model_sm_address_type.go ├── model_sm_addressee_type.go ├── model_sm_context.go ├── model_sm_context_configuration.go ├── model_sm_context_create_error.go ├── model_sm_context_released_data.go ├── model_sm_context_retrieve_data.go ├── model_sm_context_retrieved_data.go ├── model_sm_context_status.go ├── model_sm_context_type.go ├── model_sm_context_update_error.go ├── model_sm_context_updated_data.go ├── model_sm_delivery_status.go ├── model_sm_interface.go ├── model_sm_message_type.go ├── model_sm_nas_from_smf.go ├── model_sm_nas_from_ue.go ├── model_sm_policy_association_release_cause.go ├── model_sm_policy_context_data.go ├── model_sm_policy_control.go ├── model_sm_policy_data.go ├── model_sm_policy_data_patch.go ├── model_sm_policy_decision.go ├── model_sm_policy_delete_data.go ├── model_sm_policy_dnn_data.go ├── model_sm_policy_dnn_data_patch.go ├── model_sm_policy_notification.go ├── model_sm_policy_snssai_data.go ├── model_sm_policy_snssai_data_patch.go ├── model_sm_policy_update_context_data.go ├── model_sm_policy_update_notification_response_200.go ├── model_sm_priority.go ├── model_sm_service_type.go ├── model_sm_subs_data.go ├── model_small_data_rate_control.go ├── model_small_data_rate_control_time_unit.go ├── model_small_data_rate_status.go ├── model_small_data_rate_status_info.go ├── model_smcce_info.go ├── model_smcce_ue_list.go ├── model_smf_change_indication.go ├── model_smf_change_info.go ├── model_smf_event.go ├── model_smf_event_exposure_event_notification.go ├── model_smf_event_exposure_event_subscription.go ├── model_smf_event_exposure_notification_method.go ├── model_smf_event_exposure_pdu_session_info.go ├── model_smf_event_exposure_pdu_session_information.go ├── model_smf_event_exposure_pdu_session_status.go ├── model_smf_info.go ├── model_smf_nidd_deliver_req_data.go ├── model_smf_pdu_session_cause.go ├── model_smf_pdu_session_dnai_information.go ├── model_smf_pdu_session_ext_problem_details.go ├── model_smf_pdu_session_gbr_qos_flow_information.go ├── model_smf_pdu_session_ip_address.go ├── model_smf_pdu_session_notification_info.go ├── model_smf_pdu_session_qos_flow_add_modify_request_item.go ├── model_smf_pdu_session_qos_flow_profile.go ├── model_smf_pdu_session_sm_context_create_data.go ├── model_smf_pdu_session_sm_context_created_data.go ├── model_smf_pdu_session_sm_context_release_data.go ├── model_smf_pdu_session_sm_context_status_notification.go ├── model_smf_pdu_session_sm_context_update_data.go ├── model_smf_registration.go ├── model_smf_registration_info.go ├── model_smf_registration_modification.go ├── model_smf_selection_data.go ├── model_smf_selection_subscription_data.go ├── model_smf_selection_type.go ├── model_smf_subscription_info.go ├── model_smf_subscription_item.go ├── model_sms_charging_information.go ├── model_sms_data.go ├── model_sms_delivery_data.go ├── model_sms_indication.go ├── model_sms_management_subscription_data.go ├── model_sms_registration_info.go ├── model_sms_router_info.go ├── model_sms_subscription_data.go ├── model_sms_support.go ├── model_smsc_data.go ├── model_smsf_info.go ├── model_smsf_registration.go ├── model_snssai.go ├── model_snssai_dnn_combination.go ├── model_snssai_dnn_pair.go ├── model_snssai_easdf_info_item.go ├── model_snssai_extension.go ├── model_snssai_info.go ├── model_snssai_info_item.go ├── model_snssai_mb_smf_info_item.go ├── model_snssai_route_selection_descriptor.go ├── model_snssai_smf_info_item.go ├── model_snssai_tai_mapping.go ├── model_snssai_tsctsf_info_item.go ├── model_snssai_upf_info_item.go ├── model_software_image_info.go ├── model_sor_data.go ├── model_sor_security_info.go ├── model_sor_update_indicator.go ├── model_sor_update_info.go ├── model_spatial_validity.go ├── model_spatial_validity_cond.go ├── model_spatial_validity_rm.go ├── model_specific_analytics_subscription.go ├── model_specific_data_subscription.go ├── model_spending_limit_context.go ├── model_spending_limit_status.go ├── model_sponsor_connectivity_data.go ├── model_sponsor_information.go ├── model_sponsoring_status.go ├── model_spt.go ├── model_sqn_scheme.go ├── model_srvcc_capability.go ├── model_srvcc_data.go ├── model_ssc_mode.go ├── model_ssc_modes.go ├── model_ssm.go ├── model_stationary_indication.go ├── model_stationary_indication_rm.go ├── model_status.go ├── model_status_change.go ├── model_status_info.go ├── model_status_notification.go ├── model_steer_mode_indicator.go ├── model_steer_mode_value.go ├── model_steering_functionality.go ├── model_steering_mode.go ├── model_storage_outcome.go ├── model_stored_search_result.go ├── model_string_matching_condition.go ├── model_string_matching_rule.go ├── model_subscr_cond.go ├── model_subscribed_default_qos.go ├── model_subscribed_event.go ├── model_subscribed_snssai.go ├── model_subscription_context.go ├── model_subscription_data_subscriptions.go ├── model_subscription_filter.go ├── model_subscription_termination_info.go ├── model_subscription_transfer_info.go ├── model_suci_info.go ├── model_suggested_packet_num_dl.go ├── model_summarization_attribute.go ├── model_supi_info.go ├── model_supi_range.go ├── model_supplementary_service.go ├── model_supplementary_service_mode.go ├── model_supplementary_service_type.go ├── model_supported_gad_shapes.go ├── model_supported_nssai_availability_data.go ├── model_supported_snssai.go ├── model_svc_experience.go ├── model_tac_info.go ├── model_tac_range.go ├── model_tad_identifier.go ├── model_tads_information.go ├── model_tag_type.go ├── model_tai.go ├── model_tai_range.go ├── model_target_area.go ├── model_target_dnai_info.go ├── model_target_ue_information.go ├── model_temporal_validity.go ├── model_termination_info.go ├── model_threshold_level.go ├── model_threshold_value.go ├── model_throughput.go ├── model_time_period.go ├── model_time_unit.go ├── model_time_window.go ├── model_timer.go ├── model_timer_id_list.go ├── model_tmgi.go ├── model_tmgi_range.go ├── model_tnap_id.go ├── model_tngf_info.go ├── model_top_application.go ├── model_topological_service_area.go ├── model_trace_data.go ├── model_trace_data_response.go ├── model_trace_depth.go ├── model_traffic_characterization.go ├── model_traffic_control_data.go ├── model_traffic_descriptor_components.go ├── model_traffic_forwarding_way.go ├── model_traffic_influ_data.go ├── model_traffic_influ_data_notif.go ├── model_traffic_influ_data_patch.go ├── model_traffic_influ_sub.go ├── model_traffic_information.go ├── model_traffic_profile.go ├── model_traffic_profile_rm.go ├── model_transaction_info.go ├── model_transaction_metric.go ├── model_transfer_mo_data_req_data.go ├── model_transfer_mo_data_request.go ├── model_transfer_mt_data_add_info.go ├── model_transfer_mt_data_error.go ├── model_transfer_mt_data_req_data.go ├── model_transfer_mt_data_request.go ├── model_transfer_mt_dataismf_request.go ├── model_transfer_reason.go ├── model_transfer_request_type.go ├── model_transmitter_info.go ├── model_transport_protocol.go ├── model_trigger_category.go ├── model_trigger_point.go ├── model_trigger_request.go ├── model_trunk_group_id.go ├── model_trust_af_info.go ├── model_tsc_qos_requirement.go ├── model_tsc_qos_requirement_rm.go ├── model_tscai_input_container.go ├── model_tsctsf_info.go ├── model_tsn_bridge_info.go ├── model_tsn_qos_container.go ├── model_tsn_qos_container_rm.go ├── model_tunnel_info.go ├── model_twan_location_data.go ├── model_twap_id.go ├── model_twif_info.go ├── model_type_of_condition.go ├── model_uav_auth_failure.go ├── model_uc_purpose.go ├── model_uc_subscription_data.go ├── model_udm_ee_association_type.go ├── model_udm_ee_created_ee_subscription.go ├── model_udm_ee_ee_subscription.go ├── model_udm_ee_event_type.go ├── model_udm_ee_failed_cause.go ├── model_udm_ee_failed_monitoring_configuration.go ├── model_udm_ee_location_accuracy.go ├── model_udm_ee_location_reporting_configuration.go ├── model_udm_ee_monitoring_configuration.go ├── model_udm_ee_monitoring_report.go ├── model_udm_ee_pdu_session_status_cfg.go ├── model_udm_ee_reachability_for_data_configuration.go ├── model_udm_ee_reachability_for_sms_report.go ├── model_udm_ee_report.go ├── model_udm_ee_reporting_options.go ├── model_udm_info.go ├── model_udm_mt_ue_info.go ├── model_udm_niddau_authorization_data.go ├── model_udm_pp_location_area.go ├── model_udm_sdm_amf_info.go ├── model_udm_sdm_app_descriptor.go ├── model_udm_sdm_data_set_name.go ├── model_udm_sdm_ec_restriction_data_wb.go ├── model_udm_sdm_group_identifiers.go ├── model_udm_sdm_ip_address.go ├── model_udm_sdm_ip_index.go ├── model_udm_sdm_nidd_information.go ├── model_udm_sdm_shared_data.go ├── model_udm_sdm_sor_info.go ├── model_udm_sdm_steering_container.go ├── model_udm_sdm_subscription_data_sets.go ├── model_udm_sdm_ue_id.go ├── model_udm_sdm_upu_info.go ├── model_udm_ssau_service_specific_authorization_info.go ├── model_udm_ueau_auth_type.go ├── model_udm_ueau_authentication_info_request.go ├── model_udm_ueau_authentication_info_result.go ├── model_udm_ueau_rg_auth_ctx.go ├── model_udm_uecm_data_restoration_notification.go ├── model_udm_uecm_deregistration_data.go ├── model_udm_uecm_deregistration_reason.go ├── model_udm_uecm_location_info.go ├── model_udr_dr_data_restoration_notification.go ├── model_udr_info.go ├── model_udsf_data_repository_notification_info.go ├── model_udsf_info.go ├── model_ue_access_behavior_report_item.go ├── model_ue_analytics_context_descriptor.go ├── model_ue_area_indication.go ├── model_ue_auth.go ├── model_ue_authentication_ctx.go ├── model_ue_camping_rep.go ├── model_ue_communication.go ├── model_ue_communication_collection.go ├── model_ue_communication_info.go ├── model_ue_connectivity_state.go ├── model_ue_context.go ├── model_ue_context_cancel_relocate_data.go ├── model_ue_context_create_data.go ├── model_ue_context_create_error.go ├── model_ue_context_created_data.go ├── model_ue_context_in_amf_data.go ├── model_ue_context_in_smf_data.go ├── model_ue_context_in_smf_data_sub_filter.go ├── model_ue_context_in_smsf_data.go ├── model_ue_context_info.go ├── model_ue_context_info_class.go ├── model_ue_context_release.go ├── model_ue_context_relocate_data.go ├── model_ue_context_relocated_data.go ├── model_ue_context_transfer_req_data.go ├── model_ue_context_transfer_request.go ├── model_ue_context_transfer_response_200.go ├── model_ue_context_transfer_rsp_data.go ├── model_ue_context_transfer_status.go ├── model_ue_differentiation_info.go ├── model_ue_id_ext.go ├── model_ue_identity_info.go ├── model_ue_in_area_filter.go ├── model_ue_initiated_resource_request.go ├── model_ue_lcs_capability.go ├── model_ue_location_info.go ├── model_ue_location_service_ind.go ├── model_ue_location_trends_report_item.go ├── model_ue_mobility.go ├── model_ue_mobility_collection.go ├── model_ue_mobility_info.go ├── model_ue_n1_n2_info_subscription_create_data.go ├── model_ue_n1_n2_info_subscription_created_data.go ├── model_ue_policy_section.go ├── model_ue_policy_set.go ├── model_ue_policy_set_patch.go ├── model_ue_policy_transfer_failure_notification.go ├── model_ue_privacy_requirements.go ├── model_ue_reachability.go ├── model_ue_reachability_notification.go ├── model_ue_reachability_subscription.go ├── model_ue_reachable_ind.go ├── model_ue_reg_status_update_req_data.go ├── model_ue_reg_status_update_rsp_data.go ├── model_ue_requested_value_rep.go ├── model_ue_slice_mbr.go ├── model_ue_subscription_info.go ├── model_ue_trajectory_collection.go ├── model_ue_trajectory_info.go ├── model_ue_transfer_type.go ├── model_ue_type.go ├── model_ue_update_status.go ├── model_ulcl_bp_information.go ├── model_umt_time.go ├── model_un_trust_af_info.go ├── model_unavailable_access_indication.go ├── model_uncertainty_ellipse.go ├── model_uncertainty_ellipsoid.go ├── model_unrelated_class.go ├── model_up_cnx_state.go ├── model_up_confidentiality.go ├── model_up_integrity.go ├── model_up_interface_type.go ├── model_up_path_chg_event.go ├── model_up_security.go ├── model_up_security_info.go ├── model_update_charging_data_response_400.go ├── model_update_charging_data_response_403.go ├── model_update_charging_data_response_404.go ├── model_update_nwdaf_registration_response_200.go ├── model_update_pdu_session_request.go ├── model_update_pdu_session_response_200.go ├── model_update_pdu_session_response_400.go ├── model_update_sm_context_request.go ├── model_update_sm_context_response_200.go ├── model_update_sm_context_response_400.go ├── model_updated_item.go ├── model_updated_ue_reachability_subscription.go ├── model_updp_subscription_data.go ├── model_upf_cond.go ├── model_upf_info.go ├── model_upf_information.go ├── model_upu_data.go ├── model_upu_security_info.go ├── model_uri_list.go ├── model_uri_scheme.go ├── model_ursp_rule_request.go ├── model_usage.go ├── model_usage_mon_data.go ├── model_usage_mon_data_limit.go ├── model_usage_mon_data_scope.go ├── model_usage_mon_level.go ├── model_usage_monitoring_data.go ├── model_usage_threshold.go ├── model_usage_threshold_rm.go ├── model_user_consent.go ├── model_user_data_congestion_collection.go ├── model_user_data_congestion_info.go ├── model_user_identifier.go ├── model_user_location.go ├── model_user_plane_event.go ├── model_user_plane_event_report.go ├── model_user_plane_location_area.go ├── model_user_plane_notification_data.go ├── model_user_state_cs.go ├── model_user_state_ps.go ├── model_utra_location.go ├── model_uuaa_mm_status.go ├── model_v2x_capability.go ├── model_v2x_context.go ├── model_v2x_information.go ├── model_v2x_subscription_data.go ├── model_valid_time_period.go ├── model_var_snssai.go ├── model_variable_part.go ├── model_variable_part_type.go ├── model_velocity_estimate.go ├── model_velocity_requested.go ├── model_vendor_specific_feature.go ├── model_vertical_direction.go ├── model_vgmlc_address.go ├── model_virtual_resource.go ├── model_vn_group_data.go ├── model_volume_timed_report.go ├── model_vplmn_qos.go ├── model_vsmf_update_data.go ├── model_vsmf_update_error.go ├── model_vsmf_updated_data.go ├── model_w_agf_info.go ├── model_websock_notif_config.go ├── model_wireline_area.go ├── model_wireline_service_area_restriction.go ├── model_wlan_ordering_criterion.go ├── model_wlan_per_ss_id_performance_info.go ├── model_wlan_per_ts_performance_info.go ├── model_wlan_performance_info.go └── model_wlan_performance_req.go ├── multipart_related.go ├── nef ├── AsSessionWithQoS │ ├── api_as_session_with_required_qo_s_subscriptions.go │ ├── api_individual_as_session_with_required_qo_s_subscription.go │ ├── client.go │ └── configuration.go ├── Authentication │ ├── api_uav_authentication.go │ ├── client.go │ └── configuration.go ├── EASDeployment │ ├── api_individual_subscription_document.go │ ├── api_subscriptions_collection.go │ ├── client.go │ └── configuration.go ├── EventExposure │ ├── api_individual_subscription_document.go │ ├── api_subscriptions_collection.go │ ├── client.go │ └── configuration.go ├── PFDmanagement │ ├── api_individual_application_pfd.go │ ├── api_individual_pfd_subscription.go │ ├── api_pfd_of_applications.go │ ├── api_pfd_of_applications_by_partial_update.go │ ├── api_pfd_subscriptions.go │ ├── client.go │ └── configuration.go ├── SMContext │ ├── api_individual_sm_context_document.go │ ├── api_sm_contexts_collection_collection.go │ ├── client.go │ └── configuration.go ├── SMService │ ├── api_send_mosms_message_and_the_delivery_report.go │ ├── client.go │ └── configuration.go └── TrafficInfluence │ ├── api_individual_traffic_influence_subscription.go │ ├── api_traffic_influence_subscription.go │ ├── client.go │ └── configuration.go ├── nrf ├── AccessToken │ ├── api_access_token_request.go │ ├── client.go │ └── configuration.go ├── Bootstrapping │ ├── api_bootstrapping_request.go │ ├── client.go │ └── configuration.go ├── NFDiscovery │ ├── api_complete_stored_search_document.go │ ├── api_individual_scp_domain_routing_information_subscription_document.go │ ├── api_nf_instances_store.go │ ├── api_scp_domain_routing_information_document.go │ ├── api_scp_domain_routing_information_subscriptions_collection.go │ ├── api_stored_search_document.go │ ├── client.go │ └── configuration.go ├── NFManagement │ ├── api_nf_instance_id_document.go │ ├── api_nf_instances_store.go │ ├── api_subscription_id_document.go │ ├── api_subscriptions_collection.go │ ├── client.go │ └── configuration.go ├── service.go └── service_test.go ├── nssf ├── NSSAIAvailability │ ├── api_nf_instance_id_document.go │ ├── api_nssai_availability_store.go │ ├── api_subscription_id_document.go │ ├── api_subscriptions_collection.go │ ├── client.go │ └── configuration.go └── NSSelection │ ├── api_network_slice_information_document.go │ ├── client.go │ └── configuration.go ├── nwdaf ├── AnalyticsInfo │ ├── api_nwdaf_analytics_document.go │ ├── api_nwdaf_context_document.go │ ├── client.go │ └── configuration.go ├── DataManagement │ ├── api_individual_nwdaf_data_management_subscription_document.go │ ├── api_subscriptions_collection.go │ ├── client.go │ └── configuration.go ├── EventsSubscription │ ├── api_individual_nwdaf_event_subscription_transfer_document.go │ ├── api_individual_nwdaf_events_subscription_document.go │ ├── api_nwdaf_event_subscription_transfers_collection.go │ ├── api_nwdaf_events_subscriptions_collection.go │ ├── client.go │ └── configuration.go └── MLModelProvision │ ├── api_individual_nwdafml_model_provision_subscription_document.go │ ├── api_subscriptions_collection.go │ ├── client.go │ └── configuration.go ├── oauth ├── get_token_context.go └── oauth.go ├── pcf ├── AMPolicyAuthorization │ ├── api_am_policy_events_subscription_document.go │ ├── api_application_am_contexts_collection.go │ ├── api_individual_application_am_context_document.go │ ├── client.go │ └── configuration.go ├── AMPolicyControl │ ├── api_am_policy_associations_collection.go │ ├── api_individual_am_policy_association_document.go │ ├── client.go │ └── configuration.go ├── BDTPolicyControl │ ├── api_bdt_policies_collection.go │ ├── api_individual_bdt_policy_document.go │ ├── client.go │ └── configuration.go ├── EventExposure │ ├── api_individual_policy_control_events_subscription_document.go │ ├── api_policy_control_events_subscription_collection.go │ ├── client.go │ └── configuration.go ├── MBSPolicyAuthorization │ ├── api_individual_mbs_application_session_context_document.go │ ├── api_mbs_application_session_contexts_collection.go │ ├── client.go │ └── configuration.go ├── MBSPolicyControl │ ├── api_individual_mbs_policy_document.go │ ├── api_mbs_policies_collection.go │ ├── client.go │ └── configuration.go ├── PolicyAuthorization │ ├── api_application_sessions_collection.go │ ├── api_events_subscription_document.go │ ├── api_individual_application_session_context_document.go │ ├── api_pcscf_restoration_indication.go │ ├── client.go │ └── configuration.go ├── SMPolicyControl │ ├── api_individual_sm_policy_document.go │ ├── api_sm_policies_collection.go │ ├── client.go │ └── configuration.go └── UEPolicyControl │ ├── api_individual_ue_policy_association_document.go │ ├── api_ue_policy_associations_collection.go │ ├── client.go │ └── configuration.go ├── problem_details.go ├── serialize.go ├── smf ├── EventExposure │ ├── api_individual_subscription_document.go │ ├── api_subscriptions_collection.go │ ├── client.go │ └── configuration.go ├── NIDD │ ├── api_individual_pdu_session.go │ ├── client.go │ └── configuration.go └── PDUSession │ ├── api_individual_pdu_session_hsmf_or_smf.go │ ├── api_individual_sm_context.go │ ├── api_pdu_sessions_collection.go │ ├── api_sm_contexts_collection.go │ ├── client.go │ └── configuration.go ├── supported_feature.go ├── supported_feature_test.go ├── udm ├── EventExposure │ ├── api_create_ee_subscription.go │ ├── api_delete_ee_subscription.go │ ├── api_update_ee_subscription.go │ ├── client.go │ └── configuration.go ├── MT │ ├── api_provide_ue_location.go │ ├── api_query_ue_info.go │ ├── client.go │ └── configuration.go ├── NIDDAuthentication │ ├── api_authorize_the_nidd_configuration_request.go │ ├── client.go │ └── configuration.go ├── ParameterProvision │ ├── api_class5_gmbs_group_creation.go │ ├── api_class5_gmbs_group_deletion.go │ ├── api_class5_gmbs_group_modification.go │ ├── api_class5_gvn_group_creation.go │ ├── api_class5_gvn_group_deletion.go │ ├── api_class5_gvn_group_modification.go │ ├── api_parameter_provisioning_data_entry_document.go │ ├── api_subscription_data_update.go │ ├── client.go │ └── configuration.go ├── ReportSMDeliveryStatus │ ├── api_report_sm_delivery_status.go │ ├── client.go │ └── configuration.go ├── ServiceSpecificAuthorization │ ├── api_service_specific_authorization_remove.go │ ├── api_service_specific_authorization_request.go │ ├── client.go │ └── configuration.go ├── SubscriberDataManagement │ ├── api_access_and_mobility_subscription_data_retrieval.go │ ├── api_class5_mbs_subscription_data_retrieval.go │ ├── api_enhanced_coverage_restriction_data_retrieval.go │ ├── api_gpsi_to_supi_translation_or_supi_to_gpsi_translation.go │ ├── api_group_identifiers.go │ ├── api_lcs_broadcast_assistance_data_types_retrieval.go │ ├── api_lcs_mobile_originated_data_retrieval.go │ ├── api_lcs_privacy_data_retrieval.go │ ├── api_multiple_identifiers.go │ ├── api_prose_subscription_data_retrieval.go │ ├── api_providing_acknowledgement_of_cag_update.go │ ├── api_providing_acknowledgement_of_snssa_is_update.go │ ├── api_providing_acknowledgement_of_steering_of_roaming.go │ ├── api_providing_acknowledgement_of_ue_parameters_update.go │ ├── api_retrieval_of_multiple_data_sets.go │ ├── api_retrieval_of_shared_data.go │ ├── api_retrieval_of_the_individual_shared_data.go │ ├── api_session_management_subscription_data_retrieval.go │ ├── api_slice_selection_subscription_data_retrieval.go │ ├── api_smf_selection_subscription_data_retrieval.go │ ├── api_sms_management_subscription_data_retrieval.go │ ├── api_sms_subscription_data_retrieval.go │ ├── api_subs_to_notification_data_change_notify_callback_document.go │ ├── api_subscription_creation.go │ ├── api_subscription_creation_for_shared_data.go │ ├── api_subscription_deletion.go │ ├── api_subscription_deletion_for_shared_data.go │ ├── api_subscription_modification.go │ ├── api_trace_configuration_data_retrieval.go │ ├── api_trigger_sor_info_update.go │ ├── api_ue_context_in_amf_data_retrieval.go │ ├── api_ue_context_in_smf_data_retrieval.go │ ├── api_ue_context_in_smsf_data_retrieval.go │ ├── api_user_consent_subscription_data_retrieval.go │ ├── api_v2_x_subscription_data_retrieval.go │ ├── client.go │ └── configuration.go ├── UEAuthentication │ ├── api_confirm_auth.go │ ├── api_delete_auth.go │ ├── api_generate_auth_data.go │ ├── api_generate_gba_authentication_vectors.go │ ├── api_generate_hss_authentication_vectors.go │ ├── api_generate_pro_se_authentication_vectors.go │ ├── api_get_auth_data_for_fnrg.go │ ├── client.go │ └── configuration.go ├── UEContextManagement │ ├── api_amf3_gpp_access_registration_info_retrieval.go │ ├── api_amf_non3_gpp_access_registration_info_retrieval.go │ ├── api_amf_registration_for3_gpp_access.go │ ├── api_amf_registration_for_non3_gpp_access.go │ ├── api_ipsmgw_deregistration.go │ ├── api_ipsmgw_registration.go │ ├── api_ipsmgw_registration_info_retrieval.go │ ├── api_nwdaf_deregistration.go │ ├── api_nwdaf_registration.go │ ├── api_nwdaf_registration_info_retrieval.go │ ├── api_parameter_update_in_the_amf_registration_for3_gpp_access.go │ ├── api_parameter_update_in_the_amf_registration_for_non3_gpp_access.go │ ├── api_parameter_update_in_the_nwdaf_registration.go │ ├── api_parameter_update_in_the_smf_registration.go │ ├── api_pei_update.go │ ├── api_retrieve_smf_registration.go │ ├── api_roaming_information_update.go │ ├── api_send_routing_info_sm_custom_operation.go │ ├── api_smf_deregistration.go │ ├── api_smf_smf_registration.go │ ├── api_smsf3_gpp_access_registration_info_retrieval.go │ ├── api_smsf_deregistration_for3_gpp_access.go │ ├── api_smsf_deregistration_for_non3_gpp_access.go │ ├── api_smsf_non3_gpp_access_registration_info_retrieval.go │ ├── api_smsf_registration_for3_gpp_access.go │ ├── api_smsf_registration_for_non3_gpp_access.go │ ├── api_trigger_amf_for3_gpp_access_deregistration.go │ ├── api_trigger_pcscf_restoration.go │ ├── api_ue_location_information_retrieval.go │ ├── api_uecm_registration_info_retrieval.go │ ├── client.go │ └── configuration.go └── UEID │ ├── api_deconceal.go │ ├── client.go │ └── configuration.go ├── udr ├── DataRepository │ ├── api_access_and_mobility_data.go │ ├── api_access_and_mobility_policy_data_document.go │ ├── api_access_and_mobility_subscription_data_document.go │ ├── api_amf3_gpp_access_registration_document.go │ ├── api_amf_group_subscription_info_document.go │ ├── api_amf_non3_gpp_access_registration_document.go │ ├── api_amf_subscription_info_document.go │ ├── api_application_data_subscriptions_collection.go │ ├── api_auth_event_document.go │ ├── api_authentication_data_document.go │ ├── api_authentication_so_r_document.go │ ├── api_authentication_status_document.go │ ├── api_authentication_subscription_document.go │ ├── api_authentication_upu_document.go │ ├── api_bdt_data_store.go │ ├── api_bdt_policy_data_store.go │ ├── api_cag_update_ack_document.go │ ├── api_cagack_document.go │ ├── api_class5_g_vn_group_configuration_document.go │ ├── api_class5_gmbs_group_store.go │ ├── api_class5_gmbs_groups_internal_document.go │ ├── api_class5_gvn_groups_internal_document.go │ ├── api_class5_gvn_groups_store.go │ ├── api_class5_mbs_subscription_data_document.go │ ├── api_context_data_document.go │ ├── api_delete5_g_vn_group.go │ ├── api_delete5_gmbs_group.go │ ├── api_enhanced_coverage_restriction_data.go │ ├── api_event_amf_subscription_info_document.go │ ├── api_event_exposure_data_document.go │ ├── api_event_exposure_data_for_a_group_document.go │ ├── api_event_exposure_group_subscription_document.go │ ├── api_event_exposure_group_subscriptions_collection.go │ ├── api_event_exposure_subscription_document.go │ ├── api_event_exposure_subscriptions_collection.go │ ├── api_exposure_data_subscriptions_collection.go │ ├── api_group_identifiers.go │ ├── api_hss_event_group_subscription_info_document.go │ ├── api_hss_event_subscription_info_document.go │ ├── api_hsssdm_subscription_info_document.go │ ├── api_individual_application_data_subscription_document.go │ ├── api_individual_applied_bdt_policy_data_document.go │ ├── api_individual_auth_event_document.go │ ├── api_individual_authentication_status_document.go │ ├── api_individual_bdt_data_document.go │ ├── api_individual_exposure_data_subscription_document.go │ ├── api_individual_influence_data_document.go │ ├── api_individual_influence_data_subscription_document.go │ ├── api_individual_iptv_configuration_data_document.go │ ├── api_individual_pfd_data_document.go │ ├── api_individual_policy_data_subscription_document.go │ ├── api_individual_service_parameter_data_document.go │ ├── api_influence_data_store.go │ ├── api_influence_data_subscriptions_collection.go │ ├── api_ipsmgw_registration_document.go │ ├── api_iptv_configuration_data_store.go │ ├── api_lcs_broadcast_assistance_subscription_data.go │ ├── api_lcs_mobile_originated_subscription_data.go │ ├── api_lcs_privacy_subscription_data.go │ ├── api_message_waiting_data_document.go │ ├── api_modify5_g_vn_group.go │ ├── api_modify5_gmbs_group.go │ ├── api_multicast_mbs_group_memb_document.go │ ├── api_nidd_authorization_info_document.go │ ├── api_nssai_update_ack_document.go │ ├── api_nssaiack_document.go │ ├── api_operator_specific_data_container_document.go │ ├── api_operator_specific_data_document.go │ ├── api_parameter_provision_document.go │ ├── api_parameter_provision_profile_data_document.go │ ├── api_parameter_provision_profile_data_for5_gmbs_group_document.go │ ├── api_parameter_provision_profile_data_for5_gvn_group_document.go │ ├── api_pdu_session_management_data.go │ ├── api_pfd_data_store.go │ ├── api_plmn_ue_policy_set_document.go │ ├── api_policy_data_for_individual_ue_document.go │ ├── api_policy_data_subscriptions_collection.go │ ├── api_pro_se_service_subscription_data.go │ ├── api_provisioned_data_document.go │ ├── api_provisioned_parameter_data_document.go │ ├── api_provisioned_parameter_data_entries_collection.go │ ├── api_query5_g_vn_group_configuration_document.go │ ├── api_query_amf_subscription_info_document.go │ ├── api_query_identity_data_by_supi_or_gpsi_document.go │ ├── api_query_multicast_mbs_group_memb_document.go │ ├── api_query_nidd_authorization_data_gpsi_or_external_group_identifier_document.go │ ├── api_query_odb_data_by_supi_or_gpsi_document.go │ ├── api_query_service_specific_authorization_data_document.go │ ├── api_retrieval_of_individual_shared_data.go │ ├── api_retrieval_of_shared_data.go │ ├── api_retrieve_the_roaming_information_of_the5_gcepc_domains_document.go │ ├── api_retrieve_the_roaming_information_of_the_epc_domain_document.go │ ├── api_sdm_subscription_document.go │ ├── api_sdm_subscriptions_collection.go │ ├── api_service_parameter_data_store.go │ ├── api_service_specific_authorization_info_document.go │ ├── api_session_management_policy_data_document.go │ ├── api_session_management_subscription_data.go │ ├── api_smf_event_group_subscription_info_document.go │ ├── api_smf_event_subscription_info_document.go │ ├── api_smf_registration_document.go │ ├── api_smf_registrations_collection.go │ ├── api_smf_selection_subscription_data_document.go │ ├── api_sms_management_subscription_data_document.go │ ├── api_sms_subscription_data_document.go │ ├── api_smsf3_gpp_registration_document.go │ ├── api_smsf_non3_gpp_registration_document.go │ ├── api_sponsor_connectivity_data_document.go │ ├── api_subs_to_notify_collection.go │ ├── api_subs_to_notify_document.go │ ├── api_subscriptions_collection.go │ ├── api_trace_data_document.go │ ├── api_u_es_location_information_document.go │ ├── api_ue_policy_set_document.go │ ├── api_update_the_pei_information_of_the5_gcepc_domains_document.go │ ├── api_update_the_roaming_information_of_the_epc_domain_document.go │ ├── api_usage_monitoring_information_document.go │ ├── api_user_consent_data.go │ ├── api_v2_x_subscription_data.go │ ├── client.go │ └── configuration.go ├── GroupIDmap │ ├── api_nf_group_i_ds_document.go │ ├── client.go │ └── configuration.go └── ImsDataRepository │ ├── api_charging_info_retrieval.go │ ├── api_ims_profile_data_retrieval.go │ ├── api_retrieval_of_associated_ims_private_identities.go │ ├── api_retrieval_of_associated_ims_public_identities.go │ ├── api_scscf_registration_and_deregistration.go │ ├── client.go │ └── configuration.go ├── udsf ├── DataRepository │ ├── api_block_crud.go │ ├── api_meta_schema_crud.go │ ├── api_notification_subscription_crud.go │ ├── api_notification_subscriptions_crud.go │ ├── api_record_crud.go │ ├── client.go │ └── configuration.go └── Timer │ ├── api_timer_get.go │ ├── api_timer_search.go │ ├── api_timer_start.go │ ├── api_timer_stop.go │ ├── api_timer_update.go │ ├── api_timers_delete.go │ ├── client.go │ └── configuration.go ├── util.go └── util_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /amf/Communication/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/amf/Communication/client.go -------------------------------------------------------------------------------- /amf/EventExposure/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/amf/EventExposure/client.go -------------------------------------------------------------------------------- /amf/Location/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/amf/Location/client.go -------------------------------------------------------------------------------- /amf/Location/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/amf/Location/configuration.go -------------------------------------------------------------------------------- /amf/MBSBroadcast/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/amf/MBSBroadcast/client.go -------------------------------------------------------------------------------- /amf/MBSBroadcast/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/amf/MBSBroadcast/configuration.go -------------------------------------------------------------------------------- /amf/MBSCommunication/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/amf/MBSCommunication/client.go -------------------------------------------------------------------------------- /amf/MT/api_ue_context_document.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/amf/MT/api_ue_context_document.go -------------------------------------------------------------------------------- /amf/MT/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/amf/MT/client.go -------------------------------------------------------------------------------- /amf/MT/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/amf/MT/configuration.go -------------------------------------------------------------------------------- /ausf/SoRProtection/api_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/ausf/SoRProtection/api_default.go -------------------------------------------------------------------------------- /ausf/SoRProtection/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/ausf/SoRProtection/client.go -------------------------------------------------------------------------------- /ausf/UEAuthentication/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/ausf/UEAuthentication/client.go -------------------------------------------------------------------------------- /ausf/UPUProtection/api_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/ausf/UPUProtection/api_default.go -------------------------------------------------------------------------------- /ausf/UPUProtection/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/ausf/UPUProtection/client.go -------------------------------------------------------------------------------- /auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/auth.go -------------------------------------------------------------------------------- /bsf/Management/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/bsf/Management/client.go -------------------------------------------------------------------------------- /bsf/Management/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/bsf/Management/configuration.go -------------------------------------------------------------------------------- /chf/ConvergedCharging/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/chf/ConvergedCharging/client.go -------------------------------------------------------------------------------- /chf/OfflineOnlyCharging/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/chf/OfflineOnlyCharging/client.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/client.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/client_test.go -------------------------------------------------------------------------------- /convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/convert.go -------------------------------------------------------------------------------- /convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/convert_test.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/error.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/go.sum -------------------------------------------------------------------------------- /json_query_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/json_query_builder.go -------------------------------------------------------------------------------- /lmf/Broadcast/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/lmf/Broadcast/client.go -------------------------------------------------------------------------------- /lmf/Broadcast/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/lmf/Broadcast/configuration.go -------------------------------------------------------------------------------- /lmf/Location/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/lmf/Location/client.go -------------------------------------------------------------------------------- /lmf/Location/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/lmf/Location/configuration.go -------------------------------------------------------------------------------- /media_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/media_type.go -------------------------------------------------------------------------------- /metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/metrics.go -------------------------------------------------------------------------------- /models/model_3_g_aka_av.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_3_g_aka_av.go -------------------------------------------------------------------------------- /models/model_5_g_ddnmf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_5_g_ddnmf_info.go -------------------------------------------------------------------------------- /models/model_5_g_srvcc_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_5_g_srvcc_info.go -------------------------------------------------------------------------------- /models/model_5_g_vn_group_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_5_g_vn_group_data.go -------------------------------------------------------------------------------- /models/model_5_gs_user_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_5_gs_user_state.go -------------------------------------------------------------------------------- /models/model_aanf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_aanf_info.go -------------------------------------------------------------------------------- /models/model_acc_net_ch_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_acc_net_ch_id.go -------------------------------------------------------------------------------- /models/model_access_network_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_access_network_id.go -------------------------------------------------------------------------------- /models/model_access_tech.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_access_tech.go -------------------------------------------------------------------------------- /models/model_access_token_err.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_access_token_err.go -------------------------------------------------------------------------------- /models/model_access_token_req.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_access_token_req.go -------------------------------------------------------------------------------- /models/model_access_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_access_type.go -------------------------------------------------------------------------------- /models/model_access_type_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_access_type_1.go -------------------------------------------------------------------------------- /models/model_access_type_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_access_type_rm.go -------------------------------------------------------------------------------- /models/model_accu_usage_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_accu_usage_report.go -------------------------------------------------------------------------------- /models/model_accumulated_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_accumulated_usage.go -------------------------------------------------------------------------------- /models/model_ack_of_notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ack_of_notify.go -------------------------------------------------------------------------------- /models/model_acknowledge_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_acknowledge_info.go -------------------------------------------------------------------------------- /models/model_acs_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_acs_info.go -------------------------------------------------------------------------------- /models/model_acs_info_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_acs_info_rm.go -------------------------------------------------------------------------------- /models/model_activation_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_activation_state.go -------------------------------------------------------------------------------- /models/model_addr_fqdn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_addr_fqdn.go -------------------------------------------------------------------------------- /models/model_address_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_address_list.go -------------------------------------------------------------------------------- /models/model_adrf_data_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_adrf_data_type.go -------------------------------------------------------------------------------- /models/model_af_ack_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_af_ack_info.go -------------------------------------------------------------------------------- /models/model_af_external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_af_external.go -------------------------------------------------------------------------------- /models/model_af_notif_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_af_notif_method.go -------------------------------------------------------------------------------- /models/model_af_requested_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_af_requested_data.go -------------------------------------------------------------------------------- /models/model_af_result_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_af_result_info.go -------------------------------------------------------------------------------- /models/model_af_result_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_af_result_status.go -------------------------------------------------------------------------------- /models/model_af_sig_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_af_sig_protocol.go -------------------------------------------------------------------------------- /models/model_aggregation_level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_aggregation_level.go -------------------------------------------------------------------------------- /models/model_alert_limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_alert_limit.go -------------------------------------------------------------------------------- /models/model_allowed_mbs_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_allowed_mbs_info.go -------------------------------------------------------------------------------- /models/model_allowed_nssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_allowed_nssai.go -------------------------------------------------------------------------------- /models/model_allowed_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_allowed_snssai.go -------------------------------------------------------------------------------- /models/model_am_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_am_event.go -------------------------------------------------------------------------------- /models/model_am_event_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_am_event_data.go -------------------------------------------------------------------------------- /models/model_am_influ_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_am_influ_data.go -------------------------------------------------------------------------------- /models/model_am_influ_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_am_influ_event.go -------------------------------------------------------------------------------- /models/model_am_policy_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_am_policy_data.go -------------------------------------------------------------------------------- /models/model_ambr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ambr.go -------------------------------------------------------------------------------- /models/model_ambr_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ambr_rm.go -------------------------------------------------------------------------------- /models/model_amf_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_amf_cond.go -------------------------------------------------------------------------------- /models/model_amf_dereg_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_amf_dereg_info.go -------------------------------------------------------------------------------- /models/model_amf_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_amf_event.go -------------------------------------------------------------------------------- /models/model_amf_event_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_amf_event_area.go -------------------------------------------------------------------------------- /models/model_amf_event_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_amf_event_mode.go -------------------------------------------------------------------------------- /models/model_amf_event_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_amf_event_report.go -------------------------------------------------------------------------------- /models/model_amf_event_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_amf_event_state.go -------------------------------------------------------------------------------- /models/model_amf_event_trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_amf_event_trigger.go -------------------------------------------------------------------------------- /models/model_amf_event_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_amf_event_type.go -------------------------------------------------------------------------------- /models/model_amf_location_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_amf_location_data.go -------------------------------------------------------------------------------- /models/model_amf_mt_ue_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_amf_mt_ue_info.go -------------------------------------------------------------------------------- /models/model_amf_status_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_amf_status_info.go -------------------------------------------------------------------------------- /models/model_an_gw_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_an_gw_address.go -------------------------------------------------------------------------------- /models/model_an_node_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_an_node_type.go -------------------------------------------------------------------------------- /models/model_analytics_subset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_analytics_subset.go -------------------------------------------------------------------------------- /models/model_api_direction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_api_direction.go -------------------------------------------------------------------------------- /models/model_apn_rate_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_apn_rate_status.go -------------------------------------------------------------------------------- /models/model_app_descriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_app_descriptor.go -------------------------------------------------------------------------------- /models/model_app_port_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_app_port_id.go -------------------------------------------------------------------------------- /models/model_applied_smcc_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_applied_smcc_type.go -------------------------------------------------------------------------------- /models/model_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_area.go -------------------------------------------------------------------------------- /models/model_area_event_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_area_event_info.go -------------------------------------------------------------------------------- /models/model_area_of_validity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_area_of_validity.go -------------------------------------------------------------------------------- /models/model_area_scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_area_scope.go -------------------------------------------------------------------------------- /models/model_arp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_arp.go -------------------------------------------------------------------------------- /models/model_assign_ebi_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_assign_ebi_data.go -------------------------------------------------------------------------------- /models/model_assign_ebi_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_assign_ebi_error.go -------------------------------------------------------------------------------- /models/model_assign_ebi_failed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_assign_ebi_failed.go -------------------------------------------------------------------------------- /models/model_assigned_ebi_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_assigned_ebi_data.go -------------------------------------------------------------------------------- /models/model_atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_atom.go -------------------------------------------------------------------------------- /models/model_atsss_capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_atsss_capability.go -------------------------------------------------------------------------------- /models/model_ausf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ausf_info.go -------------------------------------------------------------------------------- /models/model_auth_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_auth_event.go -------------------------------------------------------------------------------- /models/model_auth_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_auth_method.go -------------------------------------------------------------------------------- /models/model_auth_notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_auth_notification.go -------------------------------------------------------------------------------- /models/model_auth_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_auth_status.go -------------------------------------------------------------------------------- /models/model_auth_update_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_auth_update_info.go -------------------------------------------------------------------------------- /models/model_av5_g_he_aka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_av5_g_he_aka.go -------------------------------------------------------------------------------- /models/model_av5g_aka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_av5g_aka.go -------------------------------------------------------------------------------- /models/model_av_eap_aka_prime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_av_eap_aka_prime.go -------------------------------------------------------------------------------- /models/model_av_eps_aka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_av_eps_aka.go -------------------------------------------------------------------------------- /models/model_av_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_av_type.go -------------------------------------------------------------------------------- /models/model_backup_amf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_backup_amf_info.go -------------------------------------------------------------------------------- /models/model_base_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_base_record.go -------------------------------------------------------------------------------- /models/model_bdt_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_bdt_data.go -------------------------------------------------------------------------------- /models/model_bdt_data_patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_bdt_data_patch.go -------------------------------------------------------------------------------- /models/model_bdt_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_bdt_policy.go -------------------------------------------------------------------------------- /models/model_bdt_policy_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_bdt_policy_data.go -------------------------------------------------------------------------------- /models/model_bdt_policy_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_bdt_policy_status.go -------------------------------------------------------------------------------- /models/model_bdt_req_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_bdt_req_data.go -------------------------------------------------------------------------------- /models/model_binding_level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_binding_level.go -------------------------------------------------------------------------------- /models/model_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_block.go -------------------------------------------------------------------------------- /models/model_bsf_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_bsf_event.go -------------------------------------------------------------------------------- /models/model_bsf_notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_bsf_notification.go -------------------------------------------------------------------------------- /models/model_bsf_subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_bsf_subscription.go -------------------------------------------------------------------------------- /models/model_bw_requirement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_bw_requirement.go -------------------------------------------------------------------------------- /models/model_cache_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cache_status.go -------------------------------------------------------------------------------- /models/model_cag_ack_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cag_ack_data.go -------------------------------------------------------------------------------- /models/model_cag_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cag_data.go -------------------------------------------------------------------------------- /models/model_cag_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cag_info.go -------------------------------------------------------------------------------- /models/model_cancel_pos_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cancel_pos_info.go -------------------------------------------------------------------------------- /models/model_ce_mode_b_ind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ce_mode_b_ind.go -------------------------------------------------------------------------------- /models/model_cell_global_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cell_global_id.go -------------------------------------------------------------------------------- /models/model_change_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_change_item.go -------------------------------------------------------------------------------- /models/model_change_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_change_type.go -------------------------------------------------------------------------------- /models/model_charging_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_charging_data.go -------------------------------------------------------------------------------- /models/model_charging_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_charging_info.go -------------------------------------------------------------------------------- /models/model_chf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_chf_info.go -------------------------------------------------------------------------------- /models/model_civic_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_civic_address.go -------------------------------------------------------------------------------- /models/model_class_criterion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_class_criterion.go -------------------------------------------------------------------------------- /models/model_class_identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_class_identifier.go -------------------------------------------------------------------------------- /models/model_client_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_client_id.go -------------------------------------------------------------------------------- /models/model_cm_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cm_info.go -------------------------------------------------------------------------------- /models/model_cm_info_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cm_info_report.go -------------------------------------------------------------------------------- /models/model_cm_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cm_state.go -------------------------------------------------------------------------------- /models/model_cn_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cn_type.go -------------------------------------------------------------------------------- /models/model_cnf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cnf.go -------------------------------------------------------------------------------- /models/model_cnf_unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cnf_unit.go -------------------------------------------------------------------------------- /models/model_code_word_ind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_code_word_ind.go -------------------------------------------------------------------------------- /models/model_complex_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_complex_query.go -------------------------------------------------------------------------------- /models/model_condition_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_condition_data.go -------------------------------------------------------------------------------- /models/model_configured_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_configured_snssai.go -------------------------------------------------------------------------------- /models/model_confirmation_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_confirmation_data.go -------------------------------------------------------------------------------- /models/model_congestion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_congestion_info.go -------------------------------------------------------------------------------- /models/model_context_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_context_data.go -------------------------------------------------------------------------------- /models/model_context_data_sets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_context_data_sets.go -------------------------------------------------------------------------------- /models/model_context_element.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_context_element.go -------------------------------------------------------------------------------- /models/model_context_id_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_context_id_list.go -------------------------------------------------------------------------------- /models/model_context_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_context_info.go -------------------------------------------------------------------------------- /models/model_context_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_context_type.go -------------------------------------------------------------------------------- /models/model_core_network_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_core_network_type.go -------------------------------------------------------------------------------- /models/model_coverage_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_coverage_info.go -------------------------------------------------------------------------------- /models/model_cs_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cs_location.go -------------------------------------------------------------------------------- /models/model_cs_user_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_cs_user_state.go -------------------------------------------------------------------------------- /models/model_csg_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_csg_information.go -------------------------------------------------------------------------------- /models/model_csrn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_csrn.go -------------------------------------------------------------------------------- /models/model_data_availability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_data_availability.go -------------------------------------------------------------------------------- /models/model_data_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_data_filter.go -------------------------------------------------------------------------------- /models/model_data_ind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_data_ind.go -------------------------------------------------------------------------------- /models/model_data_notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_data_notification.go -------------------------------------------------------------------------------- /models/model_data_set_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_data_set_id.go -------------------------------------------------------------------------------- /models/model_data_set_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_data_set_name.go -------------------------------------------------------------------------------- /models/model_data_subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_data_subscription.go -------------------------------------------------------------------------------- /models/model_dccf_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dccf_cond.go -------------------------------------------------------------------------------- /models/model_dccf_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dccf_event.go -------------------------------------------------------------------------------- /models/model_dccf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dccf_info.go -------------------------------------------------------------------------------- /models/model_ddn_failure_subs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ddn_failure_subs.go -------------------------------------------------------------------------------- /models/model_deliver_add_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_deliver_add_info.go -------------------------------------------------------------------------------- /models/model_deliver_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_deliver_error.go -------------------------------------------------------------------------------- /models/model_deliver_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_deliver_request.go -------------------------------------------------------------------------------- /models/model_detecting_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_detecting_node.go -------------------------------------------------------------------------------- /models/model_dispersion_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dispersion_area.go -------------------------------------------------------------------------------- /models/model_dispersion_class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dispersion_class.go -------------------------------------------------------------------------------- /models/model_dispersion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dispersion_info.go -------------------------------------------------------------------------------- /models/model_dispersion_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dispersion_type.go -------------------------------------------------------------------------------- /models/model_dn_perf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dn_perf.go -------------------------------------------------------------------------------- /models/model_dn_perf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dn_perf_info.go -------------------------------------------------------------------------------- /models/model_dnai_change_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dnai_change_type.go -------------------------------------------------------------------------------- /models/model_dnai_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dnai_information.go -------------------------------------------------------------------------------- /models/model_dnf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dnf.go -------------------------------------------------------------------------------- /models/model_dnf_unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dnf_unit.go -------------------------------------------------------------------------------- /models/model_dnn_configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dnn_configuration.go -------------------------------------------------------------------------------- /models/model_dnn_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dnn_info.go -------------------------------------------------------------------------------- /models/model_dnn_info_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dnn_info_item.go -------------------------------------------------------------------------------- /models/model_dnn_smf_info_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dnn_smf_info_item.go -------------------------------------------------------------------------------- /models/model_dnn_upf_info_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dnn_upf_info_item.go -------------------------------------------------------------------------------- /models/model_dsai_tag_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dsai_tag_status.go -------------------------------------------------------------------------------- /models/model_dynamic5_qi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dynamic5_qi.go -------------------------------------------------------------------------------- /models/model_dynamic_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_dynamic_policy.go -------------------------------------------------------------------------------- /models/model_eap_session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_eap_session.go -------------------------------------------------------------------------------- /models/model_eas_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_eas_event.go -------------------------------------------------------------------------------- /models/model_eas_requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_eas_requirements.go -------------------------------------------------------------------------------- /models/model_easdf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_easdf_info.go -------------------------------------------------------------------------------- /models/model_ebi_arp_mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ebi_arp_mapping.go -------------------------------------------------------------------------------- /models/model_ec_restriction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ec_restriction.go -------------------------------------------------------------------------------- /models/model_ecgi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ecgi.go -------------------------------------------------------------------------------- /models/model_ecs_server_addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ecs_server_addr.go -------------------------------------------------------------------------------- /models/model_edrx_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_edrx_parameters.go -------------------------------------------------------------------------------- /models/model_ee_profile_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ee_profile_data.go -------------------------------------------------------------------------------- /models/model_ee_subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ee_subscription.go -------------------------------------------------------------------------------- /models/model_ellipsoid_arc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ellipsoid_arc.go -------------------------------------------------------------------------------- /models/model_emergency_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_emergency_info.go -------------------------------------------------------------------------------- /models/model_endpoint_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_endpoint_address.go -------------------------------------------------------------------------------- /models/model_eps_bearer_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_eps_bearer_info.go -------------------------------------------------------------------------------- /models/model_eps_iwk_pgw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_eps_iwk_pgw.go -------------------------------------------------------------------------------- /models/model_eps_pdn_cnx_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_eps_pdn_cnx_info.go -------------------------------------------------------------------------------- /models/model_error_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_error_report.go -------------------------------------------------------------------------------- /models/model_eth_flow_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_eth_flow_info.go -------------------------------------------------------------------------------- /models/model_eutra_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_eutra_location.go -------------------------------------------------------------------------------- /models/model_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_event.go -------------------------------------------------------------------------------- /models/model_event_class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_event_class.go -------------------------------------------------------------------------------- /models/model_event_for_mdt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_event_for_mdt.go -------------------------------------------------------------------------------- /models/model_event_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_event_id.go -------------------------------------------------------------------------------- /models/model_event_report_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_event_report_mode.go -------------------------------------------------------------------------------- /models/model_events_subs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_events_subs.go -------------------------------------------------------------------------------- /models/model_exception.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_exception.go -------------------------------------------------------------------------------- /models/model_exception_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_exception_id.go -------------------------------------------------------------------------------- /models/model_exception_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_exception_info.go -------------------------------------------------------------------------------- /models/model_exception_trend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_exception_trend.go -------------------------------------------------------------------------------- /models/model_exemption_ind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_exemption_ind.go -------------------------------------------------------------------------------- /models/model_ext_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ext_snssai.go -------------------------------------------------------------------------------- /models/model_failure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_failure.go -------------------------------------------------------------------------------- /models/model_failure_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_failure_code.go -------------------------------------------------------------------------------- /models/model_failure_handling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_failure_handling.go -------------------------------------------------------------------------------- /models/model_fetch_instruction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_fetch_instruction.go -------------------------------------------------------------------------------- /models/model_final_unit_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_final_unit_action.go -------------------------------------------------------------------------------- /models/model_fix_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_fix_type.go -------------------------------------------------------------------------------- /models/model_flow_direction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_flow_direction.go -------------------------------------------------------------------------------- /models/model_flow_direction_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_flow_direction_rm.go -------------------------------------------------------------------------------- /models/model_flow_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_flow_info.go -------------------------------------------------------------------------------- /models/model_flow_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_flow_information.go -------------------------------------------------------------------------------- /models/model_flow_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_flow_status.go -------------------------------------------------------------------------------- /models/model_flow_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_flow_usage.go -------------------------------------------------------------------------------- /models/model_flows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_flows.go -------------------------------------------------------------------------------- /models/model_frame_route_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_frame_route_info.go -------------------------------------------------------------------------------- /models/model_g_nb_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_g_nb_id.go -------------------------------------------------------------------------------- /models/model_gad_shape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_gad_shape.go -------------------------------------------------------------------------------- /models/model_gba_auth_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_gba_auth_type.go -------------------------------------------------------------------------------- /models/model_geo_loc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_geo_loc.go -------------------------------------------------------------------------------- /models/model_geo_service_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_geo_service_area.go -------------------------------------------------------------------------------- /models/model_geographic_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_geographic_area.go -------------------------------------------------------------------------------- /models/model_geographical_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_geographical_area.go -------------------------------------------------------------------------------- /models/model_gera_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_gera_location.go -------------------------------------------------------------------------------- /models/model_gmlc_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_gmlc_info.go -------------------------------------------------------------------------------- /models/model_gnss_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_gnss_id.go -------------------------------------------------------------------------------- /models/model_gpsi_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_gpsi_type.go -------------------------------------------------------------------------------- /models/model_granted_unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_granted_unit.go -------------------------------------------------------------------------------- /models/model_group_identifiers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_group_identifiers.go -------------------------------------------------------------------------------- /models/model_guami.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_guami.go -------------------------------------------------------------------------------- /models/model_guami_list_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_guami_list_cond.go -------------------------------------------------------------------------------- /models/model_hfc_node_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_hfc_node_id.go -------------------------------------------------------------------------------- /models/model_historical_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_historical_data.go -------------------------------------------------------------------------------- /models/model_ho_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ho_state.go -------------------------------------------------------------------------------- /models/model_hsmf_update_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_hsmf_update_data.go -------------------------------------------------------------------------------- /models/model_hsmf_update_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_hsmf_update_error.go -------------------------------------------------------------------------------- /models/model_hsmf_updated_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_hsmf_updated_data.go -------------------------------------------------------------------------------- /models/model_hss_auth_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_hss_auth_type.go -------------------------------------------------------------------------------- /models/model_hss_av_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_hss_av_type.go -------------------------------------------------------------------------------- /models/model_hss_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_hss_info.go -------------------------------------------------------------------------------- /models/model_identity_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_identity_data.go -------------------------------------------------------------------------------- /models/model_identity_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_identity_range.go -------------------------------------------------------------------------------- /models/model_identity_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_identity_type.go -------------------------------------------------------------------------------- /models/model_ifc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ifc.go -------------------------------------------------------------------------------- /models/model_ifcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ifcs.go -------------------------------------------------------------------------------- /models/model_immediate_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_immediate_report.go -------------------------------------------------------------------------------- /models/model_ims_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ims_address.go -------------------------------------------------------------------------------- /models/model_ims_location_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ims_location_data.go -------------------------------------------------------------------------------- /models/model_ims_profile_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ims_profile_data.go -------------------------------------------------------------------------------- /models/model_ims_vo_ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ims_vo_ps.go -------------------------------------------------------------------------------- /models/model_imsi_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_imsi_range.go -------------------------------------------------------------------------------- /models/model_interface_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_interface_type.go -------------------------------------------------------------------------------- /models/model_invalid_cause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_invalid_cause.go -------------------------------------------------------------------------------- /models/model_invalid_param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_invalid_param.go -------------------------------------------------------------------------------- /models/model_invocation_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_invocation_result.go -------------------------------------------------------------------------------- /models/model_ip_addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ip_addr.go -------------------------------------------------------------------------------- /models/model_ip_end_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ip_end_point.go -------------------------------------------------------------------------------- /models/model_ip_flow_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ip_flow_info.go -------------------------------------------------------------------------------- /models/model_ip_reachability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ip_reachability.go -------------------------------------------------------------------------------- /models/model_ip_sm_gw_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ip_sm_gw_address.go -------------------------------------------------------------------------------- /models/model_ip_sm_gw_guidance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ip_sm_gw_guidance.go -------------------------------------------------------------------------------- /models/model_ip_sm_gw_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ip_sm_gw_info.go -------------------------------------------------------------------------------- /models/model_iptv_config_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_iptv_config_data.go -------------------------------------------------------------------------------- /models/model_isup_cause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_isup_cause.go -------------------------------------------------------------------------------- /models/model_iwmsc_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_iwmsc_info.go -------------------------------------------------------------------------------- /models/model_job_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_job_type.go -------------------------------------------------------------------------------- /models/model_key_amf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_key_amf.go -------------------------------------------------------------------------------- /models/model_key_amf_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_key_amf_type.go -------------------------------------------------------------------------------- /models/model_key_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_key_type.go -------------------------------------------------------------------------------- /models/model_ladn_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ladn_info.go -------------------------------------------------------------------------------- /models/model_lcs_client_class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_lcs_client_class.go -------------------------------------------------------------------------------- /models/model_lcs_mo_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_lcs_mo_data.go -------------------------------------------------------------------------------- /models/model_lcs_priority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_lcs_priority.go -------------------------------------------------------------------------------- /models/model_lcs_privacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_lcs_privacy.go -------------------------------------------------------------------------------- /models/model_lcs_privacy_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_lcs_privacy_data.go -------------------------------------------------------------------------------- /models/model_lcs_qos_class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_lcs_qos_class.go -------------------------------------------------------------------------------- /models/model_lcs_service_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_lcs_service_auth.go -------------------------------------------------------------------------------- /models/model_ldr_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ldr_type.go -------------------------------------------------------------------------------- /models/model_line_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_line_type.go -------------------------------------------------------------------------------- /models/model_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_link.go -------------------------------------------------------------------------------- /models/model_lmf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_lmf_info.go -------------------------------------------------------------------------------- /models/model_loc_context_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_loc_context_data.go -------------------------------------------------------------------------------- /models/model_local_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_local_area.go -------------------------------------------------------------------------------- /models/model_local_origin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_local_origin.go -------------------------------------------------------------------------------- /models/model_location_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_location_area.go -------------------------------------------------------------------------------- /models/model_location_area5_g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_location_area5_g.go -------------------------------------------------------------------------------- /models/model_location_area_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_location_area_id.go -------------------------------------------------------------------------------- /models/model_location_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_location_filter.go -------------------------------------------------------------------------------- /models/model_location_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_location_info.go -------------------------------------------------------------------------------- /models/model_location_qo_s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_location_qo_s.go -------------------------------------------------------------------------------- /models/model_location_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_location_report.go -------------------------------------------------------------------------------- /models/model_lpi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_lpi.go -------------------------------------------------------------------------------- /models/model_lte_m_ind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_lte_m_ind.go -------------------------------------------------------------------------------- /models/model_lte_v2x_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_lte_v2x_auth.go -------------------------------------------------------------------------------- /models/model_ma_pdu_indication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ma_pdu_indication.go -------------------------------------------------------------------------------- /models/model_mapping_of_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mapping_of_snssai.go -------------------------------------------------------------------------------- /models/model_matching_operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_matching_operator.go -------------------------------------------------------------------------------- /models/model_mb_smf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mb_smf_info.go -------------------------------------------------------------------------------- /models/model_mb_upf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mb_upf_info.go -------------------------------------------------------------------------------- /models/model_mbs_error_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_error_report.go -------------------------------------------------------------------------------- /models/model_mbs_failure_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_failure_code.go -------------------------------------------------------------------------------- /models/model_mbs_media_comp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_media_comp.go -------------------------------------------------------------------------------- /models/model_mbs_media_comp_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_media_comp_rm.go -------------------------------------------------------------------------------- /models/model_mbs_media_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_media_info.go -------------------------------------------------------------------------------- /models/model_mbs_ngap_ie_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_ngap_ie_type.go -------------------------------------------------------------------------------- /models/model_mbs_pcc_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_pcc_rule.go -------------------------------------------------------------------------------- /models/model_mbs_pcrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_pcrt.go -------------------------------------------------------------------------------- /models/model_mbs_policy_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_policy_data.go -------------------------------------------------------------------------------- /models/model_mbs_qo_s_req.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_qo_s_req.go -------------------------------------------------------------------------------- /models/model_mbs_qos_char.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_qos_char.go -------------------------------------------------------------------------------- /models/model_mbs_qos_dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_qos_dec.go -------------------------------------------------------------------------------- /models/model_mbs_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_report.go -------------------------------------------------------------------------------- /models/model_mbs_service_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_service_area.go -------------------------------------------------------------------------------- /models/model_mbs_service_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_service_info.go -------------------------------------------------------------------------------- /models/model_mbs_session_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbs_session_id.go -------------------------------------------------------------------------------- /models/model_mbsfn_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mbsfn_area.go -------------------------------------------------------------------------------- /models/model_mdt_configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mdt_configuration.go -------------------------------------------------------------------------------- /models/model_mdt_user_consent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mdt_user_consent.go -------------------------------------------------------------------------------- /models/model_media_component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_media_component.go -------------------------------------------------------------------------------- /models/model_media_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_media_type.go -------------------------------------------------------------------------------- /models/model_message_body.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_message_body.go -------------------------------------------------------------------------------- /models/model_message_class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_message_class.go -------------------------------------------------------------------------------- /models/model_meta_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_meta_schema.go -------------------------------------------------------------------------------- /models/model_metering_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_metering_method.go -------------------------------------------------------------------------------- /models/model_mfaf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mfaf_info.go -------------------------------------------------------------------------------- /models/model_ml_analytics_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ml_analytics_info.go -------------------------------------------------------------------------------- /models/model_ml_event_notif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ml_event_notif.go -------------------------------------------------------------------------------- /models/model_ml_model_addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ml_model_addr.go -------------------------------------------------------------------------------- /models/model_ml_model_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ml_model_info.go -------------------------------------------------------------------------------- /models/model_mm_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mm_context.go -------------------------------------------------------------------------------- /models/model_mme_capabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mme_capabilities.go -------------------------------------------------------------------------------- /models/model_mme_location_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mme_location_data.go -------------------------------------------------------------------------------- /models/model_mnpf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mnpf_info.go -------------------------------------------------------------------------------- /models/model_model_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_model_info.go -------------------------------------------------------------------------------- /models/model_monitoring_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_monitoring_event.go -------------------------------------------------------------------------------- /models/model_motion_event_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_motion_event_info.go -------------------------------------------------------------------------------- /models/model_mps_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mps_action.go -------------------------------------------------------------------------------- /models/model_msisdn_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_msisdn_list.go -------------------------------------------------------------------------------- /models/model_mtc_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_mtc_provider.go -------------------------------------------------------------------------------- /models/model_n1_message_class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_n1_message_class.go -------------------------------------------------------------------------------- /models/model_n2_info_container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_n2_info_container.go -------------------------------------------------------------------------------- /models/model_n2_info_content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_n2_info_content.go -------------------------------------------------------------------------------- /models/model_n2_sm_info_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_n2_sm_info_type.go -------------------------------------------------------------------------------- /models/model_n2_sm_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_n2_sm_information.go -------------------------------------------------------------------------------- /models/model_n3ga_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_n3ga_location.go -------------------------------------------------------------------------------- /models/model_n4_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_n4_information.go -------------------------------------------------------------------------------- /models/model_n4_message_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_n4_message_type.go -------------------------------------------------------------------------------- /models/model_nas_security_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nas_security_mode.go -------------------------------------------------------------------------------- /models/model_ncgi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ncgi.go -------------------------------------------------------------------------------- /models/model_ncgi_tai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ncgi_tai.go -------------------------------------------------------------------------------- /models/model_nef_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nef_cond.go -------------------------------------------------------------------------------- /models/model_nef_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nef_event.go -------------------------------------------------------------------------------- /models/model_nef_event_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nef_event_filter.go -------------------------------------------------------------------------------- /models/model_nef_event_subs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nef_event_subs.go -------------------------------------------------------------------------------- /models/model_nef_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nef_info.go -------------------------------------------------------------------------------- /models/model_network_area_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_network_area_info.go -------------------------------------------------------------------------------- /models/model_network_perf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_network_perf_info.go -------------------------------------------------------------------------------- /models/model_network_perf_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_network_perf_type.go -------------------------------------------------------------------------------- /models/model_nf_group_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nf_group_cond.go -------------------------------------------------------------------------------- /models/model_nf_identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nf_identifier.go -------------------------------------------------------------------------------- /models/model_nf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nf_info.go -------------------------------------------------------------------------------- /models/model_nf_instance_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nf_instance_info.go -------------------------------------------------------------------------------- /models/model_nf_service_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nf_service_status.go -------------------------------------------------------------------------------- /models/model_nf_set_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nf_set_cond.go -------------------------------------------------------------------------------- /models/model_nf_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nf_type.go -------------------------------------------------------------------------------- /models/model_nf_type_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nf_type_cond.go -------------------------------------------------------------------------------- /models/model_ng_ap_cause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ng_ap_cause.go -------------------------------------------------------------------------------- /models/model_ng_ksi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ng_ksi.go -------------------------------------------------------------------------------- /models/model_ng_ran_target_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ng_ran_target_id.go -------------------------------------------------------------------------------- /models/model_nidd_cause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nidd_cause.go -------------------------------------------------------------------------------- /models/model_nni_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nni_information.go -------------------------------------------------------------------------------- /models/model_nni_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nni_type.go -------------------------------------------------------------------------------- /models/model_node_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_node_type.go -------------------------------------------------------------------------------- /models/model_non_dynamic5_qi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_non_dynamic5_qi.go -------------------------------------------------------------------------------- /models/model_notif_condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_notif_condition.go -------------------------------------------------------------------------------- /models/model_notif_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_notif_type.go -------------------------------------------------------------------------------- /models/model_notification_flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_notification_flag.go -------------------------------------------------------------------------------- /models/model_notification_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_notification_item.go -------------------------------------------------------------------------------- /models/model_notification_push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_notification_push.go -------------------------------------------------------------------------------- /models/model_notified_pos_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_notified_pos_info.go -------------------------------------------------------------------------------- /models/model_notify_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_notify_item.go -------------------------------------------------------------------------------- /models/model_npn_access_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_npn_access_info.go -------------------------------------------------------------------------------- /models/model_nr_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nr_location.go -------------------------------------------------------------------------------- /models/model_nr_v2x_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nr_v2x_auth.go -------------------------------------------------------------------------------- /models/model_nrf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nrf_info.go -------------------------------------------------------------------------------- /models/model_nrppa_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nrppa_information.go -------------------------------------------------------------------------------- /models/model_nsacf_capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nsacf_capability.go -------------------------------------------------------------------------------- /models/model_nsacf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nsacf_info.go -------------------------------------------------------------------------------- /models/model_nsag_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nsag_info.go -------------------------------------------------------------------------------- /models/model_nsi_id_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nsi_id_info.go -------------------------------------------------------------------------------- /models/model_nsi_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nsi_information.go -------------------------------------------------------------------------------- /models/model_nssaa_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nssaa_status.go -------------------------------------------------------------------------------- /models/model_nssaaf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nssaaf_info.go -------------------------------------------------------------------------------- /models/model_nssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nssai.go -------------------------------------------------------------------------------- /models/model_nssai_ack_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nssai_ack_data.go -------------------------------------------------------------------------------- /models/model_nssai_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nssai_map.go -------------------------------------------------------------------------------- /models/model_nssai_mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nssai_mapping.go -------------------------------------------------------------------------------- /models/model_nssf_event_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nssf_event_type.go -------------------------------------------------------------------------------- /models/model_null_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_null_request.go -------------------------------------------------------------------------------- /models/model_number_average.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_number_average.go -------------------------------------------------------------------------------- /models/model_nwdaf_capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nwdaf_capability.go -------------------------------------------------------------------------------- /models/model_nwdaf_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nwdaf_cond.go -------------------------------------------------------------------------------- /models/model_nwdaf_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nwdaf_data.go -------------------------------------------------------------------------------- /models/model_nwdaf_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nwdaf_event.go -------------------------------------------------------------------------------- /models/model_nwdaf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_nwdaf_info.go -------------------------------------------------------------------------------- /models/model_occurrence_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_occurrence_info.go -------------------------------------------------------------------------------- /models/model_odb_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_odb_data.go -------------------------------------------------------------------------------- /models/model_op_event_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_op_event_type.go -------------------------------------------------------------------------------- /models/model_operation_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_operation_event.go -------------------------------------------------------------------------------- /models/model_operation_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_operation_mode.go -------------------------------------------------------------------------------- /models/model_operation_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_operation_status.go -------------------------------------------------------------------------------- /models/model_operational_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_operational_state.go -------------------------------------------------------------------------------- /models/model_options_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_options_response.go -------------------------------------------------------------------------------- /models/model_originator_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_originator_info.go -------------------------------------------------------------------------------- /models/model_output_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_output_strategy.go -------------------------------------------------------------------------------- /models/model_patch_bdt_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_patch_bdt_policy.go -------------------------------------------------------------------------------- /models/model_patch_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_patch_item.go -------------------------------------------------------------------------------- /models/model_patch_operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_patch_operation.go -------------------------------------------------------------------------------- /models/model_patch_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_patch_result.go -------------------------------------------------------------------------------- /models/model_pc5_capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pc5_capability.go -------------------------------------------------------------------------------- /models/model_pc5_qo_s_para.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pc5_qo_s_para.go -------------------------------------------------------------------------------- /models/model_pc5_qos_flow_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pc5_qos_flow_item.go -------------------------------------------------------------------------------- /models/model_pc_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pc_event.go -------------------------------------------------------------------------------- /models/model_pcc_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pcc_rule.go -------------------------------------------------------------------------------- /models/model_pcf_binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pcf_binding.go -------------------------------------------------------------------------------- /models/model_pcf_binding_patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pcf_binding_patch.go -------------------------------------------------------------------------------- /models/model_pcf_for_ue_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pcf_for_ue_info.go -------------------------------------------------------------------------------- /models/model_pcf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pcf_info.go -------------------------------------------------------------------------------- /models/model_pcf_mbs_binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pcf_mbs_binding.go -------------------------------------------------------------------------------- /models/model_pcscf_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pcscf_address.go -------------------------------------------------------------------------------- /models/model_pcscf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pcscf_info.go -------------------------------------------------------------------------------- /models/model_pdu_session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pdu_session.go -------------------------------------------------------------------------------- /models/model_pdu_session_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pdu_session_info.go -------------------------------------------------------------------------------- /models/model_pdu_session_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pdu_session_type.go -------------------------------------------------------------------------------- /models/model_pdu_session_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pdu_session_types.go -------------------------------------------------------------------------------- /models/model_pduid_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pduid_information.go -------------------------------------------------------------------------------- /models/model_pei_update_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pei_update_info.go -------------------------------------------------------------------------------- /models/model_per_ue_attribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_per_ue_attribute.go -------------------------------------------------------------------------------- /models/model_perf_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_perf_data.go -------------------------------------------------------------------------------- /models/model_performance_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_performance_data.go -------------------------------------------------------------------------------- /models/model_periodicity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_periodicity.go -------------------------------------------------------------------------------- /models/model_pfd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pfd.go -------------------------------------------------------------------------------- /models/model_pfd_change_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pfd_change_report.go -------------------------------------------------------------------------------- /models/model_pfd_content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pfd_content.go -------------------------------------------------------------------------------- /models/model_pfd_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pfd_data.go -------------------------------------------------------------------------------- /models/model_pfd_data_for_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pfd_data_for_app.go -------------------------------------------------------------------------------- /models/model_pfd_management.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pfd_management.go -------------------------------------------------------------------------------- /models/model_pfd_operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pfd_operation.go -------------------------------------------------------------------------------- /models/model_pfd_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pfd_report.go -------------------------------------------------------------------------------- /models/model_pfd_subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pfd_subscription.go -------------------------------------------------------------------------------- /models/model_pgw_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pgw_info.go -------------------------------------------------------------------------------- /models/model_play_to_party.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_play_to_party.go -------------------------------------------------------------------------------- /models/model_plmn_ec_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_plmn_ec_info.go -------------------------------------------------------------------------------- /models/model_plmn_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_plmn_id.go -------------------------------------------------------------------------------- /models/model_plmn_id_nid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_plmn_id_nid.go -------------------------------------------------------------------------------- /models/model_plmn_oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_plmn_oauth2.go -------------------------------------------------------------------------------- /models/model_plmn_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_plmn_range.go -------------------------------------------------------------------------------- /models/model_plmn_restriction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_plmn_restriction.go -------------------------------------------------------------------------------- /models/model_plmn_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_plmn_snssai.go -------------------------------------------------------------------------------- /models/model_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_point.go -------------------------------------------------------------------------------- /models/model_point_altitude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_point_altitude.go -------------------------------------------------------------------------------- /models/model_polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_polygon.go -------------------------------------------------------------------------------- /models/model_positioning_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_positioning_mode.go -------------------------------------------------------------------------------- /models/model_pp_active_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pp_active_time.go -------------------------------------------------------------------------------- /models/model_pp_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pp_data.go -------------------------------------------------------------------------------- /models/model_pp_data_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pp_data_entry.go -------------------------------------------------------------------------------- /models/model_pp_profile_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pp_profile_data.go -------------------------------------------------------------------------------- /models/model_pp_subs_reg_timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pp_subs_reg_timer.go -------------------------------------------------------------------------------- /models/model_preferred_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_preferred_search.go -------------------------------------------------------------------------------- /models/model_presence_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_presence_info.go -------------------------------------------------------------------------------- /models/model_presence_info_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_presence_info_rm.go -------------------------------------------------------------------------------- /models/model_presence_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_presence_state.go -------------------------------------------------------------------------------- /models/model_prev_sub_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_prev_sub_info.go -------------------------------------------------------------------------------- /models/model_priority_levels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_priority_levels.go -------------------------------------------------------------------------------- /models/model_private_identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_private_identity.go -------------------------------------------------------------------------------- /models/model_pro_se_auth_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pro_se_auth_data.go -------------------------------------------------------------------------------- /models/model_problem_details.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_problem_details.go -------------------------------------------------------------------------------- /models/model_prose_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_prose_context.go -------------------------------------------------------------------------------- /models/model_prose_event_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_prose_event_type.go -------------------------------------------------------------------------------- /models/model_protection_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_protection_result.go -------------------------------------------------------------------------------- /models/model_provide_loc_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_provide_loc_info.go -------------------------------------------------------------------------------- /models/model_provide_pos_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_provide_pos_info.go -------------------------------------------------------------------------------- /models/model_ps_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ps_location.go -------------------------------------------------------------------------------- /models/model_ps_user_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ps_user_state.go -------------------------------------------------------------------------------- /models/model_psa_indication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_psa_indication.go -------------------------------------------------------------------------------- /models/model_psa_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_psa_information.go -------------------------------------------------------------------------------- /models/model_ptw_parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ptw_parameters.go -------------------------------------------------------------------------------- /models/model_public_identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_public_identifier.go -------------------------------------------------------------------------------- /models/model_public_identities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_public_identities.go -------------------------------------------------------------------------------- /models/model_public_identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_public_identity.go -------------------------------------------------------------------------------- /models/model_pws_error_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pws_error_data.go -------------------------------------------------------------------------------- /models/model_pws_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pws_information.go -------------------------------------------------------------------------------- /models/model_pws_response_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_pws_response_data.go -------------------------------------------------------------------------------- /models/model_qos_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_qos_data.go -------------------------------------------------------------------------------- /models/model_qos_flow_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_qos_flow_item.go -------------------------------------------------------------------------------- /models/model_qos_flow_tunnel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_qos_flow_tunnel.go -------------------------------------------------------------------------------- /models/model_qos_flow_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_qos_flow_usage.go -------------------------------------------------------------------------------- /models/model_qos_notif_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_qos_notif_type.go -------------------------------------------------------------------------------- /models/model_qos_requirement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_qos_requirement.go -------------------------------------------------------------------------------- /models/model_qos_resource_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_qos_resource_type.go -------------------------------------------------------------------------------- /models/model_query_parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_query_parameter.go -------------------------------------------------------------------------------- /models/model_ran_nas_rel_cause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ran_nas_rel_cause.go -------------------------------------------------------------------------------- /models/model_range_class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_range_class.go -------------------------------------------------------------------------------- /models/model_ranking_criterion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ranking_criterion.go -------------------------------------------------------------------------------- /models/model_rat_selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_rat_selector.go -------------------------------------------------------------------------------- /models/model_rat_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_rat_type.go -------------------------------------------------------------------------------- /models/model_reachable_ue_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_reachable_ue_info.go -------------------------------------------------------------------------------- /models/model_recipient_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_recipient_address.go -------------------------------------------------------------------------------- /models/model_recipient_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_recipient_info.go -------------------------------------------------------------------------------- /models/model_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_record.go -------------------------------------------------------------------------------- /models/model_record_id_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_record_id_list.go -------------------------------------------------------------------------------- /models/model_record_meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_record_meta.go -------------------------------------------------------------------------------- /models/model_record_operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_record_operation.go -------------------------------------------------------------------------------- /models/model_redirect_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_redirect_response.go -------------------------------------------------------------------------------- /models/model_redirect_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_redirect_server.go -------------------------------------------------------------------------------- /models/model_registration_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_registration_type.go -------------------------------------------------------------------------------- /models/model_release_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_release_data.go -------------------------------------------------------------------------------- /models/model_released_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_released_data.go -------------------------------------------------------------------------------- /models/model_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_report.go -------------------------------------------------------------------------------- /models/model_report_amount_mdt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_report_amount_mdt.go -------------------------------------------------------------------------------- /models/model_report_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_report_item.go -------------------------------------------------------------------------------- /models/model_report_type_mdt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_report_type_mdt.go -------------------------------------------------------------------------------- /models/model_reporting_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_reporting_area.go -------------------------------------------------------------------------------- /models/model_reporting_level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_reporting_level.go -------------------------------------------------------------------------------- /models/model_reporting_trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_reporting_trigger.go -------------------------------------------------------------------------------- /models/model_repository_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_repository_data.go -------------------------------------------------------------------------------- /models/model_request_direction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_request_direction.go -------------------------------------------------------------------------------- /models/model_request_loc_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_request_loc_info.go -------------------------------------------------------------------------------- /models/model_request_pos_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_request_pos_info.go -------------------------------------------------------------------------------- /models/model_request_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_request_type.go -------------------------------------------------------------------------------- /models/model_requested_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_requested_context.go -------------------------------------------------------------------------------- /models/model_requested_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_requested_node.go -------------------------------------------------------------------------------- /models/model_requested_qos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_requested_qos.go -------------------------------------------------------------------------------- /models/model_requested_unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_requested_unit.go -------------------------------------------------------------------------------- /models/model_reserv_priority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_reserv_priority.go -------------------------------------------------------------------------------- /models/model_resource_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_resource_item.go -------------------------------------------------------------------------------- /models/model_resource_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_resource_status.go -------------------------------------------------------------------------------- /models/model_resource_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_resource_usage.go -------------------------------------------------------------------------------- /models/model_response_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_response_time.go -------------------------------------------------------------------------------- /models/model_restoration_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_restoration_info.go -------------------------------------------------------------------------------- /models/model_restricted_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_restricted_snssai.go -------------------------------------------------------------------------------- /models/model_restriction_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_restriction_type.go -------------------------------------------------------------------------------- /models/model_retrieve_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_retrieve_data.go -------------------------------------------------------------------------------- /models/model_retrieve_records.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_retrieve_records.go -------------------------------------------------------------------------------- /models/model_retrieved_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_retrieved_data.go -------------------------------------------------------------------------------- /models/model_revoked_cause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_revoked_cause.go -------------------------------------------------------------------------------- /models/model_rg_auth_ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_rg_auth_ctx.go -------------------------------------------------------------------------------- /models/model_rm_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_rm_info.go -------------------------------------------------------------------------------- /models/model_rm_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_rm_state.go -------------------------------------------------------------------------------- /models/model_roamer_in_out.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_roamer_in_out.go -------------------------------------------------------------------------------- /models/model_roaming_odb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_roaming_odb.go -------------------------------------------------------------------------------- /models/model_role_of_ims_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_role_of_ims_node.go -------------------------------------------------------------------------------- /models/model_role_of_ue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_role_of_ue.go -------------------------------------------------------------------------------- /models/model_route_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_route_information.go -------------------------------------------------------------------------------- /models/model_route_to_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_route_to_location.go -------------------------------------------------------------------------------- /models/model_routing_area_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_routing_area_id.go -------------------------------------------------------------------------------- /models/model_rsn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_rsn.go -------------------------------------------------------------------------------- /models/model_rule_operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_rule_operation.go -------------------------------------------------------------------------------- /models/model_rule_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_rule_report.go -------------------------------------------------------------------------------- /models/model_rule_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_rule_status.go -------------------------------------------------------------------------------- /models/model_sac_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sac_event.go -------------------------------------------------------------------------------- /models/model_sac_event_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sac_event_report.go -------------------------------------------------------------------------------- /models/model_sac_event_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sac_event_state.go -------------------------------------------------------------------------------- /models/model_sac_event_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sac_event_status.go -------------------------------------------------------------------------------- /models/model_sac_event_trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sac_event_trigger.go -------------------------------------------------------------------------------- /models/model_sac_event_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sac_event_type.go -------------------------------------------------------------------------------- /models/model_sac_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sac_info.go -------------------------------------------------------------------------------- /models/model_sbi_binding_level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sbi_binding_level.go -------------------------------------------------------------------------------- /models/model_sc_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sc_type.go -------------------------------------------------------------------------------- /models/model_scp_capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_scp_capability.go -------------------------------------------------------------------------------- /models/model_scp_domain_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_scp_domain_cond.go -------------------------------------------------------------------------------- /models/model_scp_domain_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_scp_domain_info.go -------------------------------------------------------------------------------- /models/model_scp_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_scp_info.go -------------------------------------------------------------------------------- /models/model_sd_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sd_range.go -------------------------------------------------------------------------------- /models/model_sdm_data_set_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sdm_data_set_name.go -------------------------------------------------------------------------------- /models/model_sdm_subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sdm_subscription.go -------------------------------------------------------------------------------- /models/model_sdp_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sdp_description.go -------------------------------------------------------------------------------- /models/model_sdp_time_stamps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sdp_time_stamps.go -------------------------------------------------------------------------------- /models/model_sdp_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sdp_type.go -------------------------------------------------------------------------------- /models/model_seaf_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_seaf_data.go -------------------------------------------------------------------------------- /models/model_search_comparison.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_search_comparison.go -------------------------------------------------------------------------------- /models/model_search_condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_search_condition.go -------------------------------------------------------------------------------- /models/model_search_expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_search_expression.go -------------------------------------------------------------------------------- /models/model_search_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_search_result.go -------------------------------------------------------------------------------- /models/model_security_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_security_result.go -------------------------------------------------------------------------------- /models/model_send_sms_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_send_sms_request.go -------------------------------------------------------------------------------- /models/model_sepp_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sepp_info.go -------------------------------------------------------------------------------- /models/model_sequence_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sequence_number.go -------------------------------------------------------------------------------- /models/model_serv_auth_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_serv_auth_info.go -------------------------------------------------------------------------------- /models/model_service_area_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_service_area_id.go -------------------------------------------------------------------------------- /models/model_service_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_service_name.go -------------------------------------------------------------------------------- /models/model_service_name_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_service_name_cond.go -------------------------------------------------------------------------------- /models/model_service_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_service_type.go -------------------------------------------------------------------------------- /models/model_serving_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_serving_location.go -------------------------------------------------------------------------------- /models/model_session_failover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_session_failover.go -------------------------------------------------------------------------------- /models/model_session_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_session_rule.go -------------------------------------------------------------------------------- /models/model_sgsn_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sgsn_address.go -------------------------------------------------------------------------------- /models/model_sharing_level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sharing_level.go -------------------------------------------------------------------------------- /models/model_sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sign.go -------------------------------------------------------------------------------- /models/model_sip_digest_qop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sip_digest_qop.go -------------------------------------------------------------------------------- /models/model_sip_event_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sip_event_type.go -------------------------------------------------------------------------------- /models/model_slice_mbr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_slice_mbr.go -------------------------------------------------------------------------------- /models/model_slice_mbr_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_slice_mbr_rm.go -------------------------------------------------------------------------------- /models/model_slice_policy_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_slice_policy_data.go -------------------------------------------------------------------------------- /models/model_sm_address_domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_address_domain.go -------------------------------------------------------------------------------- /models/model_sm_address_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_address_info.go -------------------------------------------------------------------------------- /models/model_sm_address_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_address_type.go -------------------------------------------------------------------------------- /models/model_sm_addressee_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_addressee_type.go -------------------------------------------------------------------------------- /models/model_sm_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_context.go -------------------------------------------------------------------------------- /models/model_sm_context_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_context_status.go -------------------------------------------------------------------------------- /models/model_sm_context_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_context_type.go -------------------------------------------------------------------------------- /models/model_sm_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_interface.go -------------------------------------------------------------------------------- /models/model_sm_message_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_message_type.go -------------------------------------------------------------------------------- /models/model_sm_nas_from_smf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_nas_from_smf.go -------------------------------------------------------------------------------- /models/model_sm_nas_from_ue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_nas_from_ue.go -------------------------------------------------------------------------------- /models/model_sm_policy_control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_policy_control.go -------------------------------------------------------------------------------- /models/model_sm_policy_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_policy_data.go -------------------------------------------------------------------------------- /models/model_sm_priority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_priority.go -------------------------------------------------------------------------------- /models/model_sm_service_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_service_type.go -------------------------------------------------------------------------------- /models/model_sm_subs_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sm_subs_data.go -------------------------------------------------------------------------------- /models/model_smcce_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_smcce_info.go -------------------------------------------------------------------------------- /models/model_smcce_ue_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_smcce_ue_list.go -------------------------------------------------------------------------------- /models/model_smf_change_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_smf_change_info.go -------------------------------------------------------------------------------- /models/model_smf_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_smf_event.go -------------------------------------------------------------------------------- /models/model_smf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_smf_info.go -------------------------------------------------------------------------------- /models/model_smf_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_smf_registration.go -------------------------------------------------------------------------------- /models/model_sms_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sms_data.go -------------------------------------------------------------------------------- /models/model_sms_delivery_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sms_delivery_data.go -------------------------------------------------------------------------------- /models/model_sms_indication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sms_indication.go -------------------------------------------------------------------------------- /models/model_sms_router_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sms_router_info.go -------------------------------------------------------------------------------- /models/model_sms_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sms_support.go -------------------------------------------------------------------------------- /models/model_smsc_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_smsc_data.go -------------------------------------------------------------------------------- /models/model_smsf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_smsf_info.go -------------------------------------------------------------------------------- /models/model_smsf_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_smsf_registration.go -------------------------------------------------------------------------------- /models/model_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_snssai.go -------------------------------------------------------------------------------- /models/model_snssai_dnn_pair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_snssai_dnn_pair.go -------------------------------------------------------------------------------- /models/model_snssai_extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_snssai_extension.go -------------------------------------------------------------------------------- /models/model_snssai_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_snssai_info.go -------------------------------------------------------------------------------- /models/model_snssai_info_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_snssai_info_item.go -------------------------------------------------------------------------------- /models/model_sor_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sor_data.go -------------------------------------------------------------------------------- /models/model_sor_security_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sor_security_info.go -------------------------------------------------------------------------------- /models/model_sor_update_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sor_update_info.go -------------------------------------------------------------------------------- /models/model_spatial_validity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_spatial_validity.go -------------------------------------------------------------------------------- /models/model_sponsoring_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sponsoring_status.go -------------------------------------------------------------------------------- /models/model_spt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_spt.go -------------------------------------------------------------------------------- /models/model_sqn_scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_sqn_scheme.go -------------------------------------------------------------------------------- /models/model_srvcc_capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_srvcc_capability.go -------------------------------------------------------------------------------- /models/model_srvcc_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_srvcc_data.go -------------------------------------------------------------------------------- /models/model_ssc_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ssc_mode.go -------------------------------------------------------------------------------- /models/model_ssc_modes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ssc_modes.go -------------------------------------------------------------------------------- /models/model_ssm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ssm.go -------------------------------------------------------------------------------- /models/model_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_status.go -------------------------------------------------------------------------------- /models/model_status_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_status_change.go -------------------------------------------------------------------------------- /models/model_status_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_status_info.go -------------------------------------------------------------------------------- /models/model_steer_mode_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_steer_mode_value.go -------------------------------------------------------------------------------- /models/model_steering_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_steering_mode.go -------------------------------------------------------------------------------- /models/model_storage_outcome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_storage_outcome.go -------------------------------------------------------------------------------- /models/model_subscr_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_subscr_cond.go -------------------------------------------------------------------------------- /models/model_subscribed_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_subscribed_event.go -------------------------------------------------------------------------------- /models/model_subscribed_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_subscribed_snssai.go -------------------------------------------------------------------------------- /models/model_suci_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_suci_info.go -------------------------------------------------------------------------------- /models/model_supi_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_supi_info.go -------------------------------------------------------------------------------- /models/model_supi_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_supi_range.go -------------------------------------------------------------------------------- /models/model_supported_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_supported_snssai.go -------------------------------------------------------------------------------- /models/model_svc_experience.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_svc_experience.go -------------------------------------------------------------------------------- /models/model_tac_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tac_info.go -------------------------------------------------------------------------------- /models/model_tac_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tac_range.go -------------------------------------------------------------------------------- /models/model_tad_identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tad_identifier.go -------------------------------------------------------------------------------- /models/model_tads_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tads_information.go -------------------------------------------------------------------------------- /models/model_tag_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tag_type.go -------------------------------------------------------------------------------- /models/model_tai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tai.go -------------------------------------------------------------------------------- /models/model_tai_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tai_range.go -------------------------------------------------------------------------------- /models/model_target_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_target_area.go -------------------------------------------------------------------------------- /models/model_target_dnai_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_target_dnai_info.go -------------------------------------------------------------------------------- /models/model_temporal_validity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_temporal_validity.go -------------------------------------------------------------------------------- /models/model_termination_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_termination_info.go -------------------------------------------------------------------------------- /models/model_threshold_level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_threshold_level.go -------------------------------------------------------------------------------- /models/model_threshold_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_threshold_value.go -------------------------------------------------------------------------------- /models/model_throughput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_throughput.go -------------------------------------------------------------------------------- /models/model_time_period.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_time_period.go -------------------------------------------------------------------------------- /models/model_time_unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_time_unit.go -------------------------------------------------------------------------------- /models/model_time_window.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_time_window.go -------------------------------------------------------------------------------- /models/model_timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_timer.go -------------------------------------------------------------------------------- /models/model_timer_id_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_timer_id_list.go -------------------------------------------------------------------------------- /models/model_tmgi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tmgi.go -------------------------------------------------------------------------------- /models/model_tmgi_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tmgi_range.go -------------------------------------------------------------------------------- /models/model_tnap_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tnap_id.go -------------------------------------------------------------------------------- /models/model_tngf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tngf_info.go -------------------------------------------------------------------------------- /models/model_top_application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_top_application.go -------------------------------------------------------------------------------- /models/model_trace_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_trace_data.go -------------------------------------------------------------------------------- /models/model_trace_depth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_trace_depth.go -------------------------------------------------------------------------------- /models/model_traffic_influ_sub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_traffic_influ_sub.go -------------------------------------------------------------------------------- /models/model_traffic_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_traffic_profile.go -------------------------------------------------------------------------------- /models/model_transaction_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_transaction_info.go -------------------------------------------------------------------------------- /models/model_transfer_reason.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_transfer_reason.go -------------------------------------------------------------------------------- /models/model_transmitter_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_transmitter_info.go -------------------------------------------------------------------------------- /models/model_trigger_category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_trigger_category.go -------------------------------------------------------------------------------- /models/model_trigger_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_trigger_point.go -------------------------------------------------------------------------------- /models/model_trigger_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_trigger_request.go -------------------------------------------------------------------------------- /models/model_trunk_group_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_trunk_group_id.go -------------------------------------------------------------------------------- /models/model_trust_af_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_trust_af_info.go -------------------------------------------------------------------------------- /models/model_tsctsf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tsctsf_info.go -------------------------------------------------------------------------------- /models/model_tsn_bridge_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tsn_bridge_info.go -------------------------------------------------------------------------------- /models/model_tsn_qos_container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tsn_qos_container.go -------------------------------------------------------------------------------- /models/model_tunnel_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_tunnel_info.go -------------------------------------------------------------------------------- /models/model_twap_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_twap_id.go -------------------------------------------------------------------------------- /models/model_twif_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_twif_info.go -------------------------------------------------------------------------------- /models/model_type_of_condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_type_of_condition.go -------------------------------------------------------------------------------- /models/model_uav_auth_failure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_uav_auth_failure.go -------------------------------------------------------------------------------- /models/model_uc_purpose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_uc_purpose.go -------------------------------------------------------------------------------- /models/model_udm_ee_event_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_udm_ee_event_type.go -------------------------------------------------------------------------------- /models/model_udm_ee_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_udm_ee_report.go -------------------------------------------------------------------------------- /models/model_udm_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_udm_info.go -------------------------------------------------------------------------------- /models/model_udm_mt_ue_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_udm_mt_ue_info.go -------------------------------------------------------------------------------- /models/model_udm_sdm_amf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_udm_sdm_amf_info.go -------------------------------------------------------------------------------- /models/model_udm_sdm_ip_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_udm_sdm_ip_index.go -------------------------------------------------------------------------------- /models/model_udm_sdm_sor_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_udm_sdm_sor_info.go -------------------------------------------------------------------------------- /models/model_udm_sdm_ue_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_udm_sdm_ue_id.go -------------------------------------------------------------------------------- /models/model_udm_sdm_upu_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_udm_sdm_upu_info.go -------------------------------------------------------------------------------- /models/model_udr_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_udr_info.go -------------------------------------------------------------------------------- /models/model_udsf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_udsf_info.go -------------------------------------------------------------------------------- /models/model_ue_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_auth.go -------------------------------------------------------------------------------- /models/model_ue_camping_rep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_camping_rep.go -------------------------------------------------------------------------------- /models/model_ue_communication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_communication.go -------------------------------------------------------------------------------- /models/model_ue_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_context.go -------------------------------------------------------------------------------- /models/model_ue_context_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_context_info.go -------------------------------------------------------------------------------- /models/model_ue_id_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_id_ext.go -------------------------------------------------------------------------------- /models/model_ue_identity_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_identity_info.go -------------------------------------------------------------------------------- /models/model_ue_in_area_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_in_area_filter.go -------------------------------------------------------------------------------- /models/model_ue_lcs_capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_lcs_capability.go -------------------------------------------------------------------------------- /models/model_ue_location_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_location_info.go -------------------------------------------------------------------------------- /models/model_ue_mobility.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_mobility.go -------------------------------------------------------------------------------- /models/model_ue_mobility_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_mobility_info.go -------------------------------------------------------------------------------- /models/model_ue_policy_section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_policy_section.go -------------------------------------------------------------------------------- /models/model_ue_policy_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_policy_set.go -------------------------------------------------------------------------------- /models/model_ue_reachability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_reachability.go -------------------------------------------------------------------------------- /models/model_ue_reachable_ind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_reachable_ind.go -------------------------------------------------------------------------------- /models/model_ue_slice_mbr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_slice_mbr.go -------------------------------------------------------------------------------- /models/model_ue_transfer_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_transfer_type.go -------------------------------------------------------------------------------- /models/model_ue_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_type.go -------------------------------------------------------------------------------- /models/model_ue_update_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ue_update_status.go -------------------------------------------------------------------------------- /models/model_umt_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_umt_time.go -------------------------------------------------------------------------------- /models/model_un_trust_af_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_un_trust_af_info.go -------------------------------------------------------------------------------- /models/model_unrelated_class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_unrelated_class.go -------------------------------------------------------------------------------- /models/model_up_cnx_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_up_cnx_state.go -------------------------------------------------------------------------------- /models/model_up_integrity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_up_integrity.go -------------------------------------------------------------------------------- /models/model_up_interface_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_up_interface_type.go -------------------------------------------------------------------------------- /models/model_up_path_chg_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_up_path_chg_event.go -------------------------------------------------------------------------------- /models/model_up_security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_up_security.go -------------------------------------------------------------------------------- /models/model_up_security_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_up_security_info.go -------------------------------------------------------------------------------- /models/model_updated_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_updated_item.go -------------------------------------------------------------------------------- /models/model_upf_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_upf_cond.go -------------------------------------------------------------------------------- /models/model_upf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_upf_info.go -------------------------------------------------------------------------------- /models/model_upf_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_upf_information.go -------------------------------------------------------------------------------- /models/model_upu_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_upu_data.go -------------------------------------------------------------------------------- /models/model_upu_security_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_upu_security_info.go -------------------------------------------------------------------------------- /models/model_uri_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_uri_list.go -------------------------------------------------------------------------------- /models/model_uri_scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_uri_scheme.go -------------------------------------------------------------------------------- /models/model_ursp_rule_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_ursp_rule_request.go -------------------------------------------------------------------------------- /models/model_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_usage.go -------------------------------------------------------------------------------- /models/model_usage_mon_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_usage_mon_data.go -------------------------------------------------------------------------------- /models/model_usage_mon_level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_usage_mon_level.go -------------------------------------------------------------------------------- /models/model_usage_threshold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_usage_threshold.go -------------------------------------------------------------------------------- /models/model_user_consent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_user_consent.go -------------------------------------------------------------------------------- /models/model_user_identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_user_identifier.go -------------------------------------------------------------------------------- /models/model_user_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_user_location.go -------------------------------------------------------------------------------- /models/model_user_plane_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_user_plane_event.go -------------------------------------------------------------------------------- /models/model_user_state_cs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_user_state_cs.go -------------------------------------------------------------------------------- /models/model_user_state_ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_user_state_ps.go -------------------------------------------------------------------------------- /models/model_utra_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_utra_location.go -------------------------------------------------------------------------------- /models/model_uuaa_mm_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_uuaa_mm_status.go -------------------------------------------------------------------------------- /models/model_v2x_capability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_v2x_capability.go -------------------------------------------------------------------------------- /models/model_v2x_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_v2x_context.go -------------------------------------------------------------------------------- /models/model_v2x_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_v2x_information.go -------------------------------------------------------------------------------- /models/model_valid_time_period.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_valid_time_period.go -------------------------------------------------------------------------------- /models/model_var_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_var_snssai.go -------------------------------------------------------------------------------- /models/model_variable_part.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_variable_part.go -------------------------------------------------------------------------------- /models/model_velocity_estimate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_velocity_estimate.go -------------------------------------------------------------------------------- /models/model_vgmlc_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_vgmlc_address.go -------------------------------------------------------------------------------- /models/model_virtual_resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_virtual_resource.go -------------------------------------------------------------------------------- /models/model_vn_group_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_vn_group_data.go -------------------------------------------------------------------------------- /models/model_vplmn_qos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_vplmn_qos.go -------------------------------------------------------------------------------- /models/model_vsmf_update_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_vsmf_update_data.go -------------------------------------------------------------------------------- /models/model_vsmf_update_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_vsmf_update_error.go -------------------------------------------------------------------------------- /models/model_vsmf_updated_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_vsmf_updated_data.go -------------------------------------------------------------------------------- /models/model_w_agf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_w_agf_info.go -------------------------------------------------------------------------------- /models/model_wireline_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/models/model_wireline_area.go -------------------------------------------------------------------------------- /multipart_related.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/multipart_related.go -------------------------------------------------------------------------------- /nef/AsSessionWithQoS/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nef/AsSessionWithQoS/client.go -------------------------------------------------------------------------------- /nef/Authentication/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nef/Authentication/client.go -------------------------------------------------------------------------------- /nef/EASDeployment/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nef/EASDeployment/client.go -------------------------------------------------------------------------------- /nef/EventExposure/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nef/EventExposure/client.go -------------------------------------------------------------------------------- /nef/PFDmanagement/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nef/PFDmanagement/client.go -------------------------------------------------------------------------------- /nef/SMContext/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nef/SMContext/client.go -------------------------------------------------------------------------------- /nef/SMContext/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nef/SMContext/configuration.go -------------------------------------------------------------------------------- /nef/SMService/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nef/SMService/client.go -------------------------------------------------------------------------------- /nef/SMService/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nef/SMService/configuration.go -------------------------------------------------------------------------------- /nef/TrafficInfluence/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nef/TrafficInfluence/client.go -------------------------------------------------------------------------------- /nrf/AccessToken/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nrf/AccessToken/client.go -------------------------------------------------------------------------------- /nrf/Bootstrapping/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nrf/Bootstrapping/client.go -------------------------------------------------------------------------------- /nrf/NFDiscovery/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nrf/NFDiscovery/client.go -------------------------------------------------------------------------------- /nrf/NFManagement/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nrf/NFManagement/client.go -------------------------------------------------------------------------------- /nrf/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nrf/service.go -------------------------------------------------------------------------------- /nrf/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nrf/service_test.go -------------------------------------------------------------------------------- /nssf/NSSelection/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nssf/NSSelection/client.go -------------------------------------------------------------------------------- /nwdaf/AnalyticsInfo/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nwdaf/AnalyticsInfo/client.go -------------------------------------------------------------------------------- /nwdaf/DataManagement/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/nwdaf/DataManagement/client.go -------------------------------------------------------------------------------- /oauth/get_token_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/oauth/get_token_context.go -------------------------------------------------------------------------------- /oauth/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/oauth/oauth.go -------------------------------------------------------------------------------- /pcf/AMPolicyControl/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/pcf/AMPolicyControl/client.go -------------------------------------------------------------------------------- /pcf/BDTPolicyControl/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/pcf/BDTPolicyControl/client.go -------------------------------------------------------------------------------- /pcf/EventExposure/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/pcf/EventExposure/client.go -------------------------------------------------------------------------------- /pcf/MBSPolicyControl/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/pcf/MBSPolicyControl/client.go -------------------------------------------------------------------------------- /pcf/SMPolicyControl/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/pcf/SMPolicyControl/client.go -------------------------------------------------------------------------------- /pcf/UEPolicyControl/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/pcf/UEPolicyControl/client.go -------------------------------------------------------------------------------- /problem_details.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/problem_details.go -------------------------------------------------------------------------------- /serialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/serialize.go -------------------------------------------------------------------------------- /smf/EventExposure/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/smf/EventExposure/client.go -------------------------------------------------------------------------------- /smf/NIDD/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/smf/NIDD/client.go -------------------------------------------------------------------------------- /smf/NIDD/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/smf/NIDD/configuration.go -------------------------------------------------------------------------------- /smf/PDUSession/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/smf/PDUSession/client.go -------------------------------------------------------------------------------- /smf/PDUSession/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/smf/PDUSession/configuration.go -------------------------------------------------------------------------------- /supported_feature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/supported_feature.go -------------------------------------------------------------------------------- /supported_feature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/supported_feature_test.go -------------------------------------------------------------------------------- /udm/EventExposure/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udm/EventExposure/client.go -------------------------------------------------------------------------------- /udm/MT/api_query_ue_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udm/MT/api_query_ue_info.go -------------------------------------------------------------------------------- /udm/MT/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udm/MT/client.go -------------------------------------------------------------------------------- /udm/MT/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udm/MT/configuration.go -------------------------------------------------------------------------------- /udm/UEAuthentication/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udm/UEAuthentication/client.go -------------------------------------------------------------------------------- /udm/UEID/api_deconceal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udm/UEID/api_deconceal.go -------------------------------------------------------------------------------- /udm/UEID/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udm/UEID/client.go -------------------------------------------------------------------------------- /udm/UEID/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udm/UEID/configuration.go -------------------------------------------------------------------------------- /udr/DataRepository/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udr/DataRepository/client.go -------------------------------------------------------------------------------- /udr/GroupIDmap/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udr/GroupIDmap/client.go -------------------------------------------------------------------------------- /udr/GroupIDmap/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udr/GroupIDmap/configuration.go -------------------------------------------------------------------------------- /udr/ImsDataRepository/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udr/ImsDataRepository/client.go -------------------------------------------------------------------------------- /udsf/DataRepository/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udsf/DataRepository/client.go -------------------------------------------------------------------------------- /udsf/Timer/api_timer_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udsf/Timer/api_timer_get.go -------------------------------------------------------------------------------- /udsf/Timer/api_timer_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udsf/Timer/api_timer_search.go -------------------------------------------------------------------------------- /udsf/Timer/api_timer_start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udsf/Timer/api_timer_start.go -------------------------------------------------------------------------------- /udsf/Timer/api_timer_stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udsf/Timer/api_timer_stop.go -------------------------------------------------------------------------------- /udsf/Timer/api_timer_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udsf/Timer/api_timer_update.go -------------------------------------------------------------------------------- /udsf/Timer/api_timers_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udsf/Timer/api_timers_delete.go -------------------------------------------------------------------------------- /udsf/Timer/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udsf/Timer/client.go -------------------------------------------------------------------------------- /udsf/Timer/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/udsf/Timer/configuration.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/util.go -------------------------------------------------------------------------------- /util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free5gc/openapi/HEAD/util_test.go --------------------------------------------------------------------------------