DecimalMetadata
Metadata for a Dataverse decimal number column, including minimum/maximum value constraints and precision.
DecimalMetadata Class
Properties
Name | Type | Default | Description |
|---|---|---|---|
ColumnName | string | The logical name of the column in Dataverse (e.g. 'firstname', 'emailaddress1'). | |
ColumnType | ColumnType | Decimal | Returns Decimal. |
Description | string? | The localized description of the column, or null if no description is configured. | |
DisplayName | string | The localized display name of the column as configured in Dataverse. | |
IsValidForCreate | bool | False | Indicates whether this column can be set when creating a new record. |
IsValidForUpdate | bool | False | Indicates whether this column can be modified when updating an existing record. |
Max | decimal | 0 | The maximum allowed value for this column. |
Min | decimal | 0 | The minimum allowed value for this column. |
Precision | int | 0 | The number of decimal places used for display and validation. |
RequiredLevel | RequiredLevel | None | The required level of the column (None, SystemRequired, ApplicationRequired, or Recommended). |
Name:
ColumnNameType:
string
Description:
The logical name of the column in Dataverse (e.g. 'firstname', 'emailaddress1').
Name:
ColumnTypeType:
ColumnType
Default:
Decimal
Description:
Returns Decimal.
Name:
DescriptionType:
string?
Description:
The localized description of the column, or null if no description is configured.
Name:
DisplayNameType:
string
Description:
The localized display name of the column as configured in Dataverse.
Name:
IsValidForCreateType:
bool
Default:
False
Description:
Indicates whether this column can be set when creating a new record.
Name:
IsValidForUpdateType:
bool
Default:
False
Description:
Indicates whether this column can be modified when updating an existing record.
Name:
MaxType:
decimal
Default:
0
Description:
The maximum allowed value for this column.
Name:
MinType:
decimal
Default:
0
Description:
The minimum allowed value for this column.
Name:
PrecisionType:
int
Default:
0
Description:
The number of decimal places used for display and validation.
Name:
RequiredLevelType:
RequiredLevel
Default:
None
Description:
The required level of the column (None, SystemRequired, ApplicationRequired, or Recommended).
