[Release-17] Upgrade SBI to v17.x.0

This commit is contained in:
Sukchan Lee 2023-03-01 19:56:49 +09:00
parent 969c116e77
commit 4d44b1843e
1687 changed files with 121604 additions and 9310 deletions

View file

@ -0,0 +1,40 @@
/*
* roaming_restrictions.h
*
* Indicates if access is allowed to a given serving network, e.g. a PLMN (MCC, MNC) or an SNPN (MCC, MNC, NID).
*/
#ifndef _OpenAPI_roaming_restrictions_H_
#define _OpenAPI_roaming_restrictions_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_roaming_restrictions_s OpenAPI_roaming_restrictions_t;
typedef struct OpenAPI_roaming_restrictions_s {
bool is_access_allowed;
int access_allowed;
} OpenAPI_roaming_restrictions_t;
OpenAPI_roaming_restrictions_t *OpenAPI_roaming_restrictions_create(
bool is_access_allowed,
int access_allowed
);
void OpenAPI_roaming_restrictions_free(OpenAPI_roaming_restrictions_t *roaming_restrictions);
OpenAPI_roaming_restrictions_t *OpenAPI_roaming_restrictions_parseFromJSON(cJSON *roaming_restrictionsJSON);
cJSON *OpenAPI_roaming_restrictions_convertToJSON(OpenAPI_roaming_restrictions_t *roaming_restrictions);
OpenAPI_roaming_restrictions_t *OpenAPI_roaming_restrictions_copy(OpenAPI_roaming_restrictions_t *dst, OpenAPI_roaming_restrictions_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_roaming_restrictions_H_ */