mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 07:08:11 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
52
lib/sbi/openapi/model/nwdaf_registration.h
Normal file
52
lib/sbi/openapi/model/nwdaf_registration.h
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
/*
|
||||
* nwdaf_registration.h
|
||||
*
|
||||
* The complete set of information relevant to an NWDAF serving the UE
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_nwdaf_registration_H_
|
||||
#define _OpenAPI_nwdaf_registration_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "context_info.h"
|
||||
#include "event_id.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_nwdaf_registration_s OpenAPI_nwdaf_registration_t;
|
||||
typedef struct OpenAPI_nwdaf_registration_s {
|
||||
char *nwdaf_instance_id;
|
||||
OpenAPI_list_t *analytics_ids;
|
||||
char *nwdaf_set_id;
|
||||
char *registration_time;
|
||||
struct OpenAPI_context_info_s *context_info;
|
||||
char *supported_features;
|
||||
OpenAPI_list_t *reset_ids;
|
||||
} OpenAPI_nwdaf_registration_t;
|
||||
|
||||
OpenAPI_nwdaf_registration_t *OpenAPI_nwdaf_registration_create(
|
||||
char *nwdaf_instance_id,
|
||||
OpenAPI_list_t *analytics_ids,
|
||||
char *nwdaf_set_id,
|
||||
char *registration_time,
|
||||
OpenAPI_context_info_t *context_info,
|
||||
char *supported_features,
|
||||
OpenAPI_list_t *reset_ids
|
||||
);
|
||||
void OpenAPI_nwdaf_registration_free(OpenAPI_nwdaf_registration_t *nwdaf_registration);
|
||||
OpenAPI_nwdaf_registration_t *OpenAPI_nwdaf_registration_parseFromJSON(cJSON *nwdaf_registrationJSON);
|
||||
cJSON *OpenAPI_nwdaf_registration_convertToJSON(OpenAPI_nwdaf_registration_t *nwdaf_registration);
|
||||
OpenAPI_nwdaf_registration_t *OpenAPI_nwdaf_registration_copy(OpenAPI_nwdaf_registration_t *dst, OpenAPI_nwdaf_registration_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_nwdaf_registration_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue