mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
Added NRF
This commit is contained in:
parent
46f20cc979
commit
d0673e3066
397 changed files with 85455 additions and 209 deletions
41
lib/sbi/openapi/model/tai_range.h
Normal file
41
lib/sbi/openapi/model/tai_range.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* tai_range.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_tai_range_H_
|
||||
#define _OpenAPI_tai_range_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "plmn_id.h"
|
||||
#include "tac_range.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_tai_range_s OpenAPI_tai_range_t;
|
||||
typedef struct OpenAPI_tai_range_s {
|
||||
struct OpenAPI_plmn_id_s *plmn_id;
|
||||
OpenAPI_list_t *tac_range_list;
|
||||
} OpenAPI_tai_range_t;
|
||||
|
||||
OpenAPI_tai_range_t *OpenAPI_tai_range_create(
|
||||
OpenAPI_plmn_id_t *plmn_id,
|
||||
OpenAPI_list_t *tac_range_list
|
||||
);
|
||||
void OpenAPI_tai_range_free(OpenAPI_tai_range_t *tai_range);
|
||||
OpenAPI_tai_range_t *OpenAPI_tai_range_parseFromJSON(cJSON *tai_rangeJSON);
|
||||
cJSON *OpenAPI_tai_range_convertToJSON(OpenAPI_tai_range_t *tai_range);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_tai_range_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue