Class Dashboard
Dashboard
Implements
IEquatable<Dashboard>
Inherited Members
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class Dashboard : CreateDashboardRequest, IEquatable<Dashboard>
Constructors
Dashboard()
Initializes a new instance of the Dashboard class.
Declaration
protected Dashboard()
Dashboard(DashboardLinks, DashboardMeta, List<Cell>, List<Label>, String, String, String)
Initializes a new instance of the Dashboard class.
Declaration
public Dashboard(DashboardLinks links = null, DashboardMeta meta = null, List<Cell> 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<Cell> | cells | cells. |
List<Label> | labels | labels. |
System.String | orgID | |
System.String | name | |
System.String | description |
Properties
Cells
Gets or Sets Cells
Declaration
public List<Cell> Cells { get; set; }
Property Value
Type | Description |
---|---|
List<Cell> |
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(Dashboard)
Returns true if Dashboard instances are equal
Declaration
public bool Equals(Dashboard input)
Parameters
Type | Name | Description |
---|---|---|
Dashboard | input | Instance of Dashboard 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<>