Class ConditionalRule
The conditional rule properties include, field id and isChecked.
Inheritance
System.Object
ConditionalRule
Namespace: BoldSign.Model
Assembly: BoldSign.Api.dll
Syntax
public class ConditionalRule : object
Constructors
| Improve this Doc View SourceConditionalRule(String, Boolean, String)
Initializes a new instance of the ConditionalRule class.
Declaration
public ConditionalRule(string fieldId = null, bool isChecked = null, string value = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | fieldId | Gets or sets the FieldId. |
System.Boolean | isChecked | Gets or sets the isChecked. |
System.String | value | Gets or sets the value. |
Properties
| Improve this Doc View SourceFieldId
Gets or sets the fieldId.
Declaration
public string FieldId { get; set; }
Property Value
Type | Description |
---|---|
System.String | Gets the value of fieldId. |
IsChecked
Gets or sets a value indicating whether the field is checked or not.
Declaration
public bool IsChecked { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | Gets or sets a value indicating whether is checked. |
Value
Gets or sets the value.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | Gets the conditional rule value. |
Methods
| Improve this Doc View SourceToJson()
Returns the JSON string presentation of the object.
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
System.String | JSON string presentation of the object. |