/* Copyright 2017 Thomas Schneider * * This file is a part of Mastodon Etalab for mastodon.etalab.gouv.fr * * This program is free software; you can redistribute it and/or modify it under the terms of the * GNU General Public License as published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * Mastodon Etalab 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 General * Public License for more details. * * You should have received a copy of the GNU General Public License along with Thomas Schneider; if not, * see . */ package fr.gouv.etalab.mastodon.client.Entities; import java.util.Date; /** * Created by Thomas on 23/04/2017. */ public class Account { private String id; private String username; private String acct; private String display_name; private boolean locked; private Date created_at; private int followers_count; private int following_count; private int statuses_count; private String note; private String url; private String avatar; private String avatar_static; private String header; private String header_static; private String token; private String instance; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getAcct() { return acct; } public void setAcct(String acct) { this.acct = acct; } public String getDisplay_name() { return display_name; } public void setDisplay_name(String display_name) { this.display_name = display_name; } public boolean isLocked() { return locked; } public void setLocked(boolean locked) { this.locked = locked; } public Date getCreated_at() { return created_at; } public void setCreated_at(Date created_at) { this.created_at = created_at; } public int getFollowers_count() { return followers_count; } public void setFollowers_count(int followers_count) { this.followers_count = followers_count; } public int getFollowing_count() { return following_count; } public void setFollowing_count(int following_count) { this.following_count = following_count; } public int getStatuses_count() { return statuses_count; } public void setStatuses_count(int statuses_count) { this.statuses_count = statuses_count; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getAvatar() { return avatar; } public void setAvatar(String avatar) { this.avatar = avatar; } public String getAvatar_static() { return avatar_static; } public void setAvatar_static(String avatar_static) { this.avatar_static = avatar_static; } public String getHeader() { return header; } public void setHeader(String header) { this.header = header; } public String getHeader_static() { return header_static; } public void setHeader_static(String header_static) { this.header_static = header_static; } public String getToken() { return token; } public void setToken(String token) { this.token = token; } public String getInstance() { return instance; } public void setInstance(String instance) { this.instance = instance; } }