fedilab-Android-App/app/src/main/java/app/fedilab/android/client/Entities/IdentityProof.java

75 lines
1.8 KiB
Java

/* Copyright 2019 Thomas Schneider
*
* This file is a part of Fedilab
*
* 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.
*
* Fedilab 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 Fedilab; if not,
* see <http://www.gnu.org/licenses>. */
package app.fedilab.android.client.Entities;
import java.util.Date;
/**
* Created by Thomas on 17/12/2019.
* Manage identity proof
*/
public class IdentityProof {
private String provider;
private String provider_username;
private Date updated_at;
private String proof_url;
private String profile_url;
public String getProvider() {
return provider;
}
public void setProvider(String provider) {
this.provider = provider;
}
public String getProvider_username() {
return provider_username;
}
public void setProvider_username(String provider_username) {
this.provider_username = provider_username;
}
public Date getUpdated_at() {
return updated_at;
}
public void setUpdated_at(Date updated_at) {
this.updated_at = updated_at;
}
public String getProof_url() {
return proof_url;
}
public void setProof_url(String proof_url) {
this.proof_url = proof_url;
}
public String getProfile_url() {
return profile_url;
}
public void setProfile_url(String profile_url) {
this.profile_url = profile_url;
}
}