parent
cff0f35269
commit
348d2c8b4f
@ -1,49 +1,17 @@ |
|||||||
package com.keylesspalace.tusky.entity; |
package com.keylesspalace.tusky.entity; |
||||||
|
|
||||||
public class Media { |
import com.google.gson.annotations.SerializedName; |
||||||
int id; |
|
||||||
String type; |
|
||||||
String url; |
|
||||||
String preview_url; |
|
||||||
String text_url; |
|
||||||
|
|
||||||
public int getId() { |
|
||||||
return id; |
|
||||||
} |
|
||||||
|
|
||||||
public void setId(int id) { |
|
||||||
this.id = id; |
|
||||||
} |
|
||||||
|
|
||||||
public String getType() { |
|
||||||
return type; |
|
||||||
} |
|
||||||
|
|
||||||
public void setType(String type) { |
public class Media { |
||||||
this.type = type; |
public int id; |
||||||
} |
|
||||||
|
|
||||||
public String getUrl() { |
|
||||||
return url; |
|
||||||
} |
|
||||||
|
|
||||||
public void setUrl(String url) { |
|
||||||
this.url = url; |
|
||||||
} |
|
||||||
|
|
||||||
public String getPreview_url() { |
public String type; |
||||||
return preview_url; |
|
||||||
} |
|
||||||
|
|
||||||
public void setPreview_url(String preview_url) { |
public String url; |
||||||
this.preview_url = preview_url; |
|
||||||
} |
|
||||||
|
|
||||||
public String getText_url() { |
@SerializedName("preview_url") |
||||||
return text_url; |
public String previewUrl; |
||||||
} |
|
||||||
|
|
||||||
public void setText_url(String text_url) { |
@SerializedName("text_url") |
||||||
this.text_url = text_url; |
public String textUrl; |
||||||
} |
|
||||||
} |
} |
||||||
|
@ -1,58 +1,18 @@ |
|||||||
package com.keylesspalace.tusky.entity; |
package com.keylesspalace.tusky.entity; |
||||||
|
|
||||||
public class Relationship { |
import com.google.gson.annotations.SerializedName; |
||||||
public boolean isFollowing() { |
|
||||||
return following; |
|
||||||
} |
|
||||||
|
|
||||||
public void setFollowing(boolean following) { |
|
||||||
this.following = following; |
|
||||||
} |
|
||||||
|
|
||||||
public boolean isFollowed_by() { |
|
||||||
return followed_by; |
|
||||||
} |
|
||||||
|
|
||||||
public void setFollowed_by(boolean followed_by) { |
|
||||||
this.followed_by = followed_by; |
|
||||||
} |
|
||||||
|
|
||||||
public boolean isBlocking() { |
public class Relationship { |
||||||
return blocking; |
public int id; |
||||||
} |
|
||||||
|
|
||||||
public void setBlocking(boolean blocking) { |
|
||||||
this.blocking = blocking; |
|
||||||
} |
|
||||||
|
|
||||||
public boolean isMuting() { |
|
||||||
return muting; |
|
||||||
} |
|
||||||
|
|
||||||
public void setMuting(boolean muting) { |
|
||||||
this.muting = muting; |
|
||||||
} |
|
||||||
|
|
||||||
public boolean isRequested() { |
public boolean following; |
||||||
return requested; |
|
||||||
} |
|
||||||
|
|
||||||
public void setRequested(boolean requested) { |
@SerializedName("followed_by") |
||||||
this.requested = requested; |
public boolean followedBy; |
||||||
} |
|
||||||
|
|
||||||
public int getId() { |
public boolean blocking; |
||||||
return id; |
|
||||||
} |
|
||||||
|
|
||||||
public void setId(int id) { |
public boolean muting; |
||||||
this.id = id; |
|
||||||
} |
|
||||||
|
|
||||||
int id; |
public boolean requested; |
||||||
boolean following; |
|
||||||
boolean followed_by; |
|
||||||
boolean blocking; |
|
||||||
boolean muting; |
|
||||||
boolean requested; |
|
||||||
} |
} |
||||||
|
Loading…
Reference in new issue