Class CreateCell
CreateCell
Inheritance
System.Object
CreateCell
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class CreateCell : IEquatable<CreateCell>
Constructors
CreateCell(String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String)
Initializes a new instance of the CreateCell class.
Declaration
public CreateCell(string name = null, int? x = null, int? y = null, int? w = null, int? h = null, string usingView = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | name. |
System.Nullable<System.Int32> | x | x. |
System.Nullable<System.Int32> | y | y. |
System.Nullable<System.Int32> | w | w. |
System.Nullable<System.Int32> | h | h. |
System.String | usingView | Makes a copy of the provided view.. |
Properties
H
Gets or Sets H
Declaration
public int? H { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Name
Gets or Sets Name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
UsingView
Makes a copy of the provided view.
Declaration
public string UsingView { get; set; }
Property Value
Type | Description |
---|---|
System.String | Makes a copy of the provided view. |
W
Gets or Sets W
Declaration
public int? W { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
X
Gets or Sets X
Declaration
public int? X { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Y
Gets or Sets Y
Declaration
public int? Y { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Methods
Equals(CreateCell)
Returns true if CreateCell instances are equal
Declaration
public bool Equals(CreateCell input)
Parameters
Type | Name | Description |
---|---|---|
CreateCell | input | Instance of CreateCell 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 |
GetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | Hash code |
ToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
System.String | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | String presentation of the object |