Class AssetLayouts
Represents a list of asset_layouts returned from the Hudu API
Inheritance
System.Object
AssetLayouts
Implements
Namespace: HuduAPI.Records
Assembly: HuduAPI.dll
Syntax
public class AssetLayouts : IRecord
Constructors
AssetLayouts()
Initializes a new empty instance of the AssetLayouts class.
Declaration
public AssetLayouts()
Properties
AssetLayoutList
Gets or sets the asset layout list.
Declaration
[JsonProperty("asset_layouts")]
public IList<AssetLayout> AssetLayoutList { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<AssetLayout> | The asset layout list. |
Item[String]
Gets the System.Nullable<T> with the supplied name. If there is not assetlayout with that name then null will be returned.
Declaration
public AssetLayout this[string name] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The name of the assetlayout required. |
Property Value
| Type | Description |
|---|---|
| AssetLayout |