mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +00:00
Add AUSF, UDM, and UDR
This commit is contained in:
parent
0c0241d5e5
commit
72370ff0b2
1151 changed files with 140173 additions and 24799 deletions
44
lib/sbi/openapi/model/external_unrelated_class.h
Normal file
44
lib/sbi/openapi/model/external_unrelated_class.h
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
/*
|
||||
* external_unrelated_class.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_external_unrelated_class_H_
|
||||
#define _OpenAPI_external_unrelated_class_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "af_external.h"
|
||||
#include "lcs_client_external.h"
|
||||
#include "lcs_client_group_external.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_external_unrelated_class_s OpenAPI_external_unrelated_class_t;
|
||||
typedef struct OpenAPI_external_unrelated_class_s {
|
||||
OpenAPI_list_t *lcs_client_externals;
|
||||
OpenAPI_list_t *af_externals;
|
||||
OpenAPI_list_t *lcs_client_group_externals;
|
||||
} OpenAPI_external_unrelated_class_t;
|
||||
|
||||
OpenAPI_external_unrelated_class_t *OpenAPI_external_unrelated_class_create(
|
||||
OpenAPI_list_t *lcs_client_externals,
|
||||
OpenAPI_list_t *af_externals,
|
||||
OpenAPI_list_t *lcs_client_group_externals
|
||||
);
|
||||
void OpenAPI_external_unrelated_class_free(OpenAPI_external_unrelated_class_t *external_unrelated_class);
|
||||
OpenAPI_external_unrelated_class_t *OpenAPI_external_unrelated_class_parseFromJSON(cJSON *external_unrelated_classJSON);
|
||||
cJSON *OpenAPI_external_unrelated_class_convertToJSON(OpenAPI_external_unrelated_class_t *external_unrelated_class);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_external_unrelated_class_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue