struct [out]
A struct that represents the post. Contains the following fields: title, description, postid, dateCreated, categories and publish.
|
struct {
string postid;
DateTime dateCreated;
string title;
string description;
string[] categories;
bool publish;
} |