mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-18 00:21:20 +00:00
* Support for additionalProperties in the C generator. * Support for additionalProperties in the C generator.
48 lines
807 B
C
48 lines
807 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"
|
|
|
|
|
|
|
|
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_ */
|
|
|