Class DecimalPlaces
Indicates whether decimal places should be enforced, and how many digits it should show.
Inheritance
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class DecimalPlaces : IEquatable<DecimalPlaces>
Constructors
DecimalPlaces(Nullable<Boolean>, Nullable<Int32>)
Initializes a new instance of the Decimal
Declaration
public DecimalPlaces(bool? isEnforced = null, int? digits = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
isEnforced | Indicates whether decimal point setting should be enforced. |
System. |
digits | The number of digits after decimal to display. |
Properties
Digits
The number of digits after decimal to display
Declaration
public int? Digits { get; set; }
Property Value
Type | Description |
---|---|
System. |
The number of digits after decimal to display |
IsEnforced
Indicates whether decimal point setting should be enforced
Declaration
public bool? IsEnforced { get; set; }
Property Value
Type | Description |
---|---|
System. |
Indicates whether decimal point setting should be enforced |
Methods
Equals(DecimalPlaces)
Returns true if DecimalPlaces instances are equal
Declaration
public bool Equals(DecimalPlaces input)
Parameters
Type | Name | Description |
---|---|---|
Decimal |
input | Instance of DecimalPlaces 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 |
GetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System. |
Hash code |
ToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
System. |
JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System. |
String presentation of the object |