mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +00:00
Added NRF
This commit is contained in:
parent
46f20cc979
commit
d0673e3066
397 changed files with 85455 additions and 209 deletions
38
lib/sbi/openapi/model/inline_response_200.h
Normal file
38
lib/sbi/openapi/model/inline_response_200.h
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* inline_response_200.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_inline_response_200_H_
|
||||
#define _OpenAPI_inline_response_200_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "links_value_schema.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_inline_response_200_s OpenAPI_inline_response_200_t;
|
||||
typedef struct OpenAPI_inline_response_200_s {
|
||||
OpenAPI_list_t* _links;
|
||||
} OpenAPI_inline_response_200_t;
|
||||
|
||||
OpenAPI_inline_response_200_t *OpenAPI_inline_response_200_create(
|
||||
OpenAPI_list_t* _links
|
||||
);
|
||||
void OpenAPI_inline_response_200_free(OpenAPI_inline_response_200_t *inline_response_200);
|
||||
OpenAPI_inline_response_200_t *OpenAPI_inline_response_200_parseFromJSON(cJSON *inline_response_200JSON);
|
||||
cJSON *OpenAPI_inline_response_200_convertToJSON(OpenAPI_inline_response_200_t *inline_response_200);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_inline_response_200_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue