open5gs/lib/sbi/openapi/model/pws_error_data.h
2020-06-17 01:22:28 -04:00

39 lines
976 B
C

/*
* pws_error_data.h
*
*
*/
#ifndef _OpenAPI_pws_error_data_H_
#define _OpenAPI_pws_error_data_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_pws_error_data_s OpenAPI_pws_error_data_t;
typedef struct OpenAPI_pws_error_data_s {
int namf_cause;
} OpenAPI_pws_error_data_t;
OpenAPI_pws_error_data_t *OpenAPI_pws_error_data_create(
int namf_cause
);
void OpenAPI_pws_error_data_free(OpenAPI_pws_error_data_t *pws_error_data);
OpenAPI_pws_error_data_t *OpenAPI_pws_error_data_parseFromJSON(cJSON *pws_error_dataJSON);
cJSON *OpenAPI_pws_error_data_convertToJSON(OpenAPI_pws_error_data_t *pws_error_data);
OpenAPI_pws_error_data_t *OpenAPI_pws_error_data_copy(OpenAPI_pws_error_data_t *dst, OpenAPI_pws_error_data_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_pws_error_data_H_ */