Class Article
Represents a single Article returned from the Hudu API
Inheritance
System.Object
Article
Assembly: HuduAPI.dll
Syntax
public class Article : IRecord
Properties
Archived
Declaration
[JsonProperty("archived")]
public bool Archived { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
CompanyID
Declaration
[JsonProperty("company_id")]
public int? CompanyID { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Int32> |
|
Content
Declaration
[JsonProperty("content")]
public string Content { get; set; }
Property Value
| Type |
Description |
| System.String |
|
CreatedAt
Declaration
[JsonProperty("created_at")]
public DateTime CreatedAt { get; set; }
Property Value
| Type |
Description |
| DateTime |
|
Draft
Declaration
[JsonProperty("draft")]
public bool? Draft { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Boolean> |
|
EnableSharing
Declaration
[JsonProperty("enable_sharing")]
public bool? EnableSharing { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Boolean> |
|
FolderID
Declaration
[JsonProperty("folder_id")]
public int? FolderID { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Int32> |
|
ID
Declaration
[JsonProperty("id")]
public int ID { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
Name
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
| Type |
Description |
| System.String |
|
ObjectType
Declaration
[JsonProperty("object_type")]
public string ObjectType { get; set; }
Property Value
| Type |
Description |
| System.String |
|
PublicPhotos
Declaration
[JsonProperty("public_photos")]
public IList<PublicPhoto> PublicPhotos { get; set; }
Property Value
ShareUrl
Declaration
[JsonProperty("share_url")]
public string ShareUrl { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Slug
Declaration
[JsonProperty("slug")]
public string Slug { get; set; }
Property Value
| Type |
Description |
| System.String |
|
UpdatedAt
Declaration
[JsonProperty("updated_at")]
public DateTime UpdatedAt { get; set; }
Property Value
| Type |
Description |
| DateTime |
|
Url
Declaration
[JsonProperty("url")]
public string Url { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Implements
See Also