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