Class Folder
Represents a single folder object returned from the Hudu API endpoing folders
Inheritance
System.Object
Folder
Assembly: HuduAPI.dll
Syntax
public class Folder : IRecord
Properties
CompanyID
Declaration
[JsonProperty("company_id")]
public int? CompanyID { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Int32> |
|
CreatedAt
Declaration
[JsonProperty("created_at")]
public DateTime CreatedAt { get; set; }
Property Value
| Type |
Description |
| DateTime |
|
Description
Declaration
[JsonProperty("description")]
public string Description { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Icon
Declaration
[JsonProperty("icon")]
public object Icon { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
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 |
|
ParentFolderID
Declaration
[JsonProperty("parent_folder_id")]
public object ParentFolderID { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
UpdatedAt
Declaration
[JsonProperty("updated_at")]
public DateTime UpdatedAt { get; set; }
Property Value
| Type |
Description |
| DateTime |
|
Implements
See Also