Newer Version Available
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
A blog is content that is typically presented as reverse chronologically sorted on a single topic.
1public class Blog
2extends CategorizedItem| Field | Description | Modifier and Type |
|---|---|---|
modifiedDate | The date and time when this blog was last modified. | java.util.Date |
subTitle | Subtitle for the blog. | java.lang.String |
Fields inherited from class CategorizedItem:
Fields inherited from class Item:
descriptionexpirationidimageUrllocationnamenumRatingspromotionStatepublishedratingtagsurl1@Nullable
2public Date modifiedDateThe date and time when this blog was last modified. For other dates that can be set, see Item.expiration and Item.published.
1@Nullable
2public String subTitleSubtitle for the blog. To set the title, see Item.name.
Creates a blog with the required id only. The blog can then be further modified.
1public Blog(@NonNull
2 String id)Parameters:
| Parameter | Description | Required? |
|---|---|---|
id | See Item.id | Yes |
| Method | Modifier and Type |
|---|---|
fromJSONObject(org.json.JSONObject json, java.lang.String id) | static Blog |
getItemType() | String |
Methods inherited from class Item:
1public static Blog fromJSONObject(org.json.JSONObject json,
2 java.lang.String id)1public String getItemType()Specified by getItemType in class Item.
Newer Version Available