Class ConstantVariableProperties
ConstantVariableProperties
Implements
IEquatable<ConstantVariableProperties>
Inherited Members
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class ConstantVariableProperties : VariableProperties, IEquatable<ConstantVariableProperties>
Constructors
ConstantVariableProperties(Nullable<ConstantVariableProperties.TypeEnum>, List<String>)
Initializes a new instance of the ConstantVariableProperties class.
Declaration
public ConstantVariableProperties(ConstantVariableProperties.TypeEnum? type = null, List<string> values = null)
Parameters
Type | Name | Description |
---|---|---|
System.Nullable<ConstantVariableProperties.TypeEnum> | type | type. |
List<System.String> | values | values. |
Properties
Type
Gets or Sets Type
Declaration
public ConstantVariableProperties.TypeEnum? Type { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<ConstantVariableProperties.TypeEnum> |
Values
Gets or Sets Values
Declaration
public List<string> Values { get; set; }
Property Value
Type | Description |
---|---|
List<System.String> |
Methods
Equals(ConstantVariableProperties)
Returns true if ConstantVariableProperties instances are equal
Declaration
public bool Equals(ConstantVariableProperties input)
Parameters
Type | Name | Description |
---|---|---|
ConstantVariableProperties | input | Instance of ConstantVariableProperties 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<>