Files
c/kubernetes/model/v1_user_info.h
Hui Yu ab432efa49 [API] Re-run code generator to merge the changes of OpenAPITools/openapi-generator to fix the bug:
* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
2020-06-20 09:41:15 +08:00

44 lines
883 B
C

/*
* v1_user_info.h
*
* UserInfo holds the information about the user needed to implement the user.Info interface.
*/
#ifndef _v1_user_info_H_
#define _v1_user_info_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_user_info_t v1_user_info_t;
typedef struct v1_user_info_t {
list_t* extra; //map
list_t *groups; //primitive container
char *uid; // string
char *username; // string
} v1_user_info_t;
v1_user_info_t *v1_user_info_create(
list_t* extra,
list_t *groups,
char *uid,
char *username
);
void v1_user_info_free(v1_user_info_t *v1_user_info);
v1_user_info_t *v1_user_info_parseFromJSON(cJSON *v1_user_infoJSON);
cJSON *v1_user_info_convertToJSON(v1_user_info_t *v1_user_info);
#endif /* _v1_user_info_H_ */