/* Copyright 2017 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 . */ package app.fedilab.android.client.Entities; import android.os.Parcel; import android.os.Parcelable; /** * Created by Thomas on 23/04/2017. * Manages card in toots, only used during a call to the context * See: https://github.com/tootsuite/documentation/blob/master/Using-the-API/API.md#card * All values are not implemented */ @SuppressWarnings("unused") public class Card implements Parcelable { public static final Creator CREATOR = new Creator() { @Override public Card createFromParcel(Parcel in) { return new Card(in); } @Override public Card[] newArray(int size) { return new Card[size]; } }; private String url; private String title; private String description; private String image; private String type; private String html; private String author_name; private String author_url; private String embed_url; private String provider_name; private String provider_url; private int height; private int width; public Card() { } protected Card(Parcel in) { url = in.readString(); title = in.readString(); description = in.readString(); image = in.readString(); type = in.readString(); html = in.readString(); author_name = in.readString(); author_url = in.readString(); embed_url = in.readString(); provider_name = in.readString(); provider_url = in.readString(); height = in.readInt(); width = in.readInt(); } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(url); dest.writeString(title); dest.writeString(description); dest.writeString(image); dest.writeString(type); dest.writeString(html); dest.writeString(author_name); dest.writeString(author_url); dest.writeString(embed_url); dest.writeString(provider_name); dest.writeString(provider_url); dest.writeInt(height); dest.writeInt(width); } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getImage() { return image; } public void setImage(String image) { this.image = image; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getHtml() { return html; } public void setHtml(String html) { this.html = html; } public String getAuthor_name() { return author_name; } public void setAuthor_name(String author_name) { this.author_name = author_name; } public String getAuthor_url() { return author_url; } public void setAuthor_url(String author_url) { this.author_url = author_url; } public String getEmbed_url() { return embed_url; } public void setEmbed_url(String embed_url) { this.embed_url = embed_url; } public String getProvider_name() { return provider_name; } public void setProvider_name(String provider_name) { this.provider_name = provider_name; } public String getProvider_url() { return provider_url; } public void setProvider_url(String provider_url) { this.provider_url = provider_url; } public int getHeight() { return height; } public void setHeight(int height) { this.height = height; } public int getWidth() { return width; } public void setWidth(int width) { this.width = width; } @Override public int describeContents() { return 0; } }