Class Assets
Represents a list of Assets returned from the Hudu endpoint assets
Inheritance
System.Object
Assets
Implements
Namespace: HuduAPI.Records
Assembly: HuduAPI.dll
Syntax
public class Assets : IRecord
Properties
AssetList
Declaration
[JsonProperty("assets")]
public IList<Asset> AssetList { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<Asset> |
Item[Int32]
Gets the System.Nullable<T> with the specified identifier. Null is returned if no results are found
Declaration
public Asset this[int id] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | id | The identifier of the asset to retrieve. |
Property Value
| Type | Description |
|---|---|
| Asset | The System.Nullable<T>. |
Item[String]
Gets the System.Nullable<T> with the specified name. Null is returned if no results are found
Declaration
public Asset this[string name] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The name of the Asset to retrieve. |
Property Value
| Type | Description |
|---|---|
| Asset | The System.Nullable<T>. |