open5gs/lib/sbi/openapi/model/lcs_privacy.h

46 lines
1.1 KiB
C

/*
* lcs_privacy.h
*
*
*/
#ifndef _OpenAPI_lcs_privacy_H_
#define _OpenAPI_lcs_privacy_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "lpi.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_lcs_privacy_s OpenAPI_lcs_privacy_t;
typedef struct OpenAPI_lcs_privacy_s {
char *af_instance_id;
int reference_id;
struct OpenAPI_lpi_s *lpi;
char *mtc_provider_information;
} OpenAPI_lcs_privacy_t;
OpenAPI_lcs_privacy_t *OpenAPI_lcs_privacy_create(
char *af_instance_id,
int reference_id,
OpenAPI_lpi_t *lpi,
char *mtc_provider_information
);
void OpenAPI_lcs_privacy_free(OpenAPI_lcs_privacy_t *lcs_privacy);
OpenAPI_lcs_privacy_t *OpenAPI_lcs_privacy_parseFromJSON(cJSON *lcs_privacyJSON);
cJSON *OpenAPI_lcs_privacy_convertToJSON(OpenAPI_lcs_privacy_t *lcs_privacy);
OpenAPI_lcs_privacy_t *OpenAPI_lcs_privacy_copy(OpenAPI_lcs_privacy_t *dst, OpenAPI_lcs_privacy_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_lcs_privacy_H_ */