/* * interface_upf_info_item.h * * */ #ifndef _OpenAPI_interface_upf_info_item_H_ #define _OpenAPI_interface_upf_info_item_H_ #include #include "../external/cJSON.h" #include "../include/list.h" #include "../include/keyValuePair.h" #include "../include/binary.h" #include "up_interface_type.h" #ifdef __cplusplus extern "C" { #endif typedef struct OpenAPI_interface_upf_info_item_s OpenAPI_interface_upf_info_item_t; typedef struct OpenAPI_interface_upf_info_item_s { struct OpenAPI_up_interface_type_s *interface_type; OpenAPI_list_t *ipv4_endpoint_addresses; OpenAPI_list_t *ipv6_endpoint_addresses; char *endpoint_fqdn; char *network_instance; } OpenAPI_interface_upf_info_item_t; OpenAPI_interface_upf_info_item_t *OpenAPI_interface_upf_info_item_create( OpenAPI_up_interface_type_t *interface_type, OpenAPI_list_t *ipv4_endpoint_addresses, OpenAPI_list_t *ipv6_endpoint_addresses, char *endpoint_fqdn, char *network_instance ); void OpenAPI_interface_upf_info_item_free(OpenAPI_interface_upf_info_item_t *interface_upf_info_item); OpenAPI_interface_upf_info_item_t *OpenAPI_interface_upf_info_item_parseFromJSON(cJSON *interface_upf_info_itemJSON); cJSON *OpenAPI_interface_upf_info_item_convertToJSON(OpenAPI_interface_upf_info_item_t *interface_upf_info_item); #ifdef __cplusplus } #endif #endif /* _OpenAPI_interface_upf_info_item_H_ */