/* * lcs_client_non_external.h * * */ #ifndef _OpenAPI_lcs_client_non_external_H_ #define _OpenAPI_lcs_client_non_external_H_ #include #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); OpenAPI_lcs_client_non_external_t *OpenAPI_lcs_client_non_external_copy(OpenAPI_lcs_client_non_external_t *dst, OpenAPI_lcs_client_non_external_t *src); #ifdef __cplusplus } #endif #endif /* _OpenAPI_lcs_client_non_external_H_ */