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 Dashboard
Declaration
protected DashboardWithViewProperties()
DashboardWithViewProperties(DashboardLinks, DashboardMeta, List<CellWithViewProperties>, List<Label>, String, String, String)
Initializes a new instance of the Dashboard
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 |
---|---|---|
Dashboard |
links | links. |
Dashboard |
meta | meta. |
List<Cell |
cells | cells. |
List<Label> | labels | labels. |
System. |
orgID | |
System. |
name | |
System. |
description |
Properties
Cells
Gets or Sets Cells
Declaration
public List<CellWithViewProperties> Cells { get; set; }
Property Value
Type | Description |
---|---|
List<Cell |
Id
Gets or Sets Id
Declaration
public string Id { get; }
Property Value
Type | Description |
---|---|
System. |
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 |
---|---|
Dashboard |
Meta
Gets or Sets Meta
Declaration
public DashboardMeta Meta { get; set; }
Property Value
Type | Description |
---|---|
Dashboard |
Methods
Equals(DashboardWithViewProperties)
Returns true if DashboardWithViewProperties instances are equal
Declaration
public bool Equals(DashboardWithViewProperties input)
Parameters
Type | Name | Description |
---|---|---|
Dashboard |
input | Instance of DashboardWithViewProperties to be compared |
Returns
Type | Description |
---|---|
System. |
Boolean |
Equals(Object)
Returns true if objects are equal
Declaration
public override bool Equals(object input)
Parameters
Type | Name | Description |
---|---|---|
System. |
input | Object to be compared |
Returns
Type | Description |
---|---|
System. |
Boolean |
Overrides
GetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System. |
Hash code |
Overrides
ToJson()
Returns the JSON string presentation of the object
Declaration
public override string ToJson()
Returns
Type | Description |
---|---|
System. |
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 presentation of the object |
Overrides
Implements
IEquatable<>