mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +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/links_value_schema.h
Normal file
38
lib/sbi/openapi/model/links_value_schema.h
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* links_value_schema.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_links_value_schema_H_
|
||||
#define _OpenAPI_links_value_schema_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "link.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_links_value_schema_s OpenAPI_links_value_schema_t;
|
||||
typedef struct OpenAPI_links_value_schema_s {
|
||||
char *href;
|
||||
} OpenAPI_links_value_schema_t;
|
||||
|
||||
OpenAPI_links_value_schema_t *OpenAPI_links_value_schema_create(
|
||||
char *href
|
||||
);
|
||||
void OpenAPI_links_value_schema_free(OpenAPI_links_value_schema_t *links_value_schema);
|
||||
OpenAPI_links_value_schema_t *OpenAPI_links_value_schema_parseFromJSON(cJSON *links_value_schemaJSON);
|
||||
cJSON *OpenAPI_links_value_schema_convertToJSON(OpenAPI_links_value_schema_t *links_value_schema);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_links_value_schema_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue