forked from loafle/openapi-generator-original
* C client generator improvement to support: openapi-generator/modules/openapi-generator/src/test/resources/3_0/petstore.yaml * Improvements to the C client generator: - moved base64* from apiClient.c to binary.h/binary.c - changed CR/LF to LF in binary.h/binary.c * C client generator: better support for base64encode / base64decode
52 lines
870 B
C
52 lines
870 B
C
/*
|
|
* user.h
|
|
*
|
|
* A User who is purchasing from the pet store
|
|
*/
|
|
|
|
#ifndef _user_H_
|
|
#define _user_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
|
|
typedef struct user_t user_t;
|
|
|
|
|
|
|
|
|
|
typedef struct user_t {
|
|
long id; //numeric
|
|
char *username; // string
|
|
char *first_name; // string
|
|
char *last_name; // string
|
|
char *email; // string
|
|
char *password; // string
|
|
char *phone; // string
|
|
int user_status; //numeric
|
|
|
|
} user_t;
|
|
|
|
user_t *user_create(
|
|
long id,
|
|
char *username,
|
|
char *first_name,
|
|
char *last_name,
|
|
char *email,
|
|
char *password,
|
|
char *phone,
|
|
int user_status
|
|
);
|
|
|
|
void user_free(user_t *user);
|
|
|
|
user_t *user_parseFromJSON(cJSON *userJSON);
|
|
|
|
cJSON *user_convertToJSON(user_t *user);
|
|
|
|
#endif /* _user_H_ */
|
|
|