Add AUSF, UDM, and UDR

This commit is contained in:
Sukchan Lee 2020-06-04 14:12:05 -04:00
parent 0c0241d5e5
commit 72370ff0b2
1151 changed files with 140173 additions and 24799 deletions

View file

@ -0,0 +1,49 @@
/*
* lcs_client_non_external.h
*
*
*/
#ifndef _OpenAPI_lcs_client_non_external_H_
#define _OpenAPI_lcs_client_non_external_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "code_word_ind.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_non_external_s OpenAPI_lcs_client_non_external_t;
typedef struct OpenAPI_lcs_client_non_external_s {
char *lcs_client_id;
OpenAPI_list_t *allowed_geographic_area;
OpenAPI_privacy_check_related_action_e privacy_check_related_action;
OpenAPI_code_word_ind_e code_word_ind;
struct OpenAPI_valid_time_period_s *valid_time_period;
} OpenAPI_lcs_client_non_external_t;
OpenAPI_lcs_client_non_external_t *OpenAPI_lcs_client_non_external_create(
char *lcs_client_id,
OpenAPI_list_t *allowed_geographic_area,
OpenAPI_privacy_check_related_action_e privacy_check_related_action,
OpenAPI_code_word_ind_e code_word_ind,
OpenAPI_valid_time_period_t *valid_time_period
);
void OpenAPI_lcs_client_non_external_free(OpenAPI_lcs_client_non_external_t *lcs_client_non_external);
OpenAPI_lcs_client_non_external_t *OpenAPI_lcs_client_non_external_parseFromJSON(cJSON *lcs_client_non_externalJSON);
cJSON *OpenAPI_lcs_client_non_external_convertToJSON(OpenAPI_lcs_client_non_external_t *lcs_client_non_external);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_lcs_client_non_external_H_ */