mastodont-c/include/mastodont_account.h
me@ow.nekobit.net 0cde2418cc Refactor json code; account info
FossilOrigin-Name: 51b7efb786dd9f079897888ade3ce7de78177c52bce7f0e3ec86288b40daa804
2022-01-31 04:16:26 +00:00

58 lines
1.5 KiB
C

/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef MASTODONT_ACCOUNT
#define MASTODONT_ACCOUNT
#include "mastodont_types.h"
#include <cjson/cJSON.h>
struct mstdnt_account
{
char* id;
char* username;
char* acct;
char* url;
/* Display attributes */
char* display_name;
char* note;
char* avatar;
char* avatar_static;
char* header;
char* header_static;
mstdnt_bool locked;
mstdnt_bool discoverable;
/* Statistic attributes */
char* created_at;
char* last_status_at;
unsigned statuses_count;
unsigned followers_count;
unsigned following_count;
/* Optional attributes */
struct mstdnt_account* moved;
/* struct mstdnt_field* field; */
mstdnt_bool bot;
/* struct mstdnt_source* source */
mstdnt_bool suspended;
char* mute_expires_at;
};
int mstdnt_load_account_from_json(struct mstdnt_account* status, cJSON* js);
#endif /* MASTODONT_ACCOUNT */