[Release-17] Upgrade SBI to v17.x.0

This commit is contained in:
Sukchan Lee 2023-03-01 19:56:49 +09:00
parent 969c116e77
commit 4d44b1843e
1687 changed files with 121604 additions and 9310 deletions

View file

@ -1,7 +1,7 @@
/*
* n2_info_notification_rsp_data.h
*
*
* Data within a N2 information notification response
*/
#ifndef _OpenAPI_n2_info_notification_rsp_data_H_
@ -12,7 +12,7 @@
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "n2_info_content.h"
#include "n2_sm_information.h"
#ifdef __cplusplus
extern "C" {
@ -20,11 +20,11 @@ extern "C" {
typedef struct OpenAPI_n2_info_notification_rsp_data_s OpenAPI_n2_info_notification_rsp_data_t;
typedef struct OpenAPI_n2_info_notification_rsp_data_s {
struct OpenAPI_n2_info_content_s *n2_info_content;
OpenAPI_list_t *sec_rat_data_usage_list;
} OpenAPI_n2_info_notification_rsp_data_t;
OpenAPI_n2_info_notification_rsp_data_t *OpenAPI_n2_info_notification_rsp_data_create(
OpenAPI_n2_info_content_t *n2_info_content
OpenAPI_list_t *sec_rat_data_usage_list
);
void OpenAPI_n2_info_notification_rsp_data_free(OpenAPI_n2_info_notification_rsp_data_t *n2_info_notification_rsp_data);
OpenAPI_n2_info_notification_rsp_data_t *OpenAPI_n2_info_notification_rsp_data_parseFromJSON(cJSON *n2_info_notification_rsp_dataJSON);