Class MarkdownViewProperties
MarkdownViewProperties
Implements
IEquatable<MarkdownViewProperties>
Inherited Members
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class MarkdownViewProperties : ViewProperties, IEquatable<MarkdownViewProperties>
Constructors
MarkdownViewProperties()
Initializes a new instance of the MarkdownViewProperties class.
Declaration
protected MarkdownViewProperties()
MarkdownViewProperties(MarkdownViewProperties.TypeEnum, MarkdownViewProperties.ShapeEnum, String)
Initializes a new instance of the MarkdownViewProperties class.
Declaration
public MarkdownViewProperties(MarkdownViewProperties.TypeEnum type = default(MarkdownViewProperties.TypeEnum), MarkdownViewProperties.ShapeEnum shape = default(MarkdownViewProperties.ShapeEnum), string note = null)
Parameters
Type | Name | Description |
---|---|---|
MarkdownViewProperties.TypeEnum | type | type (required) (default to TypeEnum.Markdown). |
MarkdownViewProperties.ShapeEnum | shape | shape (required) (default to ShapeEnum.ChronografV2). |
System.String | note | note (required). |
Properties
Note
Gets or Sets Note
Declaration
public string Note { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Shape
Gets or Sets Shape
Declaration
public MarkdownViewProperties.ShapeEnum Shape { get; set; }
Property Value
Type | Description |
---|---|
MarkdownViewProperties.ShapeEnum |
Type
Gets or Sets Type
Declaration
public MarkdownViewProperties.TypeEnum Type { get; set; }
Property Value
Type | Description |
---|---|
MarkdownViewProperties.TypeEnum |
Methods
Equals(MarkdownViewProperties)
Returns true if MarkdownViewProperties instances are equal
Declaration
public bool Equals(MarkdownViewProperties input)
Parameters
Type | Name | Description |
---|---|---|
MarkdownViewProperties | input | Instance of MarkdownViewProperties 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<>