mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 07:08:11 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
45
lib/sbi/openapi/model/un_trust_af_info.h
Normal file
45
lib/sbi/openapi/model/un_trust_af_info.h
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* un_trust_af_info.h
|
||||
*
|
||||
* Information of a untrusted AF Instance
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_un_trust_af_info_H_
|
||||
#define _OpenAPI_un_trust_af_info_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "snssai_info_item.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_un_trust_af_info_s OpenAPI_un_trust_af_info_t;
|
||||
typedef struct OpenAPI_un_trust_af_info_s {
|
||||
char *af_id;
|
||||
OpenAPI_list_t *s_nssai_info_list;
|
||||
bool is_mapping_ind;
|
||||
int mapping_ind;
|
||||
} OpenAPI_un_trust_af_info_t;
|
||||
|
||||
OpenAPI_un_trust_af_info_t *OpenAPI_un_trust_af_info_create(
|
||||
char *af_id,
|
||||
OpenAPI_list_t *s_nssai_info_list,
|
||||
bool is_mapping_ind,
|
||||
int mapping_ind
|
||||
);
|
||||
void OpenAPI_un_trust_af_info_free(OpenAPI_un_trust_af_info_t *un_trust_af_info);
|
||||
OpenAPI_un_trust_af_info_t *OpenAPI_un_trust_af_info_parseFromJSON(cJSON *un_trust_af_infoJSON);
|
||||
cJSON *OpenAPI_un_trust_af_info_convertToJSON(OpenAPI_un_trust_af_info_t *un_trust_af_info);
|
||||
OpenAPI_un_trust_af_info_t *OpenAPI_un_trust_af_info_copy(OpenAPI_un_trust_af_info_t *dst, OpenAPI_un_trust_af_info_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_un_trust_af_info_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue