mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +00:00
42 lines
1.6 KiB
C
42 lines
1.6 KiB
C
/*
|
|
* redundant_transmission_exp_req.h
|
|
*
|
|
* Represents other redundant transmission experience analytics requirements.
|
|
*/
|
|
|
|
#ifndef _OpenAPI_redundant_transmission_exp_req_H_
|
|
#define _OpenAPI_redundant_transmission_exp_req_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
#include "matching_direction.h"
|
|
#include "red_trans_exp_ordering_criterion.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct OpenAPI_redundant_transmission_exp_req_s OpenAPI_redundant_transmission_exp_req_t;
|
|
typedef struct OpenAPI_redundant_transmission_exp_req_s {
|
|
struct OpenAPI_red_trans_exp_ordering_criterion_s *red_t_order_criter;
|
|
struct OpenAPI_matching_direction_s *order;
|
|
} OpenAPI_redundant_transmission_exp_req_t;
|
|
|
|
OpenAPI_redundant_transmission_exp_req_t *OpenAPI_redundant_transmission_exp_req_create(
|
|
OpenAPI_red_trans_exp_ordering_criterion_t *red_t_order_criter,
|
|
OpenAPI_matching_direction_t *order
|
|
);
|
|
void OpenAPI_redundant_transmission_exp_req_free(OpenAPI_redundant_transmission_exp_req_t *redundant_transmission_exp_req);
|
|
OpenAPI_redundant_transmission_exp_req_t *OpenAPI_redundant_transmission_exp_req_parseFromJSON(cJSON *redundant_transmission_exp_reqJSON);
|
|
cJSON *OpenAPI_redundant_transmission_exp_req_convertToJSON(OpenAPI_redundant_transmission_exp_req_t *redundant_transmission_exp_req);
|
|
OpenAPI_redundant_transmission_exp_req_t *OpenAPI_redundant_transmission_exp_req_copy(OpenAPI_redundant_transmission_exp_req_t *dst, OpenAPI_redundant_transmission_exp_req_t *src);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _OpenAPI_redundant_transmission_exp_req_H_ */
|
|
|