Files
open5gs/lib/sbi/openapi/model/notif_condition.h
Sukchan Lee d0673e3066 Added NRF
2020-05-18 17:00:37 -04:00

40 lines
1010 B
C

/*
* notif_condition.h
*
*
*/
#ifndef _OpenAPI_notif_condition_H_
#define _OpenAPI_notif_condition_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_notif_condition_s OpenAPI_notif_condition_t;
typedef struct OpenAPI_notif_condition_s {
OpenAPI_list_t *monitored_attributes;
OpenAPI_list_t *unmonitored_attributes;
} OpenAPI_notif_condition_t;
OpenAPI_notif_condition_t *OpenAPI_notif_condition_create(
OpenAPI_list_t *monitored_attributes,
OpenAPI_list_t *unmonitored_attributes
);
void OpenAPI_notif_condition_free(OpenAPI_notif_condition_t *notif_condition);
OpenAPI_notif_condition_t *OpenAPI_notif_condition_parseFromJSON(cJSON *notif_conditionJSON);
cJSON *OpenAPI_notif_condition_convertToJSON(OpenAPI_notif_condition_t *notif_condition);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_notif_condition_H_ */