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/lcs_client_external.h
Normal file
44
lib/sbi/openapi/model/lcs_client_external.h
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
/*
|
||||
* lcs_client_external.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_lcs_client_external_H_
|
||||
#define _OpenAPI_lcs_client_external_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "geographic_area.h"
|
||||
#include "privacy_check_related_action.h"
|
||||
#include "valid_time_period.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_lcs_client_external_s OpenAPI_lcs_client_external_t;
|
||||
typedef struct OpenAPI_lcs_client_external_s {
|
||||
OpenAPI_list_t *allowed_geographic_area;
|
||||
OpenAPI_privacy_check_related_action_e privacy_check_related_action;
|
||||
struct OpenAPI_valid_time_period_s *valid_time_period;
|
||||
} OpenAPI_lcs_client_external_t;
|
||||
|
||||
OpenAPI_lcs_client_external_t *OpenAPI_lcs_client_external_create(
|
||||
OpenAPI_list_t *allowed_geographic_area,
|
||||
OpenAPI_privacy_check_related_action_e privacy_check_related_action,
|
||||
OpenAPI_valid_time_period_t *valid_time_period
|
||||
);
|
||||
void OpenAPI_lcs_client_external_free(OpenAPI_lcs_client_external_t *lcs_client_external);
|
||||
OpenAPI_lcs_client_external_t *OpenAPI_lcs_client_external_parseFromJSON(cJSON *lcs_client_externalJSON);
|
||||
cJSON *OpenAPI_lcs_client_external_convertToJSON(OpenAPI_lcs_client_external_t *lcs_client_external);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_lcs_client_external_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue