@@ -556,6 +556,7 @@ class SummaryCase(PdmObjectBase):
556556 Attributes:
557557 auto_shorty_name (bool): Use Auto Display Name
558558 id (int): Case ID
559+ include_in_auto_reload (bool): Include in Automatic Case Reloads
559560 name_setting (str): One of [FULL_CASE_NAME, SHORT_CASE_NAME, CUSTOM_NAME]
560561 short_name (str): Display Name
561562 show_sub_nodes_in_tree (bool): Show Summary Data Sub-Tree
@@ -566,6 +567,7 @@ class SummaryCase(PdmObjectBase):
566567 def __init__ (self , pb2_object : Optional [PdmObject_pb2 .PdmObject ]= None , channel : Optional [grpc .Channel ]= None ) -> None :
567568 self .auto_shorty_name : bool = False
568569 self .id : int = - 1
570+ self .include_in_auto_reload : bool = False
569571 self .name_setting : str = "FULL_CASE_NAME"
570572 self .short_name : str = ""
571573 self .show_sub_nodes_in_tree : bool = True
@@ -2397,6 +2399,7 @@ class SummaryCaseSubCollection(PdmObjectBase):
23972399 Attributes:
23982400 create_auto_name (bool): Auto Name
23992401 id (int): Ensemble ID
2402+ include_in_auto_reload (bool): Include in Automatic Case Reloads
24002403 is_ensemble (bool): Is Ensemble
24012404 name_count (str): Name
24022405 summary_collection_name (str): Name
@@ -2408,6 +2411,7 @@ class SummaryCaseSubCollection(PdmObjectBase):
24082411 def __init__ (self , pb2_object : Optional [PdmObject_pb2 .PdmObject ]= None , channel : Optional [grpc .Channel ]= None ) -> None :
24092412 self .create_auto_name : bool = True
24102413 self .id : int = - 1
2414+ self .include_in_auto_reload : bool = False
24112415 self .is_ensemble : bool = False
24122416 self .name_count : str = "Group"
24132417 self .summary_collection_name : str = "Group"
0 commit comments