mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +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
41
lib/sbi/openapi/model/ue_analytics_context_descriptor.h
Normal file
41
lib/sbi/openapi/model/ue_analytics_context_descriptor.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* ue_analytics_context_descriptor.h
|
||||
*
|
||||
* Contains information about available UE related analytics contexts.
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_ue_analytics_context_descriptor_H_
|
||||
#define _OpenAPI_ue_analytics_context_descriptor_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "nwdaf_event.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_ue_analytics_context_descriptor_s OpenAPI_ue_analytics_context_descriptor_t;
|
||||
typedef struct OpenAPI_ue_analytics_context_descriptor_s {
|
||||
char *supi;
|
||||
OpenAPI_list_t *ana_types;
|
||||
} OpenAPI_ue_analytics_context_descriptor_t;
|
||||
|
||||
OpenAPI_ue_analytics_context_descriptor_t *OpenAPI_ue_analytics_context_descriptor_create(
|
||||
char *supi,
|
||||
OpenAPI_list_t *ana_types
|
||||
);
|
||||
void OpenAPI_ue_analytics_context_descriptor_free(OpenAPI_ue_analytics_context_descriptor_t *ue_analytics_context_descriptor);
|
||||
OpenAPI_ue_analytics_context_descriptor_t *OpenAPI_ue_analytics_context_descriptor_parseFromJSON(cJSON *ue_analytics_context_descriptorJSON);
|
||||
cJSON *OpenAPI_ue_analytics_context_descriptor_convertToJSON(OpenAPI_ue_analytics_context_descriptor_t *ue_analytics_context_descriptor);
|
||||
OpenAPI_ue_analytics_context_descriptor_t *OpenAPI_ue_analytics_context_descriptor_copy(OpenAPI_ue_analytics_context_descriptor_t *dst, OpenAPI_ue_analytics_context_descriptor_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_ue_analytics_context_descriptor_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue