/* * ausf_info.h * * */ #ifndef _OpenAPI_ausf_info_H_ #define _OpenAPI_ausf_info_H_ #include #include "../external/cJSON.h" #include "../include/list.h" #include "../include/keyValuePair.h" #include "../include/binary.h" #include "supi_range.h" #ifdef __cplusplus extern "C" { #endif typedef struct OpenAPI_ausf_info_s OpenAPI_ausf_info_t; typedef struct OpenAPI_ausf_info_s { char *group_id; OpenAPI_list_t *supi_ranges; OpenAPI_list_t *routing_indicators; } OpenAPI_ausf_info_t; OpenAPI_ausf_info_t *OpenAPI_ausf_info_create( char *group_id, OpenAPI_list_t *supi_ranges, OpenAPI_list_t *routing_indicators ); void OpenAPI_ausf_info_free(OpenAPI_ausf_info_t *ausf_info); OpenAPI_ausf_info_t *OpenAPI_ausf_info_parseFromJSON(cJSON *ausf_infoJSON); cJSON *OpenAPI_ausf_info_convertToJSON(OpenAPI_ausf_info_t *ausf_info); #ifdef __cplusplus } #endif #endif /* _OpenAPI_ausf_info_H_ */