Class DashboardWithViewProperties
DashboardWithViewProperties
Implements
IEquatable<DashboardWithViewProperties>
Inherited Members
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class DashboardWithViewProperties : CreateDashboardRequest, IEquatable<DashboardWithViewProperties>
Constructors
DashboardWithViewProperties()
Initializes a new instance of the DashboardWithViewProperties class.
Declaration
protected DashboardWithViewProperties()
DashboardWithViewProperties(DashboardLinks, DashboardMeta, List<CellWithViewProperties>, List<Label>, String, String, String)
Initializes a new instance of the DashboardWithViewProperties class.
Declaration
public DashboardWithViewProperties(DashboardLinks links = null, DashboardMeta meta = null, List<CellWithViewProperties> cells = null, List<Label> labels = null, string orgID = null, string name = null, string description = null)
Parameters
Type | Name | Description |
---|---|---|
DashboardLinks | links | links. |
DashboardMeta | meta | meta. |
List<CellWithViewProperties> | cells | cells. |
List<Label> | labels | labels. |
System.String | orgID | |
System.String | name | |
System.String | description |
Properties
Cells
Gets or Sets Cells
Declaration
public List<CellWithViewProperties> Cells { get; set; }
Property Value
Type | Description |
---|---|
List<CellWithViewProperties> |
Id
Gets or Sets Id
Declaration
public string Id { get; }
Property Value
Type | Description |
---|---|
System.String |
Labels
Gets or Sets Labels
Declaration
public List<Label> Labels { get; set; }
Property Value
Type | Description |
---|---|
List<Label> |
Links
Gets or Sets Links
Declaration
public DashboardLinks Links { get; set; }
Property Value
Type | Description |
---|---|
DashboardLinks |
Meta
Gets or Sets Meta
Declaration
public DashboardMeta Meta { get; set; }
Property Value
Type | Description |
---|---|
DashboardMeta |
Methods
Equals(DashboardWithViewProperties)
Returns true if DashboardWithViewProperties instances are equal
Declaration
public bool Equals(DashboardWithViewProperties input)
Parameters
Type | Name | Description |
---|---|---|
DashboardWithViewProperties | input | Instance of DashboardWithViewProperties to be compared |
Returns
Type | Description |
---|---|
System.Boolean | Boolean |
Equals(Object)
Returns true if objects are equal
Declaration
public override bool Equals(object input)
Parameters
Type | Name | Description |
---|---|---|
System.Object | input | Object to be compared |
Returns
Type | Description |
---|---|
System.Boolean | Boolean |
Overrides
GetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | Hash code |
Overrides
ToJson()
Returns the JSON string presentation of the object
Declaration
public override string ToJson()
Returns
Type | Description |
---|---|
System.String | JSON string presentation of the object |
Overrides
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | String presentation of the object |
Overrides
Implements
IEquatable<>