mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +00:00
Upgrade SBI(Service-based Interface)
* OpenAPI Generator version: 4.3.1 ==> 5.5.1 * Specification : r16.8.0 (20210629)
This commit is contained in:
parent
2aaa8200c2
commit
f278d58a69
1914 changed files with 91329 additions and 57361 deletions
42
lib/sbi/openapi/model/bdt_data_patch.h
Normal file
42
lib/sbi/openapi/model/bdt_data_patch.h
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* bdt_data_patch.h
|
||||
*
|
||||
* Contains the modified background data transfer data.
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_bdt_data_patch_H_
|
||||
#define _OpenAPI_bdt_data_patch_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "bdt_policy_status.h"
|
||||
#include "transfer_policy.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_bdt_data_patch_s OpenAPI_bdt_data_patch_t;
|
||||
typedef struct OpenAPI_bdt_data_patch_s {
|
||||
struct OpenAPI_transfer_policy_s *trans_policy;
|
||||
struct OpenAPI_bdt_policy_status_s *bdtp_status;
|
||||
} OpenAPI_bdt_data_patch_t;
|
||||
|
||||
OpenAPI_bdt_data_patch_t *OpenAPI_bdt_data_patch_create(
|
||||
OpenAPI_transfer_policy_t *trans_policy,
|
||||
OpenAPI_bdt_policy_status_t *bdtp_status
|
||||
);
|
||||
void OpenAPI_bdt_data_patch_free(OpenAPI_bdt_data_patch_t *bdt_data_patch);
|
||||
OpenAPI_bdt_data_patch_t *OpenAPI_bdt_data_patch_parseFromJSON(cJSON *bdt_data_patchJSON);
|
||||
cJSON *OpenAPI_bdt_data_patch_convertToJSON(OpenAPI_bdt_data_patch_t *bdt_data_patch);
|
||||
OpenAPI_bdt_data_patch_t *OpenAPI_bdt_data_patch_copy(OpenAPI_bdt_data_patch_t *dst, OpenAPI_bdt_data_patch_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_bdt_data_patch_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue