[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,37 @@
/*
* no_profile_match_reason.h
*
* No Profile Match Reason
*/
#ifndef _OpenAPI_no_profile_match_reason_H_
#define _OpenAPI_no_profile_match_reason_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "no_profile_match_reason_any_of.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_no_profile_match_reason_s OpenAPI_no_profile_match_reason_t;
typedef struct OpenAPI_no_profile_match_reason_s {
} OpenAPI_no_profile_match_reason_t;
OpenAPI_no_profile_match_reason_t *OpenAPI_no_profile_match_reason_create(
);
void OpenAPI_no_profile_match_reason_free(OpenAPI_no_profile_match_reason_t *no_profile_match_reason);
OpenAPI_no_profile_match_reason_t *OpenAPI_no_profile_match_reason_parseFromJSON(cJSON *no_profile_match_reasonJSON);
cJSON *OpenAPI_no_profile_match_reason_convertToJSON(OpenAPI_no_profile_match_reason_t *no_profile_match_reason);
OpenAPI_no_profile_match_reason_t *OpenAPI_no_profile_match_reason_copy(OpenAPI_no_profile_match_reason_t *dst, OpenAPI_no_profile_match_reason_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_no_profile_match_reason_H_ */