You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Gets the is_root of this Resource. # noqa: E501
443
+
444
+
Gets the flag indicating whether resource is a root resource. Root resource is a special resource which is intended to support internals of MS Project's formats and is not intended to be used directly from the user's code. # noqa: E501
445
+
446
+
:return: The is_root of this Resource. # noqa: E501
447
+
:rtype: bool
448
+
"""
449
+
returnself._is_root
450
+
451
+
@is_root.setter
452
+
defis_root(self, is_root):
453
+
"""Sets the is_root of this Resource.
454
+
455
+
Gets the flag indicating whether resource is a root resource. Root resource is a special resource which is intended to support internals of MS Project's formats and is not intended to be used directly from the user's code. # noqa: E501
456
+
457
+
:param is_root: The is_root of this Resource. # noqa: E501
458
+
:type: bool
459
+
"""
460
+
ifis_rootisNone:
461
+
raiseValueError("Invalid value for `is_root`, must not be `None`") # noqa: E501
Copy file name to clipboardExpand all lines: docs/ExtendedAttributeDefinition.md
+1
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ Name | Type | Description | Notes
18
18
**phonetics_alias** | **str** | The phonetic pronunciation of the alias of a custom field. | [optional]
19
19
**rollup_type** | [**RollupType**](RollupType.md) | The way rollups are calculated. |
20
20
**calculation_type** | [**CalculationType**](CalculationType.md) | Determines whether rollups are calculated for a task and group summary rows. |
21
+
**summary_rows_calculation_type** | [**SummaryRowsCalculationType**](SummaryRowsCalculationType.md) | Gets or sets the type of calculation of the custom attribute's value for summary rows. |
21
22
**formula** | **str** | The formula that Microsoft Project uses to populate a custom task field. | [optional]
22
23
**restrict_values** | **bool** | Determines whether only values in the list are allowed in a file. |
23
24
**valuelist_sort_order** | **int** | The way value lists are sorted. Values are: 0=Descending, 1=Ascending. |
**is_root** | **bool** | Gets the flag indicating whether resource is a root resource. Root resource is a special resource which is intended to support internals of MS Project's formats and is not intended to be used directly from the user's code. |
6
7
**name** | **str** | The name of a resource. | [optional]
7
8
**uid** | **int** | The unique identifier of a resource. |
8
9
**id** | **int** | The position identifier of a resource within the list of resources. |
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments