* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
/*
|
|
* v1_webhook_conversion.h
|
|
*
|
|
* WebhookConversion describes how to call a conversion webhook
|
|
*/
|
|
|
|
#ifndef _v1_webhook_conversion_H_
|
|
#define _v1_webhook_conversion_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
|
|
typedef struct v1_webhook_conversion_t v1_webhook_conversion_t;
|
|
|
|
#include "apiextensions_v1_webhook_client_config.h"
|
|
|
|
|
|
|
|
typedef struct v1_webhook_conversion_t {
|
|
struct apiextensions_v1_webhook_client_config_t *client_config; //model
|
|
list_t *conversion_review_versions; //primitive container
|
|
|
|
} v1_webhook_conversion_t;
|
|
|
|
v1_webhook_conversion_t *v1_webhook_conversion_create(
|
|
apiextensions_v1_webhook_client_config_t *client_config,
|
|
list_t *conversion_review_versions
|
|
);
|
|
|
|
void v1_webhook_conversion_free(v1_webhook_conversion_t *v1_webhook_conversion);
|
|
|
|
v1_webhook_conversion_t *v1_webhook_conversion_parseFromJSON(cJSON *v1_webhook_conversionJSON);
|
|
|
|
cJSON *v1_webhook_conversion_convertToJSON(v1_webhook_conversion_t *v1_webhook_conversion);
|
|
|
|
#endif /* _v1_webhook_conversion_H_ */
|
|
|