@meshmakers/octo-services 3.3.560 → 3.3.570

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
2
2
  import { InjectionToken, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
3
3
  import * as rxjs from 'rxjs';
4
4
  import { Observable } from 'rxjs';
5
- import { PagedResultDto, DataSourceBase, MessageService } from '@meshmakers/shared-services';
5
+ import { PagedResultDto, EntitySelectDataSource, EntitySelectResult, DataSourceBase, MessageService } from '@meshmakers/shared-services';
6
6
  import { ApolloLink, OperationVariables } from '@apollo/client/core';
7
7
  import { SVGIcon } from '@progress/kendo-svg-icons/dist/svg-icon.interface';
8
8
  import * as Apollo from 'apollo-angular';
@@ -11,6 +11,7 @@ import * as graphql from 'graphql';
11
11
  import { DocumentNode } from 'graphql';
12
12
  import { HttpLink } from 'apollo-angular/http';
13
13
  import { DeepPartial } from '@apollo/client/utilities';
14
+ import { EntitySelectDialogDataSource, ColumnDefinition, DialogFetchOptions, DialogFetchResult } from '@meshmakers/shared-ui';
14
15
 
15
16
  declare class OctoServiceOptions {
16
17
  assetServices: string | null;
@@ -30498,6 +30499,82 @@ type TenantIdProvider = () => Promise<string | null>;
30498
30499
  */
30499
30500
  declare const TENANT_ID_PROVIDER: InjectionToken<TenantIdProvider>;
30500
30501
 
30502
+ type GetEntitiesByCkTypeQueryVariablesDto = Exact<{
30503
+ ckTypeId: Scalars['String']['input'];
30504
+ rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;
30505
+ after?: InputMaybe<Scalars['String']['input']>;
30506
+ first?: InputMaybe<Scalars['Int']['input']>;
30507
+ searchFilter?: InputMaybe<SearchFilterDto>;
30508
+ fieldFilters?: InputMaybe<Array<InputMaybe<FieldFilterDto>> | InputMaybe<FieldFilterDto>>;
30509
+ sort?: InputMaybe<Array<InputMaybe<SortDto>> | InputMaybe<SortDto>>;
30510
+ }>;
30511
+ type GetEntitiesByCkTypeQueryDto = {
30512
+ __typename?: 'OctoQuery';
30513
+ runtime?: {
30514
+ __typename?: 'RuntimeModelQuery';
30515
+ runtimeEntities?: {
30516
+ __typename?: 'RtEntityGenericDtoConnection';
30517
+ totalCount?: number | null;
30518
+ items?: Array<{
30519
+ __typename?: 'RtEntity';
30520
+ rtId: any;
30521
+ ckTypeId: any;
30522
+ rtWellKnownName?: string | null;
30523
+ rtCreationDateTime?: any | null;
30524
+ rtChangedDateTime?: any | null;
30525
+ attributes?: {
30526
+ __typename?: 'RtEntityAttributeDtoConnection';
30527
+ items?: Array<{
30528
+ __typename?: 'RtEntityAttribute';
30529
+ attributeName?: string | null;
30530
+ value?: any | null;
30531
+ } | null> | null;
30532
+ } | null;
30533
+ } | null> | null;
30534
+ } | null;
30535
+ } | null;
30536
+ };
30537
+ declare const GetEntitiesByCkTypeDocumentDto: Apollo.TypedDocumentNode<unknown, unknown>;
30538
+ declare class GetEntitiesByCkTypeDtoGQL extends Apollo.Query<GetEntitiesByCkTypeQueryDto, GetEntitiesByCkTypeQueryVariablesDto> {
30539
+ document: Apollo.TypedDocumentNode<unknown, unknown>;
30540
+ constructor(apollo: Apollo.Apollo);
30541
+ static ɵfac: i0.ɵɵFactoryDeclaration<GetEntitiesByCkTypeDtoGQL, never>;
30542
+ static ɵprov: i0.ɵɵInjectableDeclaration<GetEntitiesByCkTypeDtoGQL>;
30543
+ }
30544
+
30545
+ /**
30546
+ * Represents a runtime entity for selection in config dialogs
30547
+ */
30548
+ interface RuntimeEntityItem {
30549
+ rtId: string;
30550
+ ckTypeId: string;
30551
+ rtWellKnownName?: string;
30552
+ displayName: string;
30553
+ }
30554
+ /**
30555
+ * Data source for entity autocomplete input - filters entities by CK Type
30556
+ */
30557
+ declare class RuntimeEntitySelectDataSource implements EntitySelectDataSource<RuntimeEntityItem> {
30558
+ private getEntitiesByCkTypeGQL;
30559
+ private ckTypeId;
30560
+ constructor(getEntitiesByCkTypeGQL: GetEntitiesByCkTypeDtoGQL, ckTypeId: string);
30561
+ onFilter(filter: string, take?: number): Promise<EntitySelectResult<RuntimeEntityItem>>;
30562
+ onDisplayEntity(entity: RuntimeEntityItem): string;
30563
+ getIdEntity(entity: RuntimeEntityItem): string;
30564
+ }
30565
+ /**
30566
+ * Dialog data source for entity selection grid with pagination and search
30567
+ */
30568
+ declare class RuntimeEntityDialogDataSource implements EntitySelectDialogDataSource<RuntimeEntityItem> {
30569
+ private getEntitiesByCkTypeGQL;
30570
+ private ckTypeId;
30571
+ constructor(getEntitiesByCkTypeGQL: GetEntitiesByCkTypeDtoGQL, ckTypeId: string);
30572
+ getColumns(): ColumnDefinition[];
30573
+ fetchData(options: DialogFetchOptions): Observable<DialogFetchResult<RuntimeEntityItem>>;
30574
+ onDisplayEntity(entity: RuntimeEntityItem): string;
30575
+ getIdEntity(entity: RuntimeEntityItem): string;
30576
+ }
30577
+
30501
30578
  /**
30502
30579
  * Backward-compatible OctoServicesModule for legacy apps that use
30503
30580
  * importProvidersFrom(OctoServicesModule.forRoot(options)).
@@ -30592,5 +30669,5 @@ declare class OctoGraphQLServiceBase {
30592
30669
 
30593
30670
  declare function provideOctoServices(octoServiceOptions?: OctoServiceOptions): EnvironmentProviders;
30594
30671
 
30595
- export { AggregationInputTypesDto, AggregationTypeDto, AggregationTypesDto, AssetRepoGraphQlDataSource, AssetRepoService, AssociationModOptionsDto, AttributeSelectorService, AttributeValueTypeDto, BasicLegalEntityTypeDto, BasicSalutationDto, BasicTypeOfTelephoneBasicDto, BasicTypeOfTelephoneEnhancedDto, BasicUnitOfMeasureDto, BotService, CONFIGURATION_SERVICE, CkExtensionUpdateOperationsDto, CkModelService, CkTypeAttributeService, CkTypeMetaData, CkTypeSelectorService, CommunicationService, DeleteStrategiesDto, DeploymentState, EnergyCommunityBillingCycleDto, EnergyCommunityBillingDocumentStateDto, EnergyCommunityBillingTypeDto, EnergyCommunityDataQualityDto, EnergyCommunityFacilityTypeDto, EnergyCommunityProductionTypeDto, EnergyCommunityStateDto, EnergyCommunityTaxProcedureCreditNoteDto, EnvironmentGoalStateDto, FieldFilterOperatorsDto, GetCkModelByIdDocumentDto, GetCkModelByIdDtoGQL, GetCkRecordAttributesDocumentDto, GetCkRecordAttributesDtoGQL, GetCkTypeAttributesDocumentDto, GetCkTypeAttributesDtoGQL, GetCkTypeAvailableQueryColumnsDocumentDto, GetCkTypeAvailableQueryColumnsDtoGQL, GetCkTypesDocumentDto, GetCkTypesDtoGQL, GetDerivedCkTypesDocumentDto, GetDerivedCkTypesDtoGQL, GraphDirectionDto, GraphQL, GraphQLCloneIgnoredProperties, GraphQLCommonIgnoredProperties, GraphQlDataSource, HealthService, HealthStatus, IdentityService, ImportStrategyDto, IndustryBasicAlarmPriorityDto, IndustryBasicAlarmSourceTypeDto, IndustryBasicAlarmStateDto, IndustryBasicAlarmTypeDto, IndustryBasicIecDataTypeDto, IndustryBasicMachineCapabilitiesDto, IndustryBasicMachineStateDto, IndustryMaintenanceAggregationTypeDto, IndustryMaintenanceCostCategoryDto, IndustryMaintenanceEnergyBalanceGroupDto, IndustryMaintenanceEnergyBalanceProductDto, IndustryMaintenanceEnergyBalanceUnitDto, IndustryMaintenanceOrderPriorityDto, IndustryMaintenanceOrderStateDto, IndustryMaintenanceOrderTypeDto, IndustryMaintenanceServiceTypeDto, JobManagementService, LevelMetaData, LoggerSeverity, ModelStateDto, MultiplicitiesDto, NavigationFilterModeDto, OctoErrorLink, OctoGraphQLServiceBase, OctoSdkDemoCustomerStatusDto, OctoSdkDemoNetworkOperatorDto, OctoSdkDemoOperatingStatusDto, OctoServiceOptions, OctoServicesModule, PagedGraphResultDto, ProgressValue, ProgressWindowService, QueryModeDto, RtAssociationMetaData, SearchFilterTypesDto, SortOrderDto, SortOrdersDto, SystemAggregationTypesDto, SystemCommunicationCommunicationStateDto, SystemCommunicationConfigurationStateDto, SystemCommunicationDeploymentStateDto, SystemCommunicationPipelineExecutionStatusDto, SystemCommunicationPipelineTriggerTypeDto, SystemEnvironmentModesDto, SystemFieldFilterOperatorDto, SystemIdentityTokenExpirationDto, SystemIdentityTokenTypeDto, SystemIdentityTokenUsageDto, SystemMaintenanceLevelsDto, SystemNavigationFilterModesDto, SystemNotificationEventLevelsDto, SystemNotificationEventSourcesDto, SystemNotificationEventStatesDto, SystemNotificationNotificationTypesDto, SystemNotificationRenderingTypesDto, SystemQueryTypesDto, SystemSortOrdersDto, TENANT_ID_PROVIDER, TusUploadService, UpdateTypeDto, result as possibleTypes, provideOctoServices };
30596
- export type { AddInConfiguration, AdminPanelConfigurationDto, AggregationDto, AttributeArgumentDto, AttributeItem, AttributeSelectorResult, BasicAddressDto, BasicAddressInputDto, BasicAmountDto, BasicAmountInputDto, BasicAssetAssociationsArgsDto, BasicAssetChildrenArgsDto, BasicAssetConfiguredByArgsDto, BasicAssetConnectionDto, BasicAssetDto, BasicAssetEdgeDto, BasicAssetEventsArgsDto, BasicAssetInputDto, BasicAssetInputUpdateDto, BasicAssetMutationsCreateArgsDto, BasicAssetMutationsDto, BasicAssetMutationsUpdateArgsDto, BasicAssetOrdersArgsDto, BasicAssetParentArgsDto, BasicAssetRelatesFromArgsDto, BasicAssetRelatesToArgsDto, BasicAssetTaggedByArgsDto, BasicAssetUpdateDto, BasicAssetUpdateMessageDto, BasicAsset_EventSourceUnionConnectionDto, BasicAsset_EventSourceUnionDto, BasicAsset_EventSourceUnionEdgeDto, BasicAsset_RelatesFromUnionConnectionDto, BasicAsset_RelatesFromUnionDto, BasicAsset_RelatesFromUnionEdgeDto, BasicBankAccountDto, BasicBankAccountInputDto, BasicCityAssociationsArgsDto, BasicCityChildrenArgsDto, BasicCityConfiguredByArgsDto, BasicCityConnectionDto, BasicCityDto, BasicCityEdgeDto, BasicCityInputDto, BasicCityInputUpdateDto, BasicCityMutationsCreateArgsDto, BasicCityMutationsDto, BasicCityMutationsUpdateArgsDto, BasicCityOrdersArgsDto, BasicCityParentArgsDto, BasicCityRelatesFromArgsDto, BasicCityRelatesToArgsDto, BasicCityTaggedByArgsDto, BasicCityUpdateDto, BasicCityUpdateMessageDto, BasicContactDto, BasicContactInputDto, BasicCountryAssociationsArgsDto, BasicCountryChildrenArgsDto, BasicCountryConfiguredByArgsDto, BasicCountryConnectionDto, BasicCountryDto, BasicCountryEdgeDto, BasicCountryInputDto, BasicCountryInputUpdateDto, BasicCountryMutationsCreateArgsDto, BasicCountryMutationsDto, BasicCountryMutationsUpdateArgsDto, BasicCountryOrdersArgsDto, BasicCountryParentArgsDto, BasicCountryRelatesFromArgsDto, BasicCountryRelatesToArgsDto, BasicCountryTaggedByArgsDto, BasicCountryUpdateDto, BasicCountryUpdateMessageDto, BasicDistrictAssociationsArgsDto, BasicDistrictChildrenArgsDto, BasicDistrictConfiguredByArgsDto, BasicDistrictConnectionDto, BasicDistrictDto, BasicDistrictEdgeDto, BasicDistrictInputDto, BasicDistrictInputUpdateDto, BasicDistrictMutationsCreateArgsDto, BasicDistrictMutationsDto, BasicDistrictMutationsUpdateArgsDto, BasicDistrictOrdersArgsDto, BasicDistrictParentArgsDto, BasicDistrictRelatesFromArgsDto, BasicDistrictRelatesToArgsDto, BasicDistrictTaggedByArgsDto, BasicDistrictUpdateDto, BasicDistrictUpdateMessageDto, BasicDocumentAssociationsArgsDto, BasicDocumentConfiguredByArgsDto, BasicDocumentConnectionDto, BasicDocumentDto, BasicDocumentEdgeDto, BasicDocumentInterfaceConfiguredByArgsDto, BasicDocumentInterfaceDto, BasicDocumentInterfaceRelatesFromArgsDto, BasicDocumentInterfaceRelatesToArgsDto, BasicDocumentInterfaceTaggedByArgsDto, BasicDocumentRelatesFromArgsDto, BasicDocumentRelatesToArgsDto, BasicDocumentTaggedByArgsDto, BasicDocumentUpdateDto, BasicDocumentUpdateMessageDto, BasicEMailDto, BasicEMailInputDto, BasicEmployeeAssociationsArgsDto, BasicEmployeeConfiguredByArgsDto, BasicEmployeeConnectionDto, BasicEmployeeDto, BasicEmployeeEdgeDto, BasicEmployeeInputDto, BasicEmployeeInputUpdateDto, BasicEmployeeMutationsCreateArgsDto, BasicEmployeeMutationsDto, BasicEmployeeMutationsUpdateArgsDto, BasicEmployeeRelatesFromArgsDto, BasicEmployeeRelatesToArgsDto, BasicEmployeeTaggedByArgsDto, BasicEmployeeUpdateDto, BasicEmployeeUpdateMessageDto, BasicFaxNumberDto, BasicFaxNumberInputDto, BasicMarkingDto, BasicMarkingInputDto, BasicNamePlateDto, BasicNamePlateInputDto, BasicNamedEntityAssociationsArgsDto, BasicNamedEntityConfiguredByArgsDto, BasicNamedEntityConnectionDto, BasicNamedEntityDto, BasicNamedEntityEdgeDto, BasicNamedEntityInterfaceConfiguredByArgsDto, BasicNamedEntityInterfaceDto, BasicNamedEntityInterfaceRelatesFromArgsDto, BasicNamedEntityInterfaceRelatesToArgsDto, BasicNamedEntityInterfaceTaggedByArgsDto, BasicNamedEntityRelatesFromArgsDto, BasicNamedEntityRelatesToArgsDto, BasicNamedEntityTaggedByArgsDto, BasicNamedEntityUpdateDto, BasicNamedEntityUpdateMessageDto, BasicPhoneNumberDto, BasicPhoneNumberInputDto, BasicStateAssociationsArgsDto, BasicStateChildrenArgsDto, BasicStateConfiguredByArgsDto, BasicStateConnectionDto, BasicStateDto, BasicStateEdgeDto, BasicStateInputDto, BasicStateInputUpdateDto, BasicStateMutationsCreateArgsDto, BasicStateMutationsDto, BasicStateMutationsUpdateArgsDto, BasicStateOrdersArgsDto, BasicStateParentArgsDto, BasicStateRelatesFromArgsDto, BasicStateRelatesToArgsDto, BasicStateTaggedByArgsDto, BasicStateUpdateDto, BasicStateUpdateMessageDto, BasicTimeRangeDto, BasicTimeRangeInputDto, BasicTreeAssociationsArgsDto, BasicTreeChildrenArgsDto, BasicTreeConfiguredByArgsDto, BasicTreeConnectionDto, BasicTreeDto, BasicTreeEdgeDto, BasicTreeInputDto, BasicTreeInputUpdateDto, BasicTreeMutationsCreateArgsDto, BasicTreeMutationsDto, BasicTreeMutationsUpdateArgsDto, BasicTreeNodeAssociationsArgsDto, BasicTreeNodeChildrenArgsDto, BasicTreeNodeConfiguredByArgsDto, BasicTreeNodeConnectionDto, BasicTreeNodeDto, BasicTreeNodeEdgeDto, BasicTreeNodeInputDto, BasicTreeNodeInputUpdateDto, BasicTreeNodeMutationsCreateArgsDto, BasicTreeNodeMutationsDto, BasicTreeNodeMutationsUpdateArgsDto, BasicTreeNodeOrdersArgsDto, BasicTreeNodeParentArgsDto, BasicTreeNodeRelatesFromArgsDto, BasicTreeNodeRelatesToArgsDto, BasicTreeNodeTaggedByArgsDto, BasicTreeNodeUpdateDto, BasicTreeNodeUpdateMessageDto, BasicTreeNode_ChildrenUnionConnectionDto, BasicTreeNode_ChildrenUnionDto, BasicTreeNode_ChildrenUnionEdgeDto, BasicTreeNode_MachineUnionConnectionDto, BasicTreeNode_MachineUnionDto, BasicTreeNode_MachineUnionEdgeDto, BasicTreeNode_ParentUnionConnectionDto, BasicTreeNode_ParentUnionDto, BasicTreeNode_ParentUnionEdgeDto, BasicTreeNode_RelatesToUnionConnectionDto, BasicTreeNode_RelatesToUnionDto, BasicTreeNode_RelatesToUnionEdgeDto, BasicTreeRelatesFromArgsDto, BasicTreeRelatesToArgsDto, BasicTreeTaggedByArgsDto, BasicTreeUpdateDto, BasicTreeUpdateMessageDto, BasicTree_ParentUnionConnectionDto, BasicTree_ParentUnionDto, BasicTree_ParentUnionEdgeDto, CkAssociationRoleDto, CkAssociationRoleDtoConnectionDto, CkAssociationRoleDtoEdgeDto, CkAssociationRoleIdDto, CkAttributeDto, CkAttributeDtoConnectionDto, CkAttributeDtoEdgeDto, CkAttributeIdDto, CkAttributeMetaDataDto, CkEnumDto, CkEnumDtoConnectionDto, CkEnumDtoEdgeDto, CkEnumIdDto, CkEnumMutationsDto, CkEnumMutationsUpdateValueExtensionsArgsDto, CkEnumUpdateDto, CkEnumValueDto, CkEnumValueInputDto, CkModelAttributesArgsDto, CkModelDto, CkModelDtoConnectionDto, CkModelDtoEdgeDto, CkModelEnumsArgsDto, CkModelIdDto, CkModelRecordsArgsDto, CkModelTypesArgsDto, CkRecordAttributesArgsDto, CkRecordDerivedRecordTypesArgsDto, CkRecordDto, CkRecordDtoConnectionDto, CkRecordDtoEdgeDto, CkRecordIdDto, CkTypeAssociationDirectionDto, CkTypeAssociationDto, CkTypeAssociationSourceDto, CkTypeAttributeDto, CkTypeAttributeDtoConnectionDto, CkTypeAttributeDtoEdgeDto, CkTypeAttributeInfo, CkTypeAttributesArgsDto, CkTypeAvailableQueryColumnsArgsDto, CkTypeDerivedTypesArgsDto, CkTypeDirectAndIndirectDerivedTypesArgsDto, CkTypeDto, CkTypeDtoConnectionDto, CkTypeDtoEdgeDto, CkTypeIdDto, CkTypeQueryColumnDto, CkTypeQueryColumnDtoConnectionDto, CkTypeQueryColumnDtoEdgeDto, CkTypeSelectorItem, CkTypeSelectorResult, ClientDto, ClientScope, ConfigurationDto, ConstructionKitMutationsDto, ConstructionKitMutationsEnumsArgsDto, ConstructionKitQueryAssociationRolesArgsDto, ConstructionKitQueryAttributesArgsDto, ConstructionKitQueryDto, ConstructionKitQueryEnumsArgsDto, ConstructionKitQueryModelsArgsDto, ConstructionKitQueryRecordsArgsDto, ConstructionKitQueryTypesArgsDto, DebugMessage, DebugPointDataDto, DebugPointNode, DeploymentResultDto, DiagnosticsModel, EnergyCommunityBillingDocumentAssignedToArgsDto, EnergyCommunityBillingDocumentAssociationsArgsDto, EnergyCommunityBillingDocumentChildrenArgsDto, EnergyCommunityBillingDocumentConfiguredByArgsDto, EnergyCommunityBillingDocumentConnectionDto, EnergyCommunityBillingDocumentDto, EnergyCommunityBillingDocumentEdgeDto, EnergyCommunityBillingDocumentInputDto, EnergyCommunityBillingDocumentInputUpdateDto, EnergyCommunityBillingDocumentLineItemAssignedToArgsDto, EnergyCommunityBillingDocumentLineItemAssociationsArgsDto, EnergyCommunityBillingDocumentLineItemConfiguredByArgsDto, EnergyCommunityBillingDocumentLineItemConnectionDto, EnergyCommunityBillingDocumentLineItemDto, EnergyCommunityBillingDocumentLineItemEdgeDto, EnergyCommunityBillingDocumentLineItemInputDto, EnergyCommunityBillingDocumentLineItemInputUpdateDto, EnergyCommunityBillingDocumentLineItemMutationsCreateArgsDto, EnergyCommunityBillingDocumentLineItemMutationsDto, EnergyCommunityBillingDocumentLineItemMutationsUpdateArgsDto, EnergyCommunityBillingDocumentLineItemParentArgsDto, EnergyCommunityBillingDocumentLineItemRelatesFromArgsDto, EnergyCommunityBillingDocumentLineItemRelatesToArgsDto, EnergyCommunityBillingDocumentLineItemTaggedByArgsDto, EnergyCommunityBillingDocumentLineItemUpdateDto, EnergyCommunityBillingDocumentLineItemUpdateMessageDto, EnergyCommunityBillingDocumentLineItem_BillingUnionConnectionDto, EnergyCommunityBillingDocumentLineItem_BillingUnionDto, EnergyCommunityBillingDocumentLineItem_BillingUnionEdgeDto, EnergyCommunityBillingDocumentLineItem_ChildrenUnionConnectionDto, EnergyCommunityBillingDocumentLineItem_ChildrenUnionDto, EnergyCommunityBillingDocumentLineItem_ChildrenUnionEdgeDto, EnergyCommunityBillingDocumentMutationsCreateArgsDto, EnergyCommunityBillingDocumentMutationsDto, EnergyCommunityBillingDocumentMutationsUpdateArgsDto, EnergyCommunityBillingDocumentRelatesFromArgsDto, EnergyCommunityBillingDocumentRelatesToArgsDto, EnergyCommunityBillingDocumentTaggedByArgsDto, EnergyCommunityBillingDocumentUpdateDto, EnergyCommunityBillingDocumentUpdateMessageDto, EnergyCommunityBillingDocument_BillingUnionConnectionDto, EnergyCommunityBillingDocument_BillingUnionDto, EnergyCommunityBillingDocument_BillingUnionEdgeDto, EnergyCommunityBillingDocument_ParentUnionConnectionDto, EnergyCommunityBillingDocument_ParentUnionDto, EnergyCommunityBillingDocument_ParentUnionEdgeDto, EnergyCommunityConsumerAssociationsArgsDto, EnergyCommunityConsumerChildrenArgsDto, EnergyCommunityConsumerConfiguredByArgsDto, EnergyCommunityConsumerConnectionDto, EnergyCommunityConsumerDto, EnergyCommunityConsumerEdgeDto, EnergyCommunityConsumerInputDto, EnergyCommunityConsumerInputUpdateDto, EnergyCommunityConsumerMutationsCreateArgsDto, EnergyCommunityConsumerMutationsDto, EnergyCommunityConsumerMutationsUpdateArgsDto, EnergyCommunityConsumerParentArgsDto, EnergyCommunityConsumerRelatesFromArgsDto, EnergyCommunityConsumerRelatesToArgsDto, EnergyCommunityConsumerTaggedByArgsDto, EnergyCommunityConsumerUpdateDto, EnergyCommunityConsumerUpdateMessageDto, EnergyCommunityCustomerAssociationsArgsDto, EnergyCommunityCustomerBillingArgsDto, EnergyCommunityCustomerConfiguredByArgsDto, EnergyCommunityCustomerConnectionDto, EnergyCommunityCustomerDto, EnergyCommunityCustomerEdgeDto, EnergyCommunityCustomerFacilitiesArgsDto, EnergyCommunityCustomerInputDto, EnergyCommunityCustomerInputUpdateDto, EnergyCommunityCustomerMutationsCreateArgsDto, EnergyCommunityCustomerMutationsDto, EnergyCommunityCustomerMutationsUpdateArgsDto, EnergyCommunityCustomerRelatesFromArgsDto, EnergyCommunityCustomerRelatesToArgsDto, EnergyCommunityCustomerTaggedByArgsDto, EnergyCommunityCustomerUpdateDto, EnergyCommunityCustomerUpdateMessageDto, EnergyCommunityCustomer_AssignedToUnionConnectionDto, EnergyCommunityCustomer_AssignedToUnionDto, EnergyCommunityCustomer_AssignedToUnionEdgeDto, EnergyCommunityCustomer_CustomerUnionConnectionDto, EnergyCommunityCustomer_CustomerUnionDto, EnergyCommunityCustomer_CustomerUnionEdgeDto, EnergyCommunityEdaMessageAssociationsArgsDto, EnergyCommunityEdaMessageConfiguredByArgsDto, EnergyCommunityEdaMessageConnectionDto, EnergyCommunityEdaMessageDto, EnergyCommunityEdaMessageEdgeDto, EnergyCommunityEdaMessageInputDto, EnergyCommunityEdaMessageInputUpdateDto, EnergyCommunityEdaMessageMutationsCreateArgsDto, EnergyCommunityEdaMessageMutationsDto, EnergyCommunityEdaMessageMutationsUpdateArgsDto, EnergyCommunityEdaMessageProcessArgsDto, EnergyCommunityEdaMessageRelatesFromArgsDto, EnergyCommunityEdaMessageRelatesToArgsDto, EnergyCommunityEdaMessageTaggedByArgsDto, EnergyCommunityEdaMessageUpdateDto, EnergyCommunityEdaMessageUpdateMessageDto, EnergyCommunityEdaMessage_MessagesUnionConnectionDto, EnergyCommunityEdaMessage_MessagesUnionDto, EnergyCommunityEdaMessage_MessagesUnionEdgeDto, EnergyCommunityEdaMeteringPointAssociationsArgsDto, EnergyCommunityEdaMeteringPointConfiguredByArgsDto, EnergyCommunityEdaMeteringPointConnectionDto, EnergyCommunityEdaMeteringPointDto, EnergyCommunityEdaMeteringPointEdgeDto, EnergyCommunityEdaMeteringPointInputDto, EnergyCommunityEdaMeteringPointInputUpdateDto, EnergyCommunityEdaMeteringPointMutationsCreateArgsDto, EnergyCommunityEdaMeteringPointMutationsDto, EnergyCommunityEdaMeteringPointMutationsUpdateArgsDto, EnergyCommunityEdaMeteringPointRelatesFromArgsDto, EnergyCommunityEdaMeteringPointRelatesToArgsDto, EnergyCommunityEdaMeteringPointTaggedByArgsDto, EnergyCommunityEdaMeteringPointUpdateDto, EnergyCommunityEdaMeteringPointUpdateMessageDto, EnergyCommunityEdaProcessAssociationsArgsDto, EnergyCommunityEdaProcessConfiguredByArgsDto, EnergyCommunityEdaProcessConnectionDto, EnergyCommunityEdaProcessDto, EnergyCommunityEdaProcessEdgeDto, EnergyCommunityEdaProcessInputDto, EnergyCommunityEdaProcessInputUpdateDto, EnergyCommunityEdaProcessMessagesArgsDto, EnergyCommunityEdaProcessMutationsCreateArgsDto, EnergyCommunityEdaProcessMutationsDto, EnergyCommunityEdaProcessMutationsUpdateArgsDto, EnergyCommunityEdaProcessRelatesFromArgsDto, EnergyCommunityEdaProcessRelatesToArgsDto, EnergyCommunityEdaProcessTaggedByArgsDto, EnergyCommunityEdaProcessUpdateDto, EnergyCommunityEdaProcessUpdateMessageDto, EnergyCommunityEdaProcess_ProcessUnionConnectionDto, EnergyCommunityEdaProcess_ProcessUnionDto, EnergyCommunityEdaProcess_ProcessUnionEdgeDto, EnergyCommunityEnergyPriceAssociationsArgsDto, EnergyCommunityEnergyPriceConfiguredByArgsDto, EnergyCommunityEnergyPriceConnectionDto, EnergyCommunityEnergyPriceDto, EnergyCommunityEnergyPriceEdgeDto, EnergyCommunityEnergyPriceInputDto, EnergyCommunityEnergyPriceInputUpdateDto, EnergyCommunityEnergyPriceMutationsCreateArgsDto, EnergyCommunityEnergyPriceMutationsDto, EnergyCommunityEnergyPriceMutationsUpdateArgsDto, EnergyCommunityEnergyPriceRelatesFromArgsDto, EnergyCommunityEnergyPriceRelatesToArgsDto, EnergyCommunityEnergyPriceTaggedByArgsDto, EnergyCommunityEnergyPriceUpdateDto, EnergyCommunityEnergyPriceUpdateMessageDto, EnergyCommunityEnergyQuantityAssociationsArgsDto, EnergyCommunityEnergyQuantityBillingArgsDto, EnergyCommunityEnergyQuantityConfiguredByArgsDto, EnergyCommunityEnergyQuantityConnectionDto, EnergyCommunityEnergyQuantityDto, EnergyCommunityEnergyQuantityEdgeDto, EnergyCommunityEnergyQuantityInputDto, EnergyCommunityEnergyQuantityInputUpdateDto, EnergyCommunityEnergyQuantityMutationsCreateArgsDto, EnergyCommunityEnergyQuantityMutationsDto, EnergyCommunityEnergyQuantityMutationsUpdateArgsDto, EnergyCommunityEnergyQuantityParentArgsDto, EnergyCommunityEnergyQuantityRelatesFromArgsDto, EnergyCommunityEnergyQuantityRelatesToArgsDto, EnergyCommunityEnergyQuantityTaggedByArgsDto, EnergyCommunityEnergyQuantityUpdateDto, EnergyCommunityEnergyQuantityUpdateMessageDto, EnergyCommunityEnergyQuantity_AssignedToUnionConnectionDto, EnergyCommunityEnergyQuantity_AssignedToUnionDto, EnergyCommunityEnergyQuantity_AssignedToUnionEdgeDto, EnergyCommunityEnergyQuantity_ChildrenUnionConnectionDto, EnergyCommunityEnergyQuantity_ChildrenUnionDto, EnergyCommunityEnergyQuantity_ChildrenUnionEdgeDto, EnergyCommunityMeteringPointAssociationsArgsDto, EnergyCommunityMeteringPointChildrenArgsDto, EnergyCommunityMeteringPointConfiguredByArgsDto, EnergyCommunityMeteringPointConnectionDto, EnergyCommunityMeteringPointDto, EnergyCommunityMeteringPointEdgeDto, EnergyCommunityMeteringPointInterfaceChildrenArgsDto, EnergyCommunityMeteringPointInterfaceConfiguredByArgsDto, EnergyCommunityMeteringPointInterfaceDto, EnergyCommunityMeteringPointInterfaceParentArgsDto, EnergyCommunityMeteringPointInterfaceRelatesFromArgsDto, EnergyCommunityMeteringPointInterfaceRelatesToArgsDto, EnergyCommunityMeteringPointInterfaceTaggedByArgsDto, EnergyCommunityMeteringPointParentArgsDto, EnergyCommunityMeteringPointRelatesFromArgsDto, EnergyCommunityMeteringPointRelatesToArgsDto, EnergyCommunityMeteringPointTaggedByArgsDto, EnergyCommunityMeteringPointUpdateDto, EnergyCommunityMeteringPointUpdateMessageDto, EnergyCommunityMeteringPoint_ChildrenUnionConnectionDto, EnergyCommunityMeteringPoint_ChildrenUnionDto, EnergyCommunityMeteringPoint_ChildrenUnionEdgeDto, EnergyCommunityMeteringPoint_ParentUnionConnectionDto, EnergyCommunityMeteringPoint_ParentUnionDto, EnergyCommunityMeteringPoint_ParentUnionEdgeDto, EnergyCommunityOperatingFacilityAssociationsArgsDto, EnergyCommunityOperatingFacilityChildrenArgsDto, EnergyCommunityOperatingFacilityConfiguredByArgsDto, EnergyCommunityOperatingFacilityConnectionDto, EnergyCommunityOperatingFacilityCustomerArgsDto, EnergyCommunityOperatingFacilityDto, EnergyCommunityOperatingFacilityEdgeDto, EnergyCommunityOperatingFacilityInputDto, EnergyCommunityOperatingFacilityInputUpdateDto, EnergyCommunityOperatingFacilityMutationsCreateArgsDto, EnergyCommunityOperatingFacilityMutationsDto, EnergyCommunityOperatingFacilityMutationsUpdateArgsDto, EnergyCommunityOperatingFacilityOrdersArgsDto, EnergyCommunityOperatingFacilityParentArgsDto, EnergyCommunityOperatingFacilityRelatesFromArgsDto, EnergyCommunityOperatingFacilityRelatesToArgsDto, EnergyCommunityOperatingFacilityTaggedByArgsDto, EnergyCommunityOperatingFacilityUpdateDto, EnergyCommunityOperatingFacilityUpdateMessageDto, EnergyCommunityOperatingFacility_FacilitiesUnionConnectionDto, EnergyCommunityOperatingFacility_FacilitiesUnionDto, EnergyCommunityOperatingFacility_FacilitiesUnionEdgeDto, EnergyCommunityOperatingFacility_ParentUnionConnectionDto, EnergyCommunityOperatingFacility_ParentUnionDto, EnergyCommunityOperatingFacility_ParentUnionEdgeDto, EnergyCommunityProducerAssociationsArgsDto, EnergyCommunityProducerChildrenArgsDto, EnergyCommunityProducerConfiguredByArgsDto, EnergyCommunityProducerConnectionDto, EnergyCommunityProducerDto, EnergyCommunityProducerEdgeDto, EnergyCommunityProducerInputDto, EnergyCommunityProducerInputUpdateDto, EnergyCommunityProducerMutationsCreateArgsDto, EnergyCommunityProducerMutationsDto, EnergyCommunityProducerMutationsUpdateArgsDto, EnergyCommunityProducerParentArgsDto, EnergyCommunityProducerRelatesFromArgsDto, EnergyCommunityProducerRelatesToArgsDto, EnergyCommunityProducerTaggedByArgsDto, EnergyCommunityProducerUpdateDto, EnergyCommunityProducerUpdateMessageDto, EnvironmentEnvironmentalGoalAssociationsArgsDto, EnvironmentEnvironmentalGoalConfiguredByArgsDto, EnvironmentEnvironmentalGoalConnectionDto, EnvironmentEnvironmentalGoalDto, EnvironmentEnvironmentalGoalEdgeDto, EnvironmentEnvironmentalGoalInputDto, EnvironmentEnvironmentalGoalInputUpdateDto, EnvironmentEnvironmentalGoalMutationsCreateArgsDto, EnvironmentEnvironmentalGoalMutationsDto, EnvironmentEnvironmentalGoalMutationsUpdateArgsDto, EnvironmentEnvironmentalGoalParentArgsDto, EnvironmentEnvironmentalGoalRelatesFromArgsDto, EnvironmentEnvironmentalGoalRelatesToArgsDto, EnvironmentEnvironmentalGoalTaggedByArgsDto, EnvironmentEnvironmentalGoalUpdateDto, EnvironmentEnvironmentalGoalUpdateMessageDto, EnvironmentWasteMeterAssociationsArgsDto, EnvironmentWasteMeterChildrenArgsDto, EnvironmentWasteMeterConfiguredByArgsDto, EnvironmentWasteMeterConnectionDto, EnvironmentWasteMeterDto, EnvironmentWasteMeterEdgeDto, EnvironmentWasteMeterEventsArgsDto, EnvironmentWasteMeterInputDto, EnvironmentWasteMeterInputUpdateDto, EnvironmentWasteMeterMutationsCreateArgsDto, EnvironmentWasteMeterMutationsDto, EnvironmentWasteMeterMutationsUpdateArgsDto, EnvironmentWasteMeterOrdersArgsDto, EnvironmentWasteMeterParentArgsDto, EnvironmentWasteMeterRelatesFromArgsDto, EnvironmentWasteMeterRelatesToArgsDto, EnvironmentWasteMeterTaggedByArgsDto, EnvironmentWasteMeterUpdateDto, EnvironmentWasteMeterUpdateMessageDto, Exact, ExportModelResponseDto, ExternalLoginDto, FieldAggregationDto, FieldFilterDto, FieldGroupByAggregationInputDto, GeneratedPasswordDto, GetCkModelByIdQueryDto, GetCkModelByIdQueryVariablesDto, GetCkRecordAttributesQueryDto, GetCkRecordAttributesQueryVariablesDto, GetCkTypeAttributesQueryDto, GetCkTypeAttributesQueryVariablesDto, GetCkTypeAvailableQueryColumnsQueryDto, GetCkTypeAvailableQueryColumnsQueryVariablesDto, GetCkTypesQueryDto, GetCkTypesQueryVariablesDto, GetDerivedCkTypesQueryDto, GetDerivedCkTypesQueryVariablesDto, GlobalQueryOptionsDto, GrantTypes, HealthCheck, HealthCheckResult, IConfigurationService, IQueryVariablesDto, ImportModelResponseDto, Incremental, IndustryBasicAlarmAssociationsArgsDto, IndustryBasicAlarmConfiguredByArgsDto, IndustryBasicAlarmConnectionDto, IndustryBasicAlarmDto, IndustryBasicAlarmEdgeDto, IndustryBasicAlarmEventSourceArgsDto, IndustryBasicAlarmInputDto, IndustryBasicAlarmInputUpdateDto, IndustryBasicAlarmMutationsCreateArgsDto, IndustryBasicAlarmMutationsDto, IndustryBasicAlarmMutationsUpdateArgsDto, IndustryBasicAlarmOrderArgsDto, IndustryBasicAlarmRelatesFromArgsDto, IndustryBasicAlarmRelatesToArgsDto, IndustryBasicAlarmTaggedByArgsDto, IndustryBasicAlarmUpdateDto, IndustryBasicAlarmUpdateMessageDto, IndustryBasicEventAssociationsArgsDto, IndustryBasicEventConfiguredByArgsDto, IndustryBasicEventConnectionDto, IndustryBasicEventDto, IndustryBasicEventEdgeDto, IndustryBasicEventEventSourceArgsDto, IndustryBasicEventInputDto, IndustryBasicEventInputUpdateDto, IndustryBasicEventMutationsCreateArgsDto, IndustryBasicEventMutationsDto, IndustryBasicEventMutationsUpdateArgsDto, IndustryBasicEventOrderArgsDto, IndustryBasicEventRelatesFromArgsDto, IndustryBasicEventRelatesToArgsDto, IndustryBasicEventTaggedByArgsDto, IndustryBasicEventUpdateDto, IndustryBasicEventUpdateMessageDto, IndustryBasicEvent_EventUnionConnectionDto, IndustryBasicEvent_EventUnionDto, IndustryBasicEvent_EventUnionEdgeDto, IndustryBasicEvent_EventsUnionConnectionDto, IndustryBasicEvent_EventsUnionDto, IndustryBasicEvent_EventsUnionEdgeDto, IndustryBasicMachineAssociationsArgsDto, IndustryBasicMachineChildrenArgsDto, IndustryBasicMachineConfiguredByArgsDto, IndustryBasicMachineConnectionDto, IndustryBasicMachineDto, IndustryBasicMachineEdgeDto, IndustryBasicMachineEventsArgsDto, IndustryBasicMachineInputDto, IndustryBasicMachineInputUpdateDto, IndustryBasicMachineMutationsCreateArgsDto, IndustryBasicMachineMutationsDto, IndustryBasicMachineMutationsUpdateArgsDto, IndustryBasicMachineOrdersArgsDto, IndustryBasicMachineParentArgsDto, IndustryBasicMachineRelatesFromArgsDto, IndustryBasicMachineRelatesToArgsDto, IndustryBasicMachineRuntimeVariablesArgsDto, IndustryBasicMachineTaggedByArgsDto, IndustryBasicMachineUpdateDto, IndustryBasicMachineUpdateMessageDto, IndustryBasicMachine_MachineUnionConnectionDto, IndustryBasicMachine_MachineUnionDto, IndustryBasicMachine_MachineUnionEdgeDto, IndustryBasicRuntimeVariableAssociationsArgsDto, IndustryBasicRuntimeVariableConfiguredByArgsDto, IndustryBasicRuntimeVariableConnectionDto, IndustryBasicRuntimeVariableDto, IndustryBasicRuntimeVariableEdgeDto, IndustryBasicRuntimeVariableInputDto, IndustryBasicRuntimeVariableInputUpdateDto, IndustryBasicRuntimeVariableMachineArgsDto, IndustryBasicRuntimeVariableMutationsCreateArgsDto, IndustryBasicRuntimeVariableMutationsDto, IndustryBasicRuntimeVariableMutationsUpdateArgsDto, IndustryBasicRuntimeVariableRelatesFromArgsDto, IndustryBasicRuntimeVariableRelatesToArgsDto, IndustryBasicRuntimeVariableTaggedByArgsDto, IndustryBasicRuntimeVariableUpdateDto, IndustryBasicRuntimeVariableUpdateMessageDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionConnectionDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionEdgeDto, IndustryEnergyBatteryAssociationsArgsDto, IndustryEnergyBatteryChildrenArgsDto, IndustryEnergyBatteryConfiguredByArgsDto, IndustryEnergyBatteryConnectionDto, IndustryEnergyBatteryDto, IndustryEnergyBatteryEdgeDto, IndustryEnergyBatteryEventsArgsDto, IndustryEnergyBatteryInputDto, IndustryEnergyBatteryInputUpdateDto, IndustryEnergyBatteryMutationsCreateArgsDto, IndustryEnergyBatteryMutationsDto, IndustryEnergyBatteryMutationsUpdateArgsDto, IndustryEnergyBatteryOrdersArgsDto, IndustryEnergyBatteryParentArgsDto, IndustryEnergyBatteryRelatesFromArgsDto, IndustryEnergyBatteryRelatesToArgsDto, IndustryEnergyBatteryRuntimeVariablesArgsDto, IndustryEnergyBatteryTaggedByArgsDto, IndustryEnergyBatteryUpdateDto, IndustryEnergyBatteryUpdateMessageDto, IndustryEnergyEnergyMeterAssociationsArgsDto, IndustryEnergyEnergyMeterChildrenArgsDto, IndustryEnergyEnergyMeterConfiguredByArgsDto, IndustryEnergyEnergyMeterConnectionDto, IndustryEnergyEnergyMeterDto, IndustryEnergyEnergyMeterEdgeDto, IndustryEnergyEnergyMeterEventsArgsDto, IndustryEnergyEnergyMeterInputDto, IndustryEnergyEnergyMeterInputUpdateDto, IndustryEnergyEnergyMeterMutationsCreateArgsDto, IndustryEnergyEnergyMeterMutationsDto, IndustryEnergyEnergyMeterMutationsUpdateArgsDto, IndustryEnergyEnergyMeterOrdersArgsDto, IndustryEnergyEnergyMeterParentArgsDto, IndustryEnergyEnergyMeterRelatesFromArgsDto, IndustryEnergyEnergyMeterRelatesToArgsDto, IndustryEnergyEnergyMeterRuntimeVariablesArgsDto, IndustryEnergyEnergyMeterTaggedByArgsDto, IndustryEnergyEnergyMeterUpdateDto, IndustryEnergyEnergyMeterUpdateMessageDto, IndustryEnergyInverterAssociationsArgsDto, IndustryEnergyInverterChildrenArgsDto, IndustryEnergyInverterConfiguredByArgsDto, IndustryEnergyInverterConnectionDto, IndustryEnergyInverterDto, IndustryEnergyInverterEdgeDto, IndustryEnergyInverterEventsArgsDto, IndustryEnergyInverterInputDto, IndustryEnergyInverterInputUpdateDto, IndustryEnergyInverterMutationsCreateArgsDto, IndustryEnergyInverterMutationsDto, IndustryEnergyInverterMutationsUpdateArgsDto, IndustryEnergyInverterOrdersArgsDto, IndustryEnergyInverterParentArgsDto, IndustryEnergyInverterRelatesFromArgsDto, IndustryEnergyInverterRelatesToArgsDto, IndustryEnergyInverterRuntimeVariablesArgsDto, IndustryEnergyInverterTaggedByArgsDto, IndustryEnergyInverterUpdateDto, IndustryEnergyInverterUpdateMessageDto, IndustryEnergyPhaseInfoDto, IndustryEnergyPhaseInfoInputDto, IndustryEnergyPhotovoltaicAssociationsArgsDto, IndustryEnergyPhotovoltaicChildrenArgsDto, IndustryEnergyPhotovoltaicConfiguredByArgsDto, IndustryEnergyPhotovoltaicConnectionDto, IndustryEnergyPhotovoltaicDto, IndustryEnergyPhotovoltaicEdgeDto, IndustryEnergyPhotovoltaicEventsArgsDto, IndustryEnergyPhotovoltaicInputDto, IndustryEnergyPhotovoltaicInputUpdateDto, IndustryEnergyPhotovoltaicModuleAssociationsArgsDto, IndustryEnergyPhotovoltaicModuleChildrenArgsDto, IndustryEnergyPhotovoltaicModuleConfiguredByArgsDto, IndustryEnergyPhotovoltaicModuleConnectionDto, IndustryEnergyPhotovoltaicModuleDto, IndustryEnergyPhotovoltaicModuleEdgeDto, IndustryEnergyPhotovoltaicModuleEventsArgsDto, IndustryEnergyPhotovoltaicModuleInputDto, IndustryEnergyPhotovoltaicModuleInputUpdateDto, IndustryEnergyPhotovoltaicModuleMutationsCreateArgsDto, IndustryEnergyPhotovoltaicModuleMutationsDto, IndustryEnergyPhotovoltaicModuleMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicModuleOrdersArgsDto, IndustryEnergyPhotovoltaicModuleParentArgsDto, IndustryEnergyPhotovoltaicModuleRelatesFromArgsDto, IndustryEnergyPhotovoltaicModuleRelatesToArgsDto, IndustryEnergyPhotovoltaicModuleRuntimeVariablesArgsDto, IndustryEnergyPhotovoltaicModuleTaggedByArgsDto, IndustryEnergyPhotovoltaicModuleUpdateDto, IndustryEnergyPhotovoltaicModuleUpdateMessageDto, IndustryEnergyPhotovoltaicMutationsCreateArgsDto, IndustryEnergyPhotovoltaicMutationsDto, IndustryEnergyPhotovoltaicMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicOrdersArgsDto, IndustryEnergyPhotovoltaicParentArgsDto, IndustryEnergyPhotovoltaicRelatesFromArgsDto, IndustryEnergyPhotovoltaicRelatesToArgsDto, IndustryEnergyPhotovoltaicStringAssociationsArgsDto, IndustryEnergyPhotovoltaicStringChildrenArgsDto, IndustryEnergyPhotovoltaicStringConfiguredByArgsDto, IndustryEnergyPhotovoltaicStringConnectionDto, IndustryEnergyPhotovoltaicStringDto, IndustryEnergyPhotovoltaicStringEdgeDto, IndustryEnergyPhotovoltaicStringEventsArgsDto, IndustryEnergyPhotovoltaicStringInputDto, IndustryEnergyPhotovoltaicStringInputUpdateDto, IndustryEnergyPhotovoltaicStringMutationsCreateArgsDto, IndustryEnergyPhotovoltaicStringMutationsDto, IndustryEnergyPhotovoltaicStringMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicStringOrdersArgsDto, IndustryEnergyPhotovoltaicStringParentArgsDto, IndustryEnergyPhotovoltaicStringRelatesFromArgsDto, IndustryEnergyPhotovoltaicStringRelatesToArgsDto, IndustryEnergyPhotovoltaicStringTaggedByArgsDto, IndustryEnergyPhotovoltaicStringUpdateDto, IndustryEnergyPhotovoltaicStringUpdateMessageDto, IndustryEnergyPhotovoltaicTaggedByArgsDto, IndustryEnergyPhotovoltaicUpdateDto, IndustryEnergyPhotovoltaicUpdateMessageDto, IndustryFluidHeatMeterAssociationsArgsDto, IndustryFluidHeatMeterChildrenArgsDto, IndustryFluidHeatMeterConfiguredByArgsDto, IndustryFluidHeatMeterConnectionDto, IndustryFluidHeatMeterDto, IndustryFluidHeatMeterEdgeDto, IndustryFluidHeatMeterEventsArgsDto, IndustryFluidHeatMeterInputDto, IndustryFluidHeatMeterInputUpdateDto, IndustryFluidHeatMeterMutationsCreateArgsDto, IndustryFluidHeatMeterMutationsDto, IndustryFluidHeatMeterMutationsUpdateArgsDto, IndustryFluidHeatMeterOrdersArgsDto, IndustryFluidHeatMeterParentArgsDto, IndustryFluidHeatMeterRelatesFromArgsDto, IndustryFluidHeatMeterRelatesToArgsDto, IndustryFluidHeatMeterRuntimeVariablesArgsDto, IndustryFluidHeatMeterTaggedByArgsDto, IndustryFluidHeatMeterUpdateDto, IndustryFluidHeatMeterUpdateMessageDto, IndustryFluidWaterMeterAssociationsArgsDto, IndustryFluidWaterMeterChildrenArgsDto, IndustryFluidWaterMeterConfiguredByArgsDto, IndustryFluidWaterMeterConnectionDto, IndustryFluidWaterMeterDto, IndustryFluidWaterMeterEdgeDto, IndustryFluidWaterMeterEventsArgsDto, IndustryFluidWaterMeterInputDto, IndustryFluidWaterMeterInputUpdateDto, IndustryFluidWaterMeterMutationsCreateArgsDto, IndustryFluidWaterMeterMutationsDto, IndustryFluidWaterMeterMutationsUpdateArgsDto, IndustryFluidWaterMeterOrdersArgsDto, IndustryFluidWaterMeterParentArgsDto, IndustryFluidWaterMeterRelatesFromArgsDto, IndustryFluidWaterMeterRelatesToArgsDto, IndustryFluidWaterMeterRuntimeVariablesArgsDto, IndustryFluidWaterMeterTaggedByArgsDto, IndustryFluidWaterMeterUpdateDto, IndustryFluidWaterMeterUpdateMessageDto, IndustryMaintenanceAccountAssociationsArgsDto, IndustryMaintenanceAccountChildrenArgsDto, IndustryMaintenanceAccountConfiguredByArgsDto, IndustryMaintenanceAccountConnectionDto, IndustryMaintenanceAccountDto, IndustryMaintenanceAccountEdgeDto, IndustryMaintenanceAccountInputDto, IndustryMaintenanceAccountInputUpdateDto, IndustryMaintenanceAccountMutationsCreateArgsDto, IndustryMaintenanceAccountMutationsDto, IndustryMaintenanceAccountMutationsUpdateArgsDto, IndustryMaintenanceAccountRelatesFromArgsDto, IndustryMaintenanceAccountRelatesToArgsDto, IndustryMaintenanceAccountTaggedByArgsDto, IndustryMaintenanceAccountUpdateDto, IndustryMaintenanceAccountUpdateMessageDto, IndustryMaintenanceAccount_ParentUnionConnectionDto, IndustryMaintenanceAccount_ParentUnionDto, IndustryMaintenanceAccount_ParentUnionEdgeDto, IndustryMaintenanceCostCenterAssociationsArgsDto, IndustryMaintenanceCostCenterChildrenArgsDto, IndustryMaintenanceCostCenterConfiguredByArgsDto, IndustryMaintenanceCostCenterConnectionDto, IndustryMaintenanceCostCenterDto, IndustryMaintenanceCostCenterEdgeDto, IndustryMaintenanceCostCenterEventsArgsDto, IndustryMaintenanceCostCenterInputDto, IndustryMaintenanceCostCenterInputUpdateDto, IndustryMaintenanceCostCenterJournalEntriesArgsDto, IndustryMaintenanceCostCenterMutationsCreateArgsDto, IndustryMaintenanceCostCenterMutationsDto, IndustryMaintenanceCostCenterMutationsUpdateArgsDto, IndustryMaintenanceCostCenterOrdersArgsDto, IndustryMaintenanceCostCenterParentArgsDto, IndustryMaintenanceCostCenterRelatesFromArgsDto, IndustryMaintenanceCostCenterRelatesToArgsDto, IndustryMaintenanceCostCenterTaggedByArgsDto, IndustryMaintenanceCostCenterUpdateDto, IndustryMaintenanceCostCenterUpdateMessageDto, IndustryMaintenanceCostCenter_CostCenterUnionConnectionDto, IndustryMaintenanceCostCenter_CostCenterUnionDto, IndustryMaintenanceCostCenter_CostCenterUnionEdgeDto, IndustryMaintenanceEmployeeAssociationsArgsDto, IndustryMaintenanceEmployeeChildrenArgsDto, IndustryMaintenanceEmployeeConfiguredByArgsDto, IndustryMaintenanceEmployeeConnectionDto, IndustryMaintenanceEmployeeDto, IndustryMaintenanceEmployeeEdgeDto, IndustryMaintenanceEmployeeEventsArgsDto, IndustryMaintenanceEmployeeInputDto, IndustryMaintenanceEmployeeInputUpdateDto, IndustryMaintenanceEmployeeMutationsCreateArgsDto, IndustryMaintenanceEmployeeMutationsDto, IndustryMaintenanceEmployeeMutationsUpdateArgsDto, IndustryMaintenanceEmployeeOrderFeedbacksArgsDto, IndustryMaintenanceEmployeeOrdersArgsDto, IndustryMaintenanceEmployeeParentArgsDto, IndustryMaintenanceEmployeeRelatesFromArgsDto, IndustryMaintenanceEmployeeRelatesToArgsDto, IndustryMaintenanceEmployeeTaggedByArgsDto, IndustryMaintenanceEmployeeUpdateDto, IndustryMaintenanceEmployeeUpdateMessageDto, IndustryMaintenanceEmployee_EmployeeUnionConnectionDto, IndustryMaintenanceEmployee_EmployeeUnionDto, IndustryMaintenanceEmployee_EmployeeUnionEdgeDto, IndustryMaintenanceEnergyBalanceAssociationsArgsDto, IndustryMaintenanceEnergyBalanceConfiguredByArgsDto, IndustryMaintenanceEnergyBalanceConnectionDto, IndustryMaintenanceEnergyBalanceDto, IndustryMaintenanceEnergyBalanceEdgeDto, IndustryMaintenanceEnergyBalanceInputDto, IndustryMaintenanceEnergyBalanceInputUpdateDto, IndustryMaintenanceEnergyBalanceMachineArgsDto, IndustryMaintenanceEnergyBalanceMutationsCreateArgsDto, IndustryMaintenanceEnergyBalanceMutationsDto, IndustryMaintenanceEnergyBalanceMutationsUpdateArgsDto, IndustryMaintenanceEnergyBalanceRelatesFromArgsDto, IndustryMaintenanceEnergyBalanceRelatesToArgsDto, IndustryMaintenanceEnergyBalanceTaggedByArgsDto, IndustryMaintenanceEnergyBalanceUpdateDto, IndustryMaintenanceEnergyBalanceUpdateMessageDto, IndustryMaintenanceEnergyBalance_OrdersUnionConnectionDto, IndustryMaintenanceEnergyBalance_OrdersUnionDto, IndustryMaintenanceEnergyBalance_OrdersUnionEdgeDto, IndustryMaintenanceJournalEntryAssociationsArgsDto, IndustryMaintenanceJournalEntryConfiguredByArgsDto, IndustryMaintenanceJournalEntryConnectionDto, IndustryMaintenanceJournalEntryCostCenterArgsDto, IndustryMaintenanceJournalEntryDto, IndustryMaintenanceJournalEntryEdgeDto, IndustryMaintenanceJournalEntryInputDto, IndustryMaintenanceJournalEntryInputUpdateDto, IndustryMaintenanceJournalEntryMutationsCreateArgsDto, IndustryMaintenanceJournalEntryMutationsDto, IndustryMaintenanceJournalEntryMutationsUpdateArgsDto, IndustryMaintenanceJournalEntryParentArgsDto, IndustryMaintenanceJournalEntryRelatesFromArgsDto, IndustryMaintenanceJournalEntryRelatesToArgsDto, IndustryMaintenanceJournalEntryTaggedByArgsDto, IndustryMaintenanceJournalEntryUpdateDto, IndustryMaintenanceJournalEntryUpdateMessageDto, IndustryMaintenanceJournalEntry_ChildrenUnionConnectionDto, IndustryMaintenanceJournalEntry_ChildrenUnionDto, IndustryMaintenanceJournalEntry_ChildrenUnionEdgeDto, IndustryMaintenanceJournalEntry_JournalEntriesUnionConnectionDto, IndustryMaintenanceJournalEntry_JournalEntriesUnionDto, IndustryMaintenanceJournalEntry_JournalEntriesUnionEdgeDto, IndustryMaintenanceOrderAssociationsArgsDto, IndustryMaintenanceOrderChildrenArgsDto, IndustryMaintenanceOrderConfiguredByArgsDto, IndustryMaintenanceOrderConnectionDto, IndustryMaintenanceOrderCostsArgsDto, IndustryMaintenanceOrderCostsAssociationsArgsDto, IndustryMaintenanceOrderCostsConfiguredByArgsDto, IndustryMaintenanceOrderCostsConnectionDto, IndustryMaintenanceOrderCostsDto, IndustryMaintenanceOrderCostsEdgeDto, IndustryMaintenanceOrderCostsInputDto, IndustryMaintenanceOrderCostsInputUpdateDto, IndustryMaintenanceOrderCostsMutationsCreateArgsDto, IndustryMaintenanceOrderCostsMutationsDto, IndustryMaintenanceOrderCostsMutationsUpdateArgsDto, IndustryMaintenanceOrderCostsOrderArgsDto, IndustryMaintenanceOrderCostsRelatesFromArgsDto, IndustryMaintenanceOrderCostsRelatesToArgsDto, IndustryMaintenanceOrderCostsTaggedByArgsDto, IndustryMaintenanceOrderCostsUpdateDto, IndustryMaintenanceOrderCostsUpdateMessageDto, IndustryMaintenanceOrderCosts_CostsUnionConnectionDto, IndustryMaintenanceOrderCosts_CostsUnionDto, IndustryMaintenanceOrderCosts_CostsUnionEdgeDto, IndustryMaintenanceOrderDto, IndustryMaintenanceOrderEdgeDto, IndustryMaintenanceOrderEventArgsDto, IndustryMaintenanceOrderFeedbackAssociationsArgsDto, IndustryMaintenanceOrderFeedbackConfiguredByArgsDto, IndustryMaintenanceOrderFeedbackConnectionDto, IndustryMaintenanceOrderFeedbackDto, IndustryMaintenanceOrderFeedbackEdgeDto, IndustryMaintenanceOrderFeedbackEmployeeArgsDto, IndustryMaintenanceOrderFeedbackInputDto, IndustryMaintenanceOrderFeedbackInputUpdateDto, IndustryMaintenanceOrderFeedbackMutationsCreateArgsDto, IndustryMaintenanceOrderFeedbackMutationsDto, IndustryMaintenanceOrderFeedbackMutationsUpdateArgsDto, IndustryMaintenanceOrderFeedbackParentArgsDto, IndustryMaintenanceOrderFeedbackRelatesFromArgsDto, IndustryMaintenanceOrderFeedbackRelatesToArgsDto, IndustryMaintenanceOrderFeedbackTaggedByArgsDto, IndustryMaintenanceOrderFeedbackUpdateDto, IndustryMaintenanceOrderFeedbackUpdateMessageDto, IndustryMaintenanceOrderFeedback_ChildrenUnionConnectionDto, IndustryMaintenanceOrderFeedback_ChildrenUnionDto, IndustryMaintenanceOrderFeedback_ChildrenUnionEdgeDto, IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionConnectionDto, IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionDto, IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionEdgeDto, IndustryMaintenanceOrderInputDto, IndustryMaintenanceOrderInputUpdateDto, IndustryMaintenanceOrderMachineArgsDto, IndustryMaintenanceOrderMutationsCreateArgsDto, IndustryMaintenanceOrderMutationsDto, IndustryMaintenanceOrderMutationsUpdateArgsDto, IndustryMaintenanceOrderRelatesFromArgsDto, IndustryMaintenanceOrderRelatesToArgsDto, IndustryMaintenanceOrderTaggedByArgsDto, IndustryMaintenanceOrderUpdateDto, IndustryMaintenanceOrderUpdateMessageDto, IndustryMaintenanceOrder_OrderUnionConnectionDto, IndustryMaintenanceOrder_OrderUnionDto, IndustryMaintenanceOrder_OrderUnionEdgeDto, IndustryMaintenanceOrder_OrdersUnionConnectionDto, IndustryMaintenanceOrder_OrdersUnionDto, IndustryMaintenanceOrder_OrdersUnionEdgeDto, IndustryMaintenanceOrder_ParentUnionConnectionDto, IndustryMaintenanceOrder_ParentUnionDto, IndustryMaintenanceOrder_ParentUnionEdgeDto, IndustryMaintenanceWorkplaceAssociationsArgsDto, IndustryMaintenanceWorkplaceChildrenArgsDto, IndustryMaintenanceWorkplaceConfiguredByArgsDto, IndustryMaintenanceWorkplaceConnectionDto, IndustryMaintenanceWorkplaceDto, IndustryMaintenanceWorkplaceEdgeDto, IndustryMaintenanceWorkplaceEventsArgsDto, IndustryMaintenanceWorkplaceInputDto, IndustryMaintenanceWorkplaceInputUpdateDto, IndustryMaintenanceWorkplaceMutationsCreateArgsDto, IndustryMaintenanceWorkplaceMutationsDto, IndustryMaintenanceWorkplaceMutationsUpdateArgsDto, IndustryMaintenanceWorkplaceOrdersArgsDto, IndustryMaintenanceWorkplaceParentArgsDto, IndustryMaintenanceWorkplaceRelatesFromArgsDto, IndustryMaintenanceWorkplaceRelatesToArgsDto, IndustryMaintenanceWorkplaceTaggedByArgsDto, IndustryMaintenanceWorkplaceUpdateDto, IndustryMaintenanceWorkplaceUpdateMessageDto, InputMaybe, JobDto, JobResponseDto, LargeBinaryInfoDto, MakeEmpty, MakeMaybe, MakeOptional, Maybe, MergeUsersRequestDto, NearGeospatialFilterDto, OctoMutationDto, OctoQueryDto, OctoSdkDemoCustomerAssociationsArgsDto, OctoSdkDemoCustomerConfiguredByArgsDto, OctoSdkDemoCustomerConnectionDto, OctoSdkDemoCustomerDto, OctoSdkDemoCustomerEdgeDto, OctoSdkDemoCustomerInputDto, OctoSdkDemoCustomerInputUpdateDto, OctoSdkDemoCustomerMutationsCreateArgsDto, OctoSdkDemoCustomerMutationsDto, OctoSdkDemoCustomerMutationsUpdateArgsDto, OctoSdkDemoCustomerNoteDto, OctoSdkDemoCustomerNoteInputDto, OctoSdkDemoCustomerOwnsArgsDto, OctoSdkDemoCustomerRelatesFromArgsDto, OctoSdkDemoCustomerRelatesToArgsDto, OctoSdkDemoCustomerTaggedByArgsDto, OctoSdkDemoCustomerUpdateDto, OctoSdkDemoCustomerUpdateMessageDto, OctoSdkDemoCustomer_OwnedByUnionConnectionDto, OctoSdkDemoCustomer_OwnedByUnionDto, OctoSdkDemoCustomer_OwnedByUnionEdgeDto, OctoSdkDemoMeteringPointAssociationsArgsDto, OctoSdkDemoMeteringPointChildrenArgsDto, OctoSdkDemoMeteringPointConfiguredByArgsDto, OctoSdkDemoMeteringPointConnectionDto, OctoSdkDemoMeteringPointDto, OctoSdkDemoMeteringPointEdgeDto, OctoSdkDemoMeteringPointEventsArgsDto, OctoSdkDemoMeteringPointInputDto, OctoSdkDemoMeteringPointInputUpdateDto, OctoSdkDemoMeteringPointMutationsCreateArgsDto, OctoSdkDemoMeteringPointMutationsDto, OctoSdkDemoMeteringPointMutationsUpdateArgsDto, OctoSdkDemoMeteringPointOrdersArgsDto, OctoSdkDemoMeteringPointParentArgsDto, OctoSdkDemoMeteringPointRelatesFromArgsDto, OctoSdkDemoMeteringPointRelatesToArgsDto, OctoSdkDemoMeteringPointTaggedByArgsDto, OctoSdkDemoMeteringPointUpdateDto, OctoSdkDemoMeteringPointUpdateMessageDto, OctoSdkDemoOperatingFacilityAssociationsArgsDto, OctoSdkDemoOperatingFacilityChildrenArgsDto, OctoSdkDemoOperatingFacilityConfiguredByArgsDto, OctoSdkDemoOperatingFacilityConnectionDto, OctoSdkDemoOperatingFacilityDto, OctoSdkDemoOperatingFacilityEdgeDto, OctoSdkDemoOperatingFacilityInputDto, OctoSdkDemoOperatingFacilityInputUpdateDto, OctoSdkDemoOperatingFacilityMutationsCreateArgsDto, OctoSdkDemoOperatingFacilityMutationsDto, OctoSdkDemoOperatingFacilityMutationsUpdateArgsDto, OctoSdkDemoOperatingFacilityOrdersArgsDto, OctoSdkDemoOperatingFacilityOwnedByArgsDto, OctoSdkDemoOperatingFacilityParentArgsDto, OctoSdkDemoOperatingFacilityRelatesFromArgsDto, OctoSdkDemoOperatingFacilityRelatesToArgsDto, OctoSdkDemoOperatingFacilityTaggedByArgsDto, OctoSdkDemoOperatingFacilityUpdateDto, OctoSdkDemoOperatingFacilityUpdateMessageDto, OctoSdkDemoOperatingFacility_OwnsUnionConnectionDto, OctoSdkDemoOperatingFacility_OwnsUnionDto, OctoSdkDemoOperatingFacility_OwnsUnionEdgeDto, OctoSubscriptionsBasicAssetEventsArgsDto, OctoSubscriptionsBasicCityEventsArgsDto, OctoSubscriptionsBasicCountryEventsArgsDto, OctoSubscriptionsBasicDistrictEventsArgsDto, OctoSubscriptionsBasicDocumentEventsArgsDto, OctoSubscriptionsBasicEmployeeEventsArgsDto, OctoSubscriptionsBasicNamedEntityEventsArgsDto, OctoSubscriptionsBasicStateEventsArgsDto, OctoSubscriptionsBasicTreeEventsArgsDto, OctoSubscriptionsBasicTreeNodeEventsArgsDto, OctoSubscriptionsDto, OctoSubscriptionsEnergyCommunityBillingDocumentEventsArgsDto, OctoSubscriptionsEnergyCommunityBillingDocumentLineItemEventsArgsDto, OctoSubscriptionsEnergyCommunityConsumerEventsArgsDto, OctoSubscriptionsEnergyCommunityCustomerEventsArgsDto, OctoSubscriptionsEnergyCommunityEdaMessageEventsArgsDto, OctoSubscriptionsEnergyCommunityEdaMeteringPointEventsArgsDto, OctoSubscriptionsEnergyCommunityEdaProcessEventsArgsDto, OctoSubscriptionsEnergyCommunityEnergyPriceEventsArgsDto, OctoSubscriptionsEnergyCommunityEnergyQuantityEventsArgsDto, OctoSubscriptionsEnergyCommunityMeteringPointEventsArgsDto, OctoSubscriptionsEnergyCommunityOperatingFacilityEventsArgsDto, OctoSubscriptionsEnergyCommunityProducerEventsArgsDto, OctoSubscriptionsEnvironmentEnvironmentalGoalEventsArgsDto, OctoSubscriptionsEnvironmentWasteMeterEventsArgsDto, OctoSubscriptionsIndustryBasicAlarmEventsArgsDto, OctoSubscriptionsIndustryBasicEventEventsArgsDto, OctoSubscriptionsIndustryBasicMachineEventsArgsDto, OctoSubscriptionsIndustryBasicRuntimeVariableEventsArgsDto, OctoSubscriptionsIndustryEnergyBatteryEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyMeterEventsArgsDto, OctoSubscriptionsIndustryEnergyInverterEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicModuleEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicStringEventsArgsDto, OctoSubscriptionsIndustryFluidHeatMeterEventsArgsDto, OctoSubscriptionsIndustryFluidWaterMeterEventsArgsDto, OctoSubscriptionsIndustryMaintenanceAccountEventsArgsDto, OctoSubscriptionsIndustryMaintenanceCostCenterEventsArgsDto, OctoSubscriptionsIndustryMaintenanceEmployeeEventsArgsDto, OctoSubscriptionsIndustryMaintenanceEnergyBalanceEventsArgsDto, OctoSubscriptionsIndustryMaintenanceJournalEntryEventsArgsDto, OctoSubscriptionsIndustryMaintenanceOrderCostsEventsArgsDto, OctoSubscriptionsIndustryMaintenanceOrderEventsArgsDto, OctoSubscriptionsIndustryMaintenanceOrderFeedbackEventsArgsDto, OctoSubscriptionsIndustryMaintenanceWorkplaceEventsArgsDto, OctoSubscriptionsOctoSdkDemoCustomerEventsArgsDto, OctoSubscriptionsOctoSdkDemoMeteringPointEventsArgsDto, OctoSubscriptionsOctoSdkDemoOperatingFacilityEventsArgsDto, OctoSubscriptionsSystemAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemAutoIncrementEventsArgsDto, OctoSubscriptionsSystemBotAttributeAggregateConfigurationEventsArgsDto, OctoSubscriptionsSystemBotFixupEventsArgsDto, OctoSubscriptionsSystemCommunicationAdapterEventsArgsDto, OctoSubscriptionsSystemCommunicationDataPipelineEventsArgsDto, OctoSubscriptionsSystemCommunicationDataPipelineTriggerEventsArgsDto, OctoSubscriptionsSystemCommunicationDeployableEntityEventsArgsDto, OctoSubscriptionsSystemCommunicationEMailSenderConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEdgeAdapterEventsArgsDto, OctoSubscriptionsSystemCommunicationEdgePipelineEventsArgsDto, OctoSubscriptionsSystemCommunicationEnergyCommunityConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationFinApiConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationMeshAdapterEventsArgsDto, OctoSubscriptionsSystemCommunicationMeshPipelineEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineExecutionEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineStatisticsEventsArgsDto, OctoSubscriptionsSystemCommunicationPoolEventsArgsDto, OctoSubscriptionsSystemCommunicationSapConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationTagEventsArgsDto, OctoSubscriptionsSystemConfigurationEventsArgsDto, OctoSubscriptionsSystemEntityEventsArgsDto, OctoSubscriptionsSystemGroupingAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemIdentityApiResourceEventsArgsDto, OctoSubscriptionsSystemIdentityApiScopeEventsArgsDto, OctoSubscriptionsSystemIdentityAzureEntraIdIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityClientEventsArgsDto, OctoSubscriptionsSystemIdentityFacebookIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityGoogleIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityIdentityResourceEventsArgsDto, OctoSubscriptionsSystemIdentityMailNotificationConfigurationEventsArgsDto, OctoSubscriptionsSystemIdentityMicrosoftAdIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityMicrosoftIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityOpenLdapIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityPermissionEventsArgsDto, OctoSubscriptionsSystemIdentityPermissionRoleEventsArgsDto, OctoSubscriptionsSystemIdentityPersistedGrantEventsArgsDto, OctoSubscriptionsSystemIdentityResourceEventsArgsDto, OctoSubscriptionsSystemIdentityRoleEventsArgsDto, OctoSubscriptionsSystemIdentityUserEventsArgsDto, OctoSubscriptionsSystemMigrationHistoryEventsArgsDto, OctoSubscriptionsSystemNotificationCssTemplateConfigurationEventsArgsDto, OctoSubscriptionsSystemNotificationEventEventsArgsDto, OctoSubscriptionsSystemNotificationNotificationTemplateEventsArgsDto, OctoSubscriptionsSystemNotificationStatefulEventEventsArgsDto, OctoSubscriptionsSystemPersistentQueryEventsArgsDto, OctoSubscriptionsSystemQueryEventsArgsDto, OctoSubscriptionsSystemReportingConnectionInfoEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemContainerEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemEntityEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemItemEventsArgsDto, OctoSubscriptionsSystemReportingFolderEventsArgsDto, OctoSubscriptionsSystemReportingFolderRootEventsArgsDto, OctoSubscriptionsSystemSimpleRtQueryEventsArgsDto, OctoSubscriptionsSystemTenantConfigurationEventsArgsDto, OctoSubscriptionsSystemTenantEventsArgsDto, OctoSubscriptionsSystemTenantModeConfigurationEventsArgsDto, OctoSubscriptionsSystemUiDashboardEventsArgsDto, OctoSubscriptionsSystemUiDashboardWidgetEventsArgsDto, OctoSubscriptionsSystemUiProcessDiagramEventsArgsDto, OctoSubscriptionsSystemUiSymbolDefinitionEventsArgsDto, OctoSubscriptionsSystemUiSymbolLibraryEventsArgsDto, OctoSubscriptionsSystemUiuiElementEventsArgsDto, PageInfoDto, PipelineExecutionDataDto, PointInputDto, PositionInputDto, ProgressDialogRef, ProgressWindowOptions, QueryAggregationResultConnectionDto, QueryAggregationResultDto, QueryAggregationResultEdgeDto, RegisterUserDto, ResultAggregationInputDto, RoleDto, RtAggregationQueryRowCellsArgsDto, RtAggregationQueryRowDto, RtAssociationAttributesArgsDto, RtAssociationDto, RtAssociationDtoConnectionDto, RtAssociationDtoEdgeDto, RtAssociationInputDto, RtEntityAssociationInputDto, RtEntityAttributeDto, RtEntityAttributeDtoConnectionDto, RtEntityAttributeDtoEdgeDto, RtEntityAttributeInputDto, RtEntityAttributesArgsDto, RtEntityDto, RtEntityGenericAssociationDefinitionsArgsDto, RtEntityGenericAssociationDto, RtEntityGenericAssociationTargetsArgsDto, RtEntityGenericDtoConnectionDto, RtEntityGenericDtoEdgeDto, RtEntityIdDto, RtEntityInputDto, RtEntityMutationsCreateArgsDto, RtEntityMutationsDeleteArgsDto, RtEntityMutationsDto, RtEntityMutationsUpdateArgsDto, RtEntityUpdateDto, RtGroupingAggregationQueryRowCellsArgsDto, RtGroupingAggregationQueryRowDto, RtQueryAggregationsArgsDto, RtQueryCellDto, RtQueryCellDtoConnectionDto, RtQueryCellDtoEdgeDto, RtQueryCellInputDto, RtQueryColumnDto, RtQueryColumnInputDto, RtQueryDto, RtQueryDtoConnectionDto, RtQueryDtoEdgeDto, RtQueryMutationsCreateArgsDto, RtQueryMutationsDeleteArgsDto, RtQueryMutationsDto, RtQueryMutationsUpdateArgsDto, RtQueryRowCellsArgsDto, RtQueryRowDto, RtQueryRowDtoConnectionDto, RtQueryRowDtoEdgeDto, RtQueryRowInputDto, RtQueryRowUpdateDto, RtQueryRowsArgsDto, RtSimpleQueryRowCellsArgsDto, RtSimpleQueryRowDto, RtTransientAggregationArgsDto, RtTransientDto, RtTransientGroupingAggregationArgsDto, RtTransientQueryAggregationsArgsDto, RtTransientQueryDto, RtTransientQueryDtoConnectionDto, RtTransientQueryDtoEdgeDto, RtTransientQueryRowsArgsDto, RtTransientSimpleArgsDto, RuntimeDto, RuntimeModelQueryBasicAssetArgsDto, RuntimeModelQueryBasicCityArgsDto, RuntimeModelQueryBasicCountryArgsDto, RuntimeModelQueryBasicDistrictArgsDto, RuntimeModelQueryBasicDocumentArgsDto, RuntimeModelQueryBasicEmployeeArgsDto, RuntimeModelQueryBasicNamedEntityArgsDto, RuntimeModelQueryBasicStateArgsDto, RuntimeModelQueryBasicTreeArgsDto, RuntimeModelQueryBasicTreeNodeArgsDto, RuntimeModelQueryDto, RuntimeModelQueryEnergyCommunityBillingDocumentArgsDto, RuntimeModelQueryEnergyCommunityBillingDocumentLineItemArgsDto, RuntimeModelQueryEnergyCommunityConsumerArgsDto, RuntimeModelQueryEnergyCommunityCustomerArgsDto, RuntimeModelQueryEnergyCommunityEdaMessageArgsDto, RuntimeModelQueryEnergyCommunityEdaMeteringPointArgsDto, RuntimeModelQueryEnergyCommunityEdaProcessArgsDto, RuntimeModelQueryEnergyCommunityEnergyPriceArgsDto, RuntimeModelQueryEnergyCommunityEnergyQuantityArgsDto, RuntimeModelQueryEnergyCommunityMeteringPointArgsDto, RuntimeModelQueryEnergyCommunityOperatingFacilityArgsDto, RuntimeModelQueryEnergyCommunityProducerArgsDto, RuntimeModelQueryEnvironmentEnvironmentalGoalArgsDto, RuntimeModelQueryEnvironmentWasteMeterArgsDto, RuntimeModelQueryIndustryBasicAlarmArgsDto, RuntimeModelQueryIndustryBasicEventArgsDto, RuntimeModelQueryIndustryBasicMachineArgsDto, RuntimeModelQueryIndustryBasicRuntimeVariableArgsDto, RuntimeModelQueryIndustryEnergyBatteryArgsDto, RuntimeModelQueryIndustryEnergyEnergyMeterArgsDto, RuntimeModelQueryIndustryEnergyInverterArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicModuleArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicStringArgsDto, RuntimeModelQueryIndustryFluidHeatMeterArgsDto, RuntimeModelQueryIndustryFluidWaterMeterArgsDto, RuntimeModelQueryIndustryMaintenanceAccountArgsDto, RuntimeModelQueryIndustryMaintenanceCostCenterArgsDto, RuntimeModelQueryIndustryMaintenanceEmployeeArgsDto, RuntimeModelQueryIndustryMaintenanceEnergyBalanceArgsDto, RuntimeModelQueryIndustryMaintenanceJournalEntryArgsDto, RuntimeModelQueryIndustryMaintenanceOrderArgsDto, RuntimeModelQueryIndustryMaintenanceOrderCostsArgsDto, RuntimeModelQueryIndustryMaintenanceOrderFeedbackArgsDto, RuntimeModelQueryIndustryMaintenanceWorkplaceArgsDto, RuntimeModelQueryOctoSdkDemoCustomerArgsDto, RuntimeModelQueryOctoSdkDemoMeteringPointArgsDto, RuntimeModelQueryOctoSdkDemoOperatingFacilityArgsDto, RuntimeModelQueryRuntimeEntitiesArgsDto, RuntimeModelQueryRuntimeQueryArgsDto, RuntimeModelQuerySystemAggregationRtQueryArgsDto, RuntimeModelQuerySystemAutoIncrementArgsDto, RuntimeModelQuerySystemBotAttributeAggregateConfigurationArgsDto, RuntimeModelQuerySystemBotFixupArgsDto, RuntimeModelQuerySystemCommunicationAdapterArgsDto, RuntimeModelQuerySystemCommunicationDataPipelineArgsDto, RuntimeModelQuerySystemCommunicationDataPipelineTriggerArgsDto, RuntimeModelQuerySystemCommunicationDeployableEntityArgsDto, RuntimeModelQuerySystemCommunicationEMailSenderConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEdgeAdapterArgsDto, RuntimeModelQuerySystemCommunicationEdgePipelineArgsDto, RuntimeModelQuerySystemCommunicationEnergyCommunityConfigurationArgsDto, RuntimeModelQuerySystemCommunicationFinApiConfigurationArgsDto, RuntimeModelQuerySystemCommunicationMeshAdapterArgsDto, RuntimeModelQuerySystemCommunicationMeshPipelineArgsDto, RuntimeModelQuerySystemCommunicationPipelineArgsDto, RuntimeModelQuerySystemCommunicationPipelineExecutionArgsDto, RuntimeModelQuerySystemCommunicationPipelineStatisticsArgsDto, RuntimeModelQuerySystemCommunicationPoolArgsDto, RuntimeModelQuerySystemCommunicationSapConfigurationArgsDto, RuntimeModelQuerySystemCommunicationTagArgsDto, RuntimeModelQuerySystemConfigurationArgsDto, RuntimeModelQuerySystemEntityArgsDto, RuntimeModelQuerySystemGroupingAggregationRtQueryArgsDto, RuntimeModelQuerySystemIdentityApiResourceArgsDto, RuntimeModelQuerySystemIdentityApiScopeArgsDto, RuntimeModelQuerySystemIdentityAzureEntraIdIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityClientArgsDto, RuntimeModelQuerySystemIdentityFacebookIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityGoogleIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityIdentityResourceArgsDto, RuntimeModelQuerySystemIdentityMailNotificationConfigurationArgsDto, RuntimeModelQuerySystemIdentityMicrosoftAdIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityMicrosoftIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityOpenLdapIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityPermissionArgsDto, RuntimeModelQuerySystemIdentityPermissionRoleArgsDto, RuntimeModelQuerySystemIdentityPersistedGrantArgsDto, RuntimeModelQuerySystemIdentityResourceArgsDto, RuntimeModelQuerySystemIdentityRoleArgsDto, RuntimeModelQuerySystemIdentityUserArgsDto, RuntimeModelQuerySystemMigrationHistoryArgsDto, RuntimeModelQuerySystemNotificationCssTemplateConfigurationArgsDto, RuntimeModelQuerySystemNotificationEventArgsDto, RuntimeModelQuerySystemNotificationNotificationTemplateArgsDto, RuntimeModelQuerySystemNotificationStatefulEventArgsDto, RuntimeModelQuerySystemPersistentQueryArgsDto, RuntimeModelQuerySystemQueryArgsDto, RuntimeModelQuerySystemReportingConnectionInfoArgsDto, RuntimeModelQuerySystemReportingFileSystemContainerArgsDto, RuntimeModelQuerySystemReportingFileSystemEntityArgsDto, RuntimeModelQuerySystemReportingFileSystemItemArgsDto, RuntimeModelQuerySystemReportingFolderArgsDto, RuntimeModelQuerySystemReportingFolderRootArgsDto, RuntimeModelQuerySystemSimpleRtQueryArgsDto, RuntimeModelQuerySystemTenantArgsDto, RuntimeModelQuerySystemTenantConfigurationArgsDto, RuntimeModelQuerySystemTenantModeConfigurationArgsDto, RuntimeModelQuerySystemUiDashboardArgsDto, RuntimeModelQuerySystemUiDashboardWidgetArgsDto, RuntimeModelQuerySystemUiProcessDiagramArgsDto, RuntimeModelQuerySystemUiSymbolDefinitionArgsDto, RuntimeModelQuerySystemUiSymbolLibraryArgsDto, RuntimeModelQuerySystemUiuiElementArgsDto, RuntimeRuntimeQueryArgsDto, Scalars, SearchFilterDto, SortDto, StatisticsDto, StreamDataArgumentsDto, StreamDataModelQueryDto, StreamDataModelQueryEnergyCommunityEnergyQuantityArgsDto, StreamDataModelQueryIndustryBasicAlarmArgsDto, StreamDataModelQueryIndustryBasicEventArgsDto, StreamDataModelQueryIndustryBasicMachineArgsDto, StreamDataModelQueryIndustryBasicRuntimeVariableArgsDto, StreamDataModelQueryIndustryEnergyBatteryArgsDto, StreamDataModelQueryIndustryEnergyEnergyMeterArgsDto, StreamDataModelQueryIndustryEnergyInverterArgsDto, StreamDataModelQueryIndustryEnergyPhotovoltaicModuleArgsDto, StreamDataModelQueryIndustryEnergyPhotovoltaicStringArgsDto, StreamDataModelQueryIndustryFluidHeatMeterArgsDto, StreamDataModelQueryIndustryFluidWaterMeterArgsDto, StreamEnergyCommunityEnergyQuantityConnectionDto, StreamEnergyCommunityEnergyQuantityDataQualityArgsDto, StreamEnergyCommunityEnergyQuantityDto, StreamEnergyCommunityEnergyQuantityEdgeDto, StreamEnergyCommunityEnergyQuantityRtChangedDateTimeArgsDto, StreamIndustryBasicAlarmAcknowledgedArgsDto, StreamIndustryBasicAlarmCategoryArgsDto, StreamIndustryBasicAlarmCauseArgsDto, StreamIndustryBasicAlarmClearedArgsDto, StreamIndustryBasicAlarmConnectionDto, StreamIndustryBasicAlarmDto, StreamIndustryBasicAlarmEdgeDto, StreamIndustryBasicAlarmLastModifiedArgsDto, StreamIndustryBasicAlarmMessageArgsDto, StreamIndustryBasicAlarmPriorityArgsDto, StreamIndustryBasicAlarmReactivatedArgsDto, StreamIndustryBasicAlarmReactivatedCountArgsDto, StreamIndustryBasicAlarmReceivedArgsDto, StreamIndustryBasicAlarmRtChangedDateTimeArgsDto, StreamIndustryBasicAlarmSourceArgsDto, StreamIndustryBasicAlarmStateArgsDto, StreamIndustryBasicAlarmTagNameArgsDto, StreamIndustryBasicAlarmTypeArgsDto, StreamIndustryBasicEventCategoryArgsDto, StreamIndustryBasicEventConnectionDto, StreamIndustryBasicEventDto, StreamIndustryBasicEventEdgeDto, StreamIndustryBasicEventMessageArgsDto, StreamIndustryBasicEventReceivedArgsDto, StreamIndustryBasicEventRtChangedDateTimeArgsDto, StreamIndustryBasicEventTagNameArgsDto, StreamIndustryBasicMachineConnectionDto, StreamIndustryBasicMachineDto, StreamIndustryBasicMachineEdgeDto, StreamIndustryBasicMachineMachineStateArgsDto, StreamIndustryBasicMachineOperatingHoursArgsDto, StreamIndustryBasicMachineRtChangedDateTimeArgsDto, StreamIndustryBasicMachineStandStillCounterArgsDto, StreamIndustryBasicRuntimeVariableBooleanValueArgsDto, StreamIndustryBasicRuntimeVariableConnectionDto, StreamIndustryBasicRuntimeVariableDateTimeValueArgsDto, StreamIndustryBasicRuntimeVariableDoubleValueArgsDto, StreamIndustryBasicRuntimeVariableDto, StreamIndustryBasicRuntimeVariableEdgeDto, StreamIndustryBasicRuntimeVariableIecDataTypeArgsDto, StreamIndustryBasicRuntimeVariableInt64ValueArgsDto, StreamIndustryBasicRuntimeVariableIntValueArgsDto, StreamIndustryBasicRuntimeVariableRtChangedDateTimeArgsDto, StreamIndustryBasicRuntimeVariableStringValueArgsDto, StreamIndustryBasicRuntimeVariableTimeSpanValueArgsDto, StreamIndustryEnergyBatteryAmpereArgsDto, StreamIndustryEnergyBatteryCapacityArgsDto, StreamIndustryEnergyBatteryConnectionDto, StreamIndustryEnergyBatteryDto, StreamIndustryEnergyBatteryEdgeDto, StreamIndustryEnergyBatteryExportedEnergyArgsDto, StreamIndustryEnergyBatteryImportedEnergyArgsDto, StreamIndustryEnergyBatteryMachineStateArgsDto, StreamIndustryEnergyBatteryNumOfCyclesArgsDto, StreamIndustryEnergyBatteryOperatingHoursArgsDto, StreamIndustryEnergyBatteryPowerArgsDto, StreamIndustryEnergyBatteryRtChangedDateTimeArgsDto, StreamIndustryEnergyBatterySoCArgsDto, StreamIndustryEnergyBatterySoHArgsDto, StreamIndustryEnergyBatteryStandStillCounterArgsDto, StreamIndustryEnergyBatteryVoltageArgsDto, StreamIndustryEnergyEnergyMeterAmpereArgsDto, StreamIndustryEnergyEnergyMeterApparentPowerArgsDto, StreamIndustryEnergyEnergyMeterConnectionDto, StreamIndustryEnergyEnergyMeterDto, StreamIndustryEnergyEnergyMeterEdgeDto, StreamIndustryEnergyEnergyMeterExportedEnergyArgsDto, StreamIndustryEnergyEnergyMeterFrequencyArgsDto, StreamIndustryEnergyEnergyMeterImportedEnergyArgsDto, StreamIndustryEnergyEnergyMeterMachineStateArgsDto, StreamIndustryEnergyEnergyMeterOperatingHoursArgsDto, StreamIndustryEnergyEnergyMeterPowerArgsDto, StreamIndustryEnergyEnergyMeterReactivePowerArgsDto, StreamIndustryEnergyEnergyMeterRtChangedDateTimeArgsDto, StreamIndustryEnergyEnergyMeterStandStillCounterArgsDto, StreamIndustryEnergyEnergyMeterVoltageArgsDto, StreamIndustryEnergyInverterAmpereArgsDto, StreamIndustryEnergyInverterConnectionDto, StreamIndustryEnergyInverterDcAmpereArgsDto, StreamIndustryEnergyInverterDcVoltageArgsDto, StreamIndustryEnergyInverterDto, StreamIndustryEnergyInverterEdgeDto, StreamIndustryEnergyInverterMachineStateArgsDto, StreamIndustryEnergyInverterMaximumPowerArgsDto, StreamIndustryEnergyInverterOperatingHoursArgsDto, StreamIndustryEnergyInverterPowerArgsDto, StreamIndustryEnergyInverterRtChangedDateTimeArgsDto, StreamIndustryEnergyInverterStandStillCounterArgsDto, StreamIndustryEnergyInverterVoltageArgsDto, StreamIndustryEnergyPhotovoltaicModuleConnectionDto, StreamIndustryEnergyPhotovoltaicModuleDto, StreamIndustryEnergyPhotovoltaicModuleEdgeDto, StreamIndustryEnergyPhotovoltaicModuleMachineStateArgsDto, StreamIndustryEnergyPhotovoltaicModuleOperatingHoursArgsDto, StreamIndustryEnergyPhotovoltaicModulePeakPowerArgsDto, StreamIndustryEnergyPhotovoltaicModulePowerArgsDto, StreamIndustryEnergyPhotovoltaicModuleRtChangedDateTimeArgsDto, StreamIndustryEnergyPhotovoltaicModuleStandStillCounterArgsDto, StreamIndustryEnergyPhotovoltaicStringConnectionDto, StreamIndustryEnergyPhotovoltaicStringDto, StreamIndustryEnergyPhotovoltaicStringEdgeDto, StreamIndustryEnergyPhotovoltaicStringPowerArgsDto, StreamIndustryEnergyPhotovoltaicStringRtChangedDateTimeArgsDto, StreamIndustryFluidHeatMeterConnectionDto, StreamIndustryFluidHeatMeterDto, StreamIndustryFluidHeatMeterEdgeDto, StreamIndustryFluidHeatMeterImportedEnergyArgsDto, StreamIndustryFluidHeatMeterMachineStateArgsDto, StreamIndustryFluidHeatMeterOperatingHoursArgsDto, StreamIndustryFluidHeatMeterPowerArgsDto, StreamIndustryFluidHeatMeterRtChangedDateTimeArgsDto, StreamIndustryFluidHeatMeterStandStillCounterArgsDto, StreamIndustryFluidWaterMeterConnectionDto, StreamIndustryFluidWaterMeterDto, StreamIndustryFluidWaterMeterEdgeDto, StreamIndustryFluidWaterMeterMachineStateArgsDto, StreamIndustryFluidWaterMeterOperatingHoursArgsDto, StreamIndustryFluidWaterMeterRtChangedDateTimeArgsDto, StreamIndustryFluidWaterMeterStandStillCounterArgsDto, SystemAggregationQueryColumnDto, SystemAggregationQueryColumnInputDto, SystemAggregationRtQueryAssociationsArgsDto, SystemAggregationRtQueryConfiguredByArgsDto, SystemAggregationRtQueryConnectionDto, SystemAggregationRtQueryDto, SystemAggregationRtQueryEdgeDto, SystemAggregationRtQueryInputDto, SystemAggregationRtQueryInputUpdateDto, SystemAggregationRtQueryMutationsCreateArgsDto, SystemAggregationRtQueryMutationsDto, SystemAggregationRtQueryMutationsUpdateArgsDto, SystemAggregationRtQueryRelatesFromArgsDto, SystemAggregationRtQueryRelatesToArgsDto, SystemAggregationRtQueryTaggedByArgsDto, SystemAggregationRtQueryUpdateDto, SystemAggregationRtQueryUpdateMessageDto, SystemAttributeSearchFilterDto, SystemAttributeSearchFilterInputDto, SystemAutoIncrementAssociationsArgsDto, SystemAutoIncrementConfiguredByArgsDto, SystemAutoIncrementConnectionDto, SystemAutoIncrementDto, SystemAutoIncrementEdgeDto, SystemAutoIncrementInputDto, SystemAutoIncrementInputUpdateDto, SystemAutoIncrementMutationsCreateArgsDto, SystemAutoIncrementMutationsDto, SystemAutoIncrementMutationsUpdateArgsDto, SystemAutoIncrementRelatesFromArgsDto, SystemAutoIncrementRelatesToArgsDto, SystemAutoIncrementTaggedByArgsDto, SystemAutoIncrementUpdateDto, SystemAutoIncrementUpdateMessageDto, SystemBotAttributeAggregateConfigurationAssociationsArgsDto, SystemBotAttributeAggregateConfigurationConfiguredByArgsDto, SystemBotAttributeAggregateConfigurationConfiguresArgsDto, SystemBotAttributeAggregateConfigurationConnectionDto, SystemBotAttributeAggregateConfigurationDto, SystemBotAttributeAggregateConfigurationEdgeDto, SystemBotAttributeAggregateConfigurationInputDto, SystemBotAttributeAggregateConfigurationInputUpdateDto, SystemBotAttributeAggregateConfigurationMutationsCreateArgsDto, SystemBotAttributeAggregateConfigurationMutationsDto, SystemBotAttributeAggregateConfigurationMutationsUpdateArgsDto, SystemBotAttributeAggregateConfigurationRelatesFromArgsDto, SystemBotAttributeAggregateConfigurationRelatesToArgsDto, SystemBotAttributeAggregateConfigurationTaggedByArgsDto, SystemBotAttributeAggregateConfigurationUpdateDto, SystemBotAttributeAggregateConfigurationUpdateMessageDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionEdgeDto, SystemBotFixupAssociationsArgsDto, SystemBotFixupConfiguredByArgsDto, SystemBotFixupConnectionDto, SystemBotFixupDto, SystemBotFixupEdgeDto, SystemBotFixupInputDto, SystemBotFixupInputUpdateDto, SystemBotFixupMutationsCreateArgsDto, SystemBotFixupMutationsDto, SystemBotFixupMutationsUpdateArgsDto, SystemBotFixupRelatesFromArgsDto, SystemBotFixupRelatesToArgsDto, SystemBotFixupTaggedByArgsDto, SystemBotFixupUpdateDto, SystemBotFixupUpdateMessageDto, SystemCommunicationAdapterAssociationsArgsDto, SystemCommunicationAdapterConfiguredByArgsDto, SystemCommunicationAdapterConnectionDto, SystemCommunicationAdapterDto, SystemCommunicationAdapterEdgeDto, SystemCommunicationAdapterExecutesArgsDto, SystemCommunicationAdapterExecutingAdapterArgsDto, SystemCommunicationAdapterInterfaceConfiguredByArgsDto, SystemCommunicationAdapterInterfaceDto, SystemCommunicationAdapterInterfaceExecutesArgsDto, SystemCommunicationAdapterInterfaceExecutingAdapterArgsDto, SystemCommunicationAdapterInterfaceManagedByArgsDto, SystemCommunicationAdapterInterfaceRelatesFromArgsDto, SystemCommunicationAdapterInterfaceRelatesToArgsDto, SystemCommunicationAdapterInterfaceTaggedByArgsDto, SystemCommunicationAdapterManagedByArgsDto, SystemCommunicationAdapterRelatesFromArgsDto, SystemCommunicationAdapterRelatesToArgsDto, SystemCommunicationAdapterTaggedByArgsDto, SystemCommunicationAdapterUpdateDto, SystemCommunicationAdapterUpdateMessageDto, SystemCommunicationAdapter_AdapterExecutionsUnionConnectionDto, SystemCommunicationAdapter_AdapterExecutionsUnionDto, SystemCommunicationAdapter_AdapterExecutionsUnionEdgeDto, SystemCommunicationAdapter_ExecutedByUnionConnectionDto, SystemCommunicationAdapter_ExecutedByUnionDto, SystemCommunicationAdapter_ExecutedByUnionEdgeDto, SystemCommunicationAdapter_ManagesUnionConnectionDto, SystemCommunicationAdapter_ManagesUnionDto, SystemCommunicationAdapter_ManagesUnionEdgeDto, SystemCommunicationDataPipelineAssociationsArgsDto, SystemCommunicationDataPipelineChildrenArgsDto, SystemCommunicationDataPipelineConfiguredByArgsDto, SystemCommunicationDataPipelineConnectionDto, SystemCommunicationDataPipelineDto, SystemCommunicationDataPipelineEdgeDto, SystemCommunicationDataPipelineInputDto, SystemCommunicationDataPipelineInputUpdateDto, SystemCommunicationDataPipelineMutationsCreateArgsDto, SystemCommunicationDataPipelineMutationsDto, SystemCommunicationDataPipelineMutationsUpdateArgsDto, SystemCommunicationDataPipelineRelatesFromArgsDto, SystemCommunicationDataPipelineRelatesToArgsDto, SystemCommunicationDataPipelineTaggedByArgsDto, SystemCommunicationDataPipelineTriggerAssociationsArgsDto, SystemCommunicationDataPipelineTriggerConfiguredByArgsDto, SystemCommunicationDataPipelineTriggerConnectionDto, SystemCommunicationDataPipelineTriggerDto, SystemCommunicationDataPipelineTriggerEdgeDto, SystemCommunicationDataPipelineTriggerInputDto, SystemCommunicationDataPipelineTriggerInputUpdateDto, SystemCommunicationDataPipelineTriggerMutationsCreateArgsDto, SystemCommunicationDataPipelineTriggerMutationsDto, SystemCommunicationDataPipelineTriggerMutationsUpdateArgsDto, SystemCommunicationDataPipelineTriggerRelatesFromArgsDto, SystemCommunicationDataPipelineTriggerRelatesToArgsDto, SystemCommunicationDataPipelineTriggerTaggedByArgsDto, SystemCommunicationDataPipelineTriggerTriggersArgsDto, SystemCommunicationDataPipelineTriggerUpdateDto, SystemCommunicationDataPipelineTriggerUpdateMessageDto, SystemCommunicationDataPipelineTrigger_TriggeredByUnionConnectionDto, SystemCommunicationDataPipelineTrigger_TriggeredByUnionDto, SystemCommunicationDataPipelineTrigger_TriggeredByUnionEdgeDto, SystemCommunicationDataPipelineUpdateDto, SystemCommunicationDataPipelineUpdateMessageDto, SystemCommunicationDataPipeline_ParentUnionConnectionDto, SystemCommunicationDataPipeline_ParentUnionDto, SystemCommunicationDataPipeline_ParentUnionEdgeDto, SystemCommunicationDeployableEntityAssociationsArgsDto, SystemCommunicationDeployableEntityConfiguredByArgsDto, SystemCommunicationDeployableEntityConnectionDto, SystemCommunicationDeployableEntityDto, SystemCommunicationDeployableEntityEdgeDto, SystemCommunicationDeployableEntityInterfaceConfiguredByArgsDto, SystemCommunicationDeployableEntityInterfaceDto, SystemCommunicationDeployableEntityInterfaceRelatesFromArgsDto, SystemCommunicationDeployableEntityInterfaceRelatesToArgsDto, SystemCommunicationDeployableEntityInterfaceTaggedByArgsDto, SystemCommunicationDeployableEntityRelatesFromArgsDto, SystemCommunicationDeployableEntityRelatesToArgsDto, SystemCommunicationDeployableEntityTaggedByArgsDto, SystemCommunicationDeployableEntityUpdateDto, SystemCommunicationDeployableEntityUpdateMessageDto, SystemCommunicationEMailSenderConfigurationAssociationsArgsDto, SystemCommunicationEMailSenderConfigurationConfiguredByArgsDto, SystemCommunicationEMailSenderConfigurationConnectionDto, SystemCommunicationEMailSenderConfigurationDto, SystemCommunicationEMailSenderConfigurationEdgeDto, SystemCommunicationEMailSenderConfigurationInputDto, SystemCommunicationEMailSenderConfigurationInputUpdateDto, SystemCommunicationEMailSenderConfigurationMutationsCreateArgsDto, SystemCommunicationEMailSenderConfigurationMutationsDto, SystemCommunicationEMailSenderConfigurationMutationsUpdateArgsDto, SystemCommunicationEMailSenderConfigurationRelatesFromArgsDto, SystemCommunicationEMailSenderConfigurationRelatesToArgsDto, SystemCommunicationEMailSenderConfigurationTaggedByArgsDto, SystemCommunicationEMailSenderConfigurationUpdateDto, SystemCommunicationEMailSenderConfigurationUpdateMessageDto, SystemCommunicationEMailSenderConfigurationUsedByArgsDto, SystemCommunicationEdgeAdapterAssociationsArgsDto, SystemCommunicationEdgeAdapterConfiguredByArgsDto, SystemCommunicationEdgeAdapterConnectionDto, SystemCommunicationEdgeAdapterDto, SystemCommunicationEdgeAdapterEdgeDto, SystemCommunicationEdgeAdapterExecutesArgsDto, SystemCommunicationEdgeAdapterExecutingAdapterArgsDto, SystemCommunicationEdgeAdapterInputDto, SystemCommunicationEdgeAdapterInputUpdateDto, SystemCommunicationEdgeAdapterManagedByArgsDto, SystemCommunicationEdgeAdapterMutationsCreateArgsDto, SystemCommunicationEdgeAdapterMutationsDto, SystemCommunicationEdgeAdapterMutationsUpdateArgsDto, SystemCommunicationEdgeAdapterRelatesFromArgsDto, SystemCommunicationEdgeAdapterRelatesToArgsDto, SystemCommunicationEdgeAdapterTaggedByArgsDto, SystemCommunicationEdgeAdapterUpdateDto, SystemCommunicationEdgeAdapterUpdateMessageDto, SystemCommunicationEdgePipelineAssociationsArgsDto, SystemCommunicationEdgePipelineConfiguredByArgsDto, SystemCommunicationEdgePipelineConnectionDto, SystemCommunicationEdgePipelineDto, SystemCommunicationEdgePipelineEdgeDto, SystemCommunicationEdgePipelineExecutedByArgsDto, SystemCommunicationEdgePipelineExecutedPipelineArgsDto, SystemCommunicationEdgePipelineInputDto, SystemCommunicationEdgePipelineInputUpdateDto, SystemCommunicationEdgePipelineIsUsingArgsDto, SystemCommunicationEdgePipelineMutationsCreateArgsDto, SystemCommunicationEdgePipelineMutationsDto, SystemCommunicationEdgePipelineMutationsUpdateArgsDto, SystemCommunicationEdgePipelineParentArgsDto, SystemCommunicationEdgePipelineRelatesFromArgsDto, SystemCommunicationEdgePipelineRelatesToArgsDto, SystemCommunicationEdgePipelineStatisticsForPipelineArgsDto, SystemCommunicationEdgePipelineTaggedByArgsDto, SystemCommunicationEdgePipelineUpdateDto, SystemCommunicationEdgePipelineUpdateMessageDto, SystemCommunicationEnergyCommunityConfigurationAssociationsArgsDto, SystemCommunicationEnergyCommunityConfigurationConfiguredByArgsDto, SystemCommunicationEnergyCommunityConfigurationConnectionDto, SystemCommunicationEnergyCommunityConfigurationDto, SystemCommunicationEnergyCommunityConfigurationEdgeDto, SystemCommunicationEnergyCommunityConfigurationInputDto, SystemCommunicationEnergyCommunityConfigurationInputUpdateDto, SystemCommunicationEnergyCommunityConfigurationMutationsCreateArgsDto, SystemCommunicationEnergyCommunityConfigurationMutationsDto, SystemCommunicationEnergyCommunityConfigurationMutationsUpdateArgsDto, SystemCommunicationEnergyCommunityConfigurationRelatesFromArgsDto, SystemCommunicationEnergyCommunityConfigurationRelatesToArgsDto, SystemCommunicationEnergyCommunityConfigurationTaggedByArgsDto, SystemCommunicationEnergyCommunityConfigurationUpdateDto, SystemCommunicationEnergyCommunityConfigurationUpdateMessageDto, SystemCommunicationEnergyCommunityConfigurationUsedByArgsDto, SystemCommunicationFinApiConfigurationAssociationsArgsDto, SystemCommunicationFinApiConfigurationConfiguredByArgsDto, SystemCommunicationFinApiConfigurationConnectionDto, SystemCommunicationFinApiConfigurationDto, SystemCommunicationFinApiConfigurationEdgeDto, SystemCommunicationFinApiConfigurationInputDto, SystemCommunicationFinApiConfigurationInputUpdateDto, SystemCommunicationFinApiConfigurationMutationsCreateArgsDto, SystemCommunicationFinApiConfigurationMutationsDto, SystemCommunicationFinApiConfigurationMutationsUpdateArgsDto, SystemCommunicationFinApiConfigurationRelatesFromArgsDto, SystemCommunicationFinApiConfigurationRelatesToArgsDto, SystemCommunicationFinApiConfigurationTaggedByArgsDto, SystemCommunicationFinApiConfigurationUpdateDto, SystemCommunicationFinApiConfigurationUpdateMessageDto, SystemCommunicationFinApiConfigurationUsedByArgsDto, SystemCommunicationMeshAdapterAssociationsArgsDto, SystemCommunicationMeshAdapterConfiguredByArgsDto, SystemCommunicationMeshAdapterConnectionDto, SystemCommunicationMeshAdapterDto, SystemCommunicationMeshAdapterEdgeDto, SystemCommunicationMeshAdapterExecutesArgsDto, SystemCommunicationMeshAdapterExecutingAdapterArgsDto, SystemCommunicationMeshAdapterInputDto, SystemCommunicationMeshAdapterInputUpdateDto, SystemCommunicationMeshAdapterManagedByArgsDto, SystemCommunicationMeshAdapterMutationsCreateArgsDto, SystemCommunicationMeshAdapterMutationsDto, SystemCommunicationMeshAdapterMutationsUpdateArgsDto, SystemCommunicationMeshAdapterRelatesFromArgsDto, SystemCommunicationMeshAdapterRelatesToArgsDto, SystemCommunicationMeshAdapterTaggedByArgsDto, SystemCommunicationMeshAdapterUpdateDto, SystemCommunicationMeshAdapterUpdateMessageDto, SystemCommunicationMeshPipelineAssociationsArgsDto, SystemCommunicationMeshPipelineConfiguredByArgsDto, SystemCommunicationMeshPipelineConnectionDto, SystemCommunicationMeshPipelineDto, SystemCommunicationMeshPipelineEdgeDto, SystemCommunicationMeshPipelineExecutedByArgsDto, SystemCommunicationMeshPipelineExecutedPipelineArgsDto, SystemCommunicationMeshPipelineInputDto, SystemCommunicationMeshPipelineInputUpdateDto, SystemCommunicationMeshPipelineIsUsingArgsDto, SystemCommunicationMeshPipelineMutationsCreateArgsDto, SystemCommunicationMeshPipelineMutationsDto, SystemCommunicationMeshPipelineMutationsUpdateArgsDto, SystemCommunicationMeshPipelineParentArgsDto, SystemCommunicationMeshPipelineRelatesFromArgsDto, SystemCommunicationMeshPipelineRelatesToArgsDto, SystemCommunicationMeshPipelineStatisticsForPipelineArgsDto, SystemCommunicationMeshPipelineTaggedByArgsDto, SystemCommunicationMeshPipelineTriggeredByArgsDto, SystemCommunicationMeshPipelineUpdateDto, SystemCommunicationMeshPipelineUpdateMessageDto, SystemCommunicationMeshPipeline_TriggersUnionConnectionDto, SystemCommunicationMeshPipeline_TriggersUnionDto, SystemCommunicationMeshPipeline_TriggersUnionEdgeDto, SystemCommunicationPipelineAssociationsArgsDto, SystemCommunicationPipelineConfiguredByArgsDto, SystemCommunicationPipelineConnectionDto, SystemCommunicationPipelineDto, SystemCommunicationPipelineEdgeDto, SystemCommunicationPipelineExecutedByArgsDto, SystemCommunicationPipelineExecutedPipelineArgsDto, SystemCommunicationPipelineExecutionAdapterExecutionsArgsDto, SystemCommunicationPipelineExecutionAssociationsArgsDto, SystemCommunicationPipelineExecutionConfiguredByArgsDto, SystemCommunicationPipelineExecutionConnectionDto, SystemCommunicationPipelineExecutionDto, SystemCommunicationPipelineExecutionEdgeDto, SystemCommunicationPipelineExecutionInputDto, SystemCommunicationPipelineExecutionInputUpdateDto, SystemCommunicationPipelineExecutionMutationsCreateArgsDto, SystemCommunicationPipelineExecutionMutationsDto, SystemCommunicationPipelineExecutionMutationsUpdateArgsDto, SystemCommunicationPipelineExecutionPipelineExecutionsArgsDto, SystemCommunicationPipelineExecutionRelatesFromArgsDto, SystemCommunicationPipelineExecutionRelatesToArgsDto, SystemCommunicationPipelineExecutionTaggedByArgsDto, SystemCommunicationPipelineExecutionUpdateDto, SystemCommunicationPipelineExecutionUpdateMessageDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnectionDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionEdgeDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnectionDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionEdgeDto, SystemCommunicationPipelineInterfaceConfiguredByArgsDto, SystemCommunicationPipelineInterfaceDto, SystemCommunicationPipelineInterfaceExecutedByArgsDto, SystemCommunicationPipelineInterfaceExecutedPipelineArgsDto, SystemCommunicationPipelineInterfaceIsUsingArgsDto, SystemCommunicationPipelineInterfaceParentArgsDto, SystemCommunicationPipelineInterfaceRelatesFromArgsDto, SystemCommunicationPipelineInterfaceRelatesToArgsDto, SystemCommunicationPipelineInterfaceStatisticsForPipelineArgsDto, SystemCommunicationPipelineInterfaceTaggedByArgsDto, SystemCommunicationPipelineIsUsingArgsDto, SystemCommunicationPipelineParentArgsDto, SystemCommunicationPipelineRelatesFromArgsDto, SystemCommunicationPipelineRelatesToArgsDto, SystemCommunicationPipelineStatisticsAssociationsArgsDto, SystemCommunicationPipelineStatisticsConfiguredByArgsDto, SystemCommunicationPipelineStatisticsConnectionDto, SystemCommunicationPipelineStatisticsDto, SystemCommunicationPipelineStatisticsEdgeDto, SystemCommunicationPipelineStatisticsForPipelineArgsDto, SystemCommunicationPipelineStatisticsInputDto, SystemCommunicationPipelineStatisticsInputUpdateDto, SystemCommunicationPipelineStatisticsMutationsCreateArgsDto, SystemCommunicationPipelineStatisticsMutationsDto, SystemCommunicationPipelineStatisticsMutationsUpdateArgsDto, SystemCommunicationPipelineStatisticsPipelineStatisticsArgsDto, SystemCommunicationPipelineStatisticsRelatesFromArgsDto, SystemCommunicationPipelineStatisticsRelatesToArgsDto, SystemCommunicationPipelineStatisticsTaggedByArgsDto, SystemCommunicationPipelineStatisticsUpdateDto, SystemCommunicationPipelineStatisticsUpdateMessageDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnectionDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionEdgeDto, SystemCommunicationPipelineTaggedByArgsDto, SystemCommunicationPipelineUpdateDto, SystemCommunicationPipelineUpdateMessageDto, SystemCommunicationPipeline_ChildrenUnionConnectionDto, SystemCommunicationPipeline_ChildrenUnionDto, SystemCommunicationPipeline_ChildrenUnionEdgeDto, SystemCommunicationPipeline_ExecutesUnionConnectionDto, SystemCommunicationPipeline_ExecutesUnionDto, SystemCommunicationPipeline_ExecutesUnionEdgeDto, SystemCommunicationPipeline_PipelineExecutionsUnionConnectionDto, SystemCommunicationPipeline_PipelineExecutionsUnionDto, SystemCommunicationPipeline_PipelineExecutionsUnionEdgeDto, SystemCommunicationPipeline_PipelineStatisticsUnionConnectionDto, SystemCommunicationPipeline_PipelineStatisticsUnionDto, SystemCommunicationPipeline_PipelineStatisticsUnionEdgeDto, SystemCommunicationPipeline_UsedByUnionConnectionDto, SystemCommunicationPipeline_UsedByUnionDto, SystemCommunicationPipeline_UsedByUnionEdgeDto, SystemCommunicationPoolAssociationsArgsDto, SystemCommunicationPoolConfiguredByArgsDto, SystemCommunicationPoolConnectionDto, SystemCommunicationPoolDto, SystemCommunicationPoolEdgeDto, SystemCommunicationPoolInputDto, SystemCommunicationPoolInputUpdateDto, SystemCommunicationPoolManagesArgsDto, SystemCommunicationPoolMutationsCreateArgsDto, SystemCommunicationPoolMutationsDto, SystemCommunicationPoolMutationsUpdateArgsDto, SystemCommunicationPoolRelatesFromArgsDto, SystemCommunicationPoolRelatesToArgsDto, SystemCommunicationPoolTaggedByArgsDto, SystemCommunicationPoolUpdateDto, SystemCommunicationPoolUpdateMessageDto, SystemCommunicationPool_ManagedByUnionConnectionDto, SystemCommunicationPool_ManagedByUnionDto, SystemCommunicationPool_ManagedByUnionEdgeDto, SystemCommunicationSapConfigurationAssociationsArgsDto, SystemCommunicationSapConfigurationConfiguredByArgsDto, SystemCommunicationSapConfigurationConnectionDto, SystemCommunicationSapConfigurationDto, SystemCommunicationSapConfigurationEdgeDto, SystemCommunicationSapConfigurationInputDto, SystemCommunicationSapConfigurationInputUpdateDto, SystemCommunicationSapConfigurationMutationsCreateArgsDto, SystemCommunicationSapConfigurationMutationsDto, SystemCommunicationSapConfigurationMutationsUpdateArgsDto, SystemCommunicationSapConfigurationRelatesFromArgsDto, SystemCommunicationSapConfigurationRelatesToArgsDto, SystemCommunicationSapConfigurationTaggedByArgsDto, SystemCommunicationSapConfigurationUpdateDto, SystemCommunicationSapConfigurationUpdateMessageDto, SystemCommunicationSapConfigurationUsedByArgsDto, SystemCommunicationTagAssociationsArgsDto, SystemCommunicationTagConfiguredByArgsDto, SystemCommunicationTagConnectionDto, SystemCommunicationTagDto, SystemCommunicationTagEdgeDto, SystemCommunicationTagInputDto, SystemCommunicationTagInputUpdateDto, SystemCommunicationTagIsTaggingArgsDto, SystemCommunicationTagMutationsCreateArgsDto, SystemCommunicationTagMutationsDto, SystemCommunicationTagMutationsUpdateArgsDto, SystemCommunicationTagRelatesFromArgsDto, SystemCommunicationTagRelatesToArgsDto, SystemCommunicationTagTaggedByArgsDto, SystemCommunicationTagUpdateDto, SystemCommunicationTagUpdateMessageDto, SystemCommunicationTag_TaggedByUnionConnectionDto, SystemCommunicationTag_TaggedByUnionDto, SystemCommunicationTag_TaggedByUnionEdgeDto, SystemCommunicationUiThemeColorsDto, SystemCommunicationUiThemeColorsInputDto, SystemConfigurationAssociationsArgsDto, SystemConfigurationConfiguredByArgsDto, SystemConfigurationConnectionDto, SystemConfigurationDto, SystemConfigurationEdgeDto, SystemConfigurationInterfaceConfiguredByArgsDto, SystemConfigurationInterfaceDto, SystemConfigurationInterfaceRelatesFromArgsDto, SystemConfigurationInterfaceRelatesToArgsDto, SystemConfigurationInterfaceTaggedByArgsDto, SystemConfigurationInterfaceUsedByArgsDto, SystemConfigurationRelatesFromArgsDto, SystemConfigurationRelatesToArgsDto, SystemConfigurationTaggedByArgsDto, SystemConfigurationUpdateDto, SystemConfigurationUpdateMessageDto, SystemConfigurationUsedByArgsDto, SystemConfiguration_IsUsingUnionConnectionDto, SystemConfiguration_IsUsingUnionDto, SystemConfiguration_IsUsingUnionEdgeDto, SystemEntityAssociationsArgsDto, SystemEntityConfiguredByArgsDto, SystemEntityConnectionDto, SystemEntityDto, SystemEntityEdgeDto, SystemEntityInterfaceConfiguredByArgsDto, SystemEntityInterfaceDto, SystemEntityInterfaceRelatesFromArgsDto, SystemEntityInterfaceRelatesToArgsDto, SystemEntityInterfaceTaggedByArgsDto, SystemEntityRelatesFromArgsDto, SystemEntityRelatesToArgsDto, SystemEntityTaggedByArgsDto, SystemEntityUpdateDto, SystemEntityUpdateMessageDto, SystemEntity_ConfiguresUnionConnectionDto, SystemEntity_ConfiguresUnionDto, SystemEntity_ConfiguresUnionEdgeDto, SystemEntity_IsTaggingUnionConnectionDto, SystemEntity_IsTaggingUnionDto, SystemEntity_IsTaggingUnionEdgeDto, SystemEntity_RelatesFromUnionConnectionDto, SystemEntity_RelatesFromUnionDto, SystemEntity_RelatesFromUnionEdgeDto, SystemEntity_RelatesToUnionConnectionDto, SystemEntity_RelatesToUnionDto, SystemEntity_RelatesToUnionEdgeDto, SystemFieldFilterDto, SystemFieldFilterInputDto, SystemGroupingAggregationRtQueryAssociationsArgsDto, SystemGroupingAggregationRtQueryConfiguredByArgsDto, SystemGroupingAggregationRtQueryConnectionDto, SystemGroupingAggregationRtQueryDto, SystemGroupingAggregationRtQueryEdgeDto, SystemGroupingAggregationRtQueryInputDto, SystemGroupingAggregationRtQueryInputUpdateDto, SystemGroupingAggregationRtQueryMutationsCreateArgsDto, SystemGroupingAggregationRtQueryMutationsDto, SystemGroupingAggregationRtQueryMutationsUpdateArgsDto, SystemGroupingAggregationRtQueryRelatesFromArgsDto, SystemGroupingAggregationRtQueryRelatesToArgsDto, SystemGroupingAggregationRtQueryTaggedByArgsDto, SystemGroupingAggregationRtQueryUpdateDto, SystemGroupingAggregationRtQueryUpdateMessageDto, SystemIdentityApiResourceAssociationsArgsDto, SystemIdentityApiResourceConfiguredByArgsDto, SystemIdentityApiResourceConnectionDto, SystemIdentityApiResourceDto, SystemIdentityApiResourceEdgeDto, SystemIdentityApiResourceInputDto, SystemIdentityApiResourceInputUpdateDto, SystemIdentityApiResourceMutationsCreateArgsDto, SystemIdentityApiResourceMutationsDto, SystemIdentityApiResourceMutationsUpdateArgsDto, SystemIdentityApiResourceRelatesFromArgsDto, SystemIdentityApiResourceRelatesToArgsDto, SystemIdentityApiResourceTaggedByArgsDto, SystemIdentityApiResourceUpdateDto, SystemIdentityApiResourceUpdateMessageDto, SystemIdentityApiScopeAssociationsArgsDto, SystemIdentityApiScopeConfiguredByArgsDto, SystemIdentityApiScopeConnectionDto, SystemIdentityApiScopeDto, SystemIdentityApiScopeEdgeDto, SystemIdentityApiScopeInputDto, SystemIdentityApiScopeInputUpdateDto, SystemIdentityApiScopeMutationsCreateArgsDto, SystemIdentityApiScopeMutationsDto, SystemIdentityApiScopeMutationsUpdateArgsDto, SystemIdentityApiScopeRelatesFromArgsDto, SystemIdentityApiScopeRelatesToArgsDto, SystemIdentityApiScopeTaggedByArgsDto, SystemIdentityApiScopeUpdateDto, SystemIdentityApiScopeUpdateMessageDto, SystemIdentityAzureEntraIdIdentityProviderAssociationsArgsDto, SystemIdentityAzureEntraIdIdentityProviderConfiguredByArgsDto, SystemIdentityAzureEntraIdIdentityProviderConnectionDto, SystemIdentityAzureEntraIdIdentityProviderDto, SystemIdentityAzureEntraIdIdentityProviderEdgeDto, SystemIdentityAzureEntraIdIdentityProviderInputDto, SystemIdentityAzureEntraIdIdentityProviderInputUpdateDto, SystemIdentityAzureEntraIdIdentityProviderMutationsCreateArgsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsUpdateArgsDto, SystemIdentityAzureEntraIdIdentityProviderRelatesFromArgsDto, SystemIdentityAzureEntraIdIdentityProviderRelatesToArgsDto, SystemIdentityAzureEntraIdIdentityProviderTaggedByArgsDto, SystemIdentityAzureEntraIdIdentityProviderUpdateDto, SystemIdentityAzureEntraIdIdentityProviderUpdateMessageDto, SystemIdentityClientAssociationsArgsDto, SystemIdentityClientClaimDto, SystemIdentityClientClaimInputDto, SystemIdentityClientConfiguredByArgsDto, SystemIdentityClientConnectionDto, SystemIdentityClientDto, SystemIdentityClientEdgeDto, SystemIdentityClientInputDto, SystemIdentityClientInputUpdateDto, SystemIdentityClientMutationsCreateArgsDto, SystemIdentityClientMutationsDto, SystemIdentityClientMutationsUpdateArgsDto, SystemIdentityClientRelatesFromArgsDto, SystemIdentityClientRelatesToArgsDto, SystemIdentityClientTaggedByArgsDto, SystemIdentityClientUpdateDto, SystemIdentityClientUpdateMessageDto, SystemIdentityFacebookIdentityProviderAssociationsArgsDto, SystemIdentityFacebookIdentityProviderConfiguredByArgsDto, SystemIdentityFacebookIdentityProviderConnectionDto, SystemIdentityFacebookIdentityProviderDto, SystemIdentityFacebookIdentityProviderEdgeDto, SystemIdentityFacebookIdentityProviderInputDto, SystemIdentityFacebookIdentityProviderInputUpdateDto, SystemIdentityFacebookIdentityProviderMutationsCreateArgsDto, SystemIdentityFacebookIdentityProviderMutationsDto, SystemIdentityFacebookIdentityProviderMutationsUpdateArgsDto, SystemIdentityFacebookIdentityProviderRelatesFromArgsDto, SystemIdentityFacebookIdentityProviderRelatesToArgsDto, SystemIdentityFacebookIdentityProviderTaggedByArgsDto, SystemIdentityFacebookIdentityProviderUpdateDto, SystemIdentityFacebookIdentityProviderUpdateMessageDto, SystemIdentityGoogleIdentityProviderAssociationsArgsDto, SystemIdentityGoogleIdentityProviderConfiguredByArgsDto, SystemIdentityGoogleIdentityProviderConnectionDto, SystemIdentityGoogleIdentityProviderDto, SystemIdentityGoogleIdentityProviderEdgeDto, SystemIdentityGoogleIdentityProviderInputDto, SystemIdentityGoogleIdentityProviderInputUpdateDto, SystemIdentityGoogleIdentityProviderMutationsCreateArgsDto, SystemIdentityGoogleIdentityProviderMutationsDto, SystemIdentityGoogleIdentityProviderMutationsUpdateArgsDto, SystemIdentityGoogleIdentityProviderRelatesFromArgsDto, SystemIdentityGoogleIdentityProviderRelatesToArgsDto, SystemIdentityGoogleIdentityProviderTaggedByArgsDto, SystemIdentityGoogleIdentityProviderUpdateDto, SystemIdentityGoogleIdentityProviderUpdateMessageDto, SystemIdentityIdentityProviderAssociationsArgsDto, SystemIdentityIdentityProviderConfiguredByArgsDto, SystemIdentityIdentityProviderConnectionDto, SystemIdentityIdentityProviderDto, SystemIdentityIdentityProviderEdgeDto, SystemIdentityIdentityProviderInterfaceConfiguredByArgsDto, SystemIdentityIdentityProviderInterfaceDto, SystemIdentityIdentityProviderInterfaceRelatesFromArgsDto, SystemIdentityIdentityProviderInterfaceRelatesToArgsDto, SystemIdentityIdentityProviderInterfaceTaggedByArgsDto, SystemIdentityIdentityProviderRelatesFromArgsDto, SystemIdentityIdentityProviderRelatesToArgsDto, SystemIdentityIdentityProviderTaggedByArgsDto, SystemIdentityIdentityProviderUpdateDto, SystemIdentityIdentityProviderUpdateMessageDto, SystemIdentityIdentityResourceAssociationsArgsDto, SystemIdentityIdentityResourceConfiguredByArgsDto, SystemIdentityIdentityResourceConnectionDto, SystemIdentityIdentityResourceDto, SystemIdentityIdentityResourceEdgeDto, SystemIdentityIdentityResourceInputDto, SystemIdentityIdentityResourceInputUpdateDto, SystemIdentityIdentityResourceMutationsCreateArgsDto, SystemIdentityIdentityResourceMutationsDto, SystemIdentityIdentityResourceMutationsUpdateArgsDto, SystemIdentityIdentityResourceRelatesFromArgsDto, SystemIdentityIdentityResourceRelatesToArgsDto, SystemIdentityIdentityResourceTaggedByArgsDto, SystemIdentityIdentityResourceUpdateDto, SystemIdentityIdentityResourceUpdateMessageDto, SystemIdentityMailNotificationConfigurationAssociationsArgsDto, SystemIdentityMailNotificationConfigurationConfiguredByArgsDto, SystemIdentityMailNotificationConfigurationConnectionDto, SystemIdentityMailNotificationConfigurationDto, SystemIdentityMailNotificationConfigurationEdgeDto, SystemIdentityMailNotificationConfigurationInputDto, SystemIdentityMailNotificationConfigurationInputUpdateDto, SystemIdentityMailNotificationConfigurationMutationsCreateArgsDto, SystemIdentityMailNotificationConfigurationMutationsDto, SystemIdentityMailNotificationConfigurationMutationsUpdateArgsDto, SystemIdentityMailNotificationConfigurationRelatesFromArgsDto, SystemIdentityMailNotificationConfigurationRelatesToArgsDto, SystemIdentityMailNotificationConfigurationTaggedByArgsDto, SystemIdentityMailNotificationConfigurationUpdateDto, SystemIdentityMailNotificationConfigurationUpdateMessageDto, SystemIdentityMailNotificationConfigurationUsedByArgsDto, SystemIdentityMicrosoftAdIdentityProviderAssociationsArgsDto, SystemIdentityMicrosoftAdIdentityProviderConfiguredByArgsDto, SystemIdentityMicrosoftAdIdentityProviderConnectionDto, SystemIdentityMicrosoftAdIdentityProviderDto, SystemIdentityMicrosoftAdIdentityProviderEdgeDto, SystemIdentityMicrosoftAdIdentityProviderInputDto, SystemIdentityMicrosoftAdIdentityProviderInputUpdateDto, SystemIdentityMicrosoftAdIdentityProviderMutationsCreateArgsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsUpdateArgsDto, SystemIdentityMicrosoftAdIdentityProviderRelatesFromArgsDto, SystemIdentityMicrosoftAdIdentityProviderRelatesToArgsDto, SystemIdentityMicrosoftAdIdentityProviderTaggedByArgsDto, SystemIdentityMicrosoftAdIdentityProviderUpdateDto, SystemIdentityMicrosoftAdIdentityProviderUpdateMessageDto, SystemIdentityMicrosoftIdentityProviderAssociationsArgsDto, SystemIdentityMicrosoftIdentityProviderConfiguredByArgsDto, SystemIdentityMicrosoftIdentityProviderConnectionDto, SystemIdentityMicrosoftIdentityProviderDto, SystemIdentityMicrosoftIdentityProviderEdgeDto, SystemIdentityMicrosoftIdentityProviderInputDto, SystemIdentityMicrosoftIdentityProviderInputUpdateDto, SystemIdentityMicrosoftIdentityProviderMutationsCreateArgsDto, SystemIdentityMicrosoftIdentityProviderMutationsDto, SystemIdentityMicrosoftIdentityProviderMutationsUpdateArgsDto, SystemIdentityMicrosoftIdentityProviderRelatesFromArgsDto, SystemIdentityMicrosoftIdentityProviderRelatesToArgsDto, SystemIdentityMicrosoftIdentityProviderTaggedByArgsDto, SystemIdentityMicrosoftIdentityProviderUpdateDto, SystemIdentityMicrosoftIdentityProviderUpdateMessageDto, SystemIdentityOpenLdapIdentityProviderAssociationsArgsDto, SystemIdentityOpenLdapIdentityProviderConfiguredByArgsDto, SystemIdentityOpenLdapIdentityProviderConnectionDto, SystemIdentityOpenLdapIdentityProviderDto, SystemIdentityOpenLdapIdentityProviderEdgeDto, SystemIdentityOpenLdapIdentityProviderInputDto, SystemIdentityOpenLdapIdentityProviderInputUpdateDto, SystemIdentityOpenLdapIdentityProviderMutationsCreateArgsDto, SystemIdentityOpenLdapIdentityProviderMutationsDto, SystemIdentityOpenLdapIdentityProviderMutationsUpdateArgsDto, SystemIdentityOpenLdapIdentityProviderRelatesFromArgsDto, SystemIdentityOpenLdapIdentityProviderRelatesToArgsDto, SystemIdentityOpenLdapIdentityProviderTaggedByArgsDto, SystemIdentityOpenLdapIdentityProviderUpdateDto, SystemIdentityOpenLdapIdentityProviderUpdateMessageDto, SystemIdentityPermissionAssociationsArgsDto, SystemIdentityPermissionConfiguredByArgsDto, SystemIdentityPermissionConnectionDto, SystemIdentityPermissionDto, SystemIdentityPermissionEdgeDto, SystemIdentityPermissionInputDto, SystemIdentityPermissionInputUpdateDto, SystemIdentityPermissionMutationsCreateArgsDto, SystemIdentityPermissionMutationsDto, SystemIdentityPermissionMutationsUpdateArgsDto, SystemIdentityPermissionRelatesFromArgsDto, SystemIdentityPermissionRelatesToArgsDto, SystemIdentityPermissionRoleAssociationsArgsDto, SystemIdentityPermissionRoleConfiguredByArgsDto, SystemIdentityPermissionRoleConnectionDto, SystemIdentityPermissionRoleDto, SystemIdentityPermissionRoleEdgeDto, SystemIdentityPermissionRoleInputDto, SystemIdentityPermissionRoleInputUpdateDto, SystemIdentityPermissionRoleMutationsCreateArgsDto, SystemIdentityPermissionRoleMutationsDto, SystemIdentityPermissionRoleMutationsUpdateArgsDto, SystemIdentityPermissionRoleRelatesFromArgsDto, SystemIdentityPermissionRoleRelatesToArgsDto, SystemIdentityPermissionRoleTaggedByArgsDto, SystemIdentityPermissionRoleUpdateDto, SystemIdentityPermissionRoleUpdateMessageDto, SystemIdentityPermissionTaggedByArgsDto, SystemIdentityPermissionUpdateDto, SystemIdentityPermissionUpdateMessageDto, SystemIdentityPersistedGrantAssociationsArgsDto, SystemIdentityPersistedGrantConfiguredByArgsDto, SystemIdentityPersistedGrantConnectionDto, SystemIdentityPersistedGrantDto, SystemIdentityPersistedGrantEdgeDto, SystemIdentityPersistedGrantInputDto, SystemIdentityPersistedGrantInputUpdateDto, SystemIdentityPersistedGrantMutationsCreateArgsDto, SystemIdentityPersistedGrantMutationsDto, SystemIdentityPersistedGrantMutationsUpdateArgsDto, SystemIdentityPersistedGrantRelatesFromArgsDto, SystemIdentityPersistedGrantRelatesToArgsDto, SystemIdentityPersistedGrantTaggedByArgsDto, SystemIdentityPersistedGrantUpdateDto, SystemIdentityPersistedGrantUpdateMessageDto, SystemIdentityResourceAssociationsArgsDto, SystemIdentityResourceConfiguredByArgsDto, SystemIdentityResourceConnectionDto, SystemIdentityResourceDto, SystemIdentityResourceEdgeDto, SystemIdentityResourceInterfaceConfiguredByArgsDto, SystemIdentityResourceInterfaceDto, SystemIdentityResourceInterfaceRelatesFromArgsDto, SystemIdentityResourceInterfaceRelatesToArgsDto, SystemIdentityResourceInterfaceTaggedByArgsDto, SystemIdentityResourceRelatesFromArgsDto, SystemIdentityResourceRelatesToArgsDto, SystemIdentityResourceTaggedByArgsDto, SystemIdentityResourceUpdateDto, SystemIdentityResourceUpdateMessageDto, SystemIdentityRoleAssociationsArgsDto, SystemIdentityRoleClaimDto, SystemIdentityRoleClaimInputDto, SystemIdentityRoleConfiguredByArgsDto, SystemIdentityRoleConnectionDto, SystemIdentityRoleDto, SystemIdentityRoleEdgeDto, SystemIdentityRoleInputDto, SystemIdentityRoleInputUpdateDto, SystemIdentityRoleMutationsCreateArgsDto, SystemIdentityRoleMutationsDto, SystemIdentityRoleMutationsUpdateArgsDto, SystemIdentityRoleRelatesFromArgsDto, SystemIdentityRoleRelatesToArgsDto, SystemIdentityRoleTaggedByArgsDto, SystemIdentityRoleUpdateDto, SystemIdentityRoleUpdateMessageDto, SystemIdentitySecretDto, SystemIdentitySecretInputDto, SystemIdentityUserAssociationsArgsDto, SystemIdentityUserClaimDto, SystemIdentityUserClaimInputDto, SystemIdentityUserConfiguredByArgsDto, SystemIdentityUserConnectionDto, SystemIdentityUserDto, SystemIdentityUserEdgeDto, SystemIdentityUserInputDto, SystemIdentityUserInputUpdateDto, SystemIdentityUserLoginDto, SystemIdentityUserLoginInputDto, SystemIdentityUserMutationsCreateArgsDto, SystemIdentityUserMutationsDto, SystemIdentityUserMutationsUpdateArgsDto, SystemIdentityUserRelatesFromArgsDto, SystemIdentityUserRelatesToArgsDto, SystemIdentityUserTaggedByArgsDto, SystemIdentityUserTokenDto, SystemIdentityUserTokenInputDto, SystemIdentityUserUpdateDto, SystemIdentityUserUpdateMessageDto, SystemMigrationHistoryAssociationsArgsDto, SystemMigrationHistoryConfiguredByArgsDto, SystemMigrationHistoryConnectionDto, SystemMigrationHistoryDto, SystemMigrationHistoryEdgeDto, SystemMigrationHistoryInputDto, SystemMigrationHistoryInputUpdateDto, SystemMigrationHistoryMutationsCreateArgsDto, SystemMigrationHistoryMutationsDto, SystemMigrationHistoryMutationsUpdateArgsDto, SystemMigrationHistoryRelatesFromArgsDto, SystemMigrationHistoryRelatesToArgsDto, SystemMigrationHistoryTaggedByArgsDto, SystemMigrationHistoryUpdateDto, SystemMigrationHistoryUpdateMessageDto, SystemNotificationCssTemplateConfigurationAssociationsArgsDto, SystemNotificationCssTemplateConfigurationConfiguredByArgsDto, SystemNotificationCssTemplateConfigurationConnectionDto, SystemNotificationCssTemplateConfigurationDto, SystemNotificationCssTemplateConfigurationEdgeDto, SystemNotificationCssTemplateConfigurationInputDto, SystemNotificationCssTemplateConfigurationInputUpdateDto, SystemNotificationCssTemplateConfigurationMutationsCreateArgsDto, SystemNotificationCssTemplateConfigurationMutationsDto, SystemNotificationCssTemplateConfigurationMutationsUpdateArgsDto, SystemNotificationCssTemplateConfigurationRelatesFromArgsDto, SystemNotificationCssTemplateConfigurationRelatesToArgsDto, SystemNotificationCssTemplateConfigurationTaggedByArgsDto, SystemNotificationCssTemplateConfigurationUpdateDto, SystemNotificationCssTemplateConfigurationUpdateMessageDto, SystemNotificationCssTemplateConfigurationUsedByArgsDto, SystemNotificationEventAssociationsArgsDto, SystemNotificationEventConfiguredByArgsDto, SystemNotificationEventConnectionDto, SystemNotificationEventDto, SystemNotificationEventEdgeDto, SystemNotificationEventInputDto, SystemNotificationEventInputUpdateDto, SystemNotificationEventMutationsCreateArgsDto, SystemNotificationEventMutationsDto, SystemNotificationEventMutationsUpdateArgsDto, SystemNotificationEventRelatesFromArgsDto, SystemNotificationEventRelatesToArgsDto, SystemNotificationEventTaggedByArgsDto, SystemNotificationEventUpdateDto, SystemNotificationEventUpdateMessageDto, SystemNotificationNotificationTemplateAssociationsArgsDto, SystemNotificationNotificationTemplateConfiguredByArgsDto, SystemNotificationNotificationTemplateConnectionDto, SystemNotificationNotificationTemplateDto, SystemNotificationNotificationTemplateEdgeDto, SystemNotificationNotificationTemplateInputDto, SystemNotificationNotificationTemplateInputUpdateDto, SystemNotificationNotificationTemplateMutationsCreateArgsDto, SystemNotificationNotificationTemplateMutationsDto, SystemNotificationNotificationTemplateMutationsUpdateArgsDto, SystemNotificationNotificationTemplateRelatesFromArgsDto, SystemNotificationNotificationTemplateRelatesToArgsDto, SystemNotificationNotificationTemplateTaggedByArgsDto, SystemNotificationNotificationTemplateUpdateDto, SystemNotificationNotificationTemplateUpdateMessageDto, SystemNotificationStatefulEventAssociationsArgsDto, SystemNotificationStatefulEventConfiguredByArgsDto, SystemNotificationStatefulEventConnectionDto, SystemNotificationStatefulEventDto, SystemNotificationStatefulEventEdgeDto, SystemNotificationStatefulEventInputDto, SystemNotificationStatefulEventInputUpdateDto, SystemNotificationStatefulEventMutationsCreateArgsDto, SystemNotificationStatefulEventMutationsDto, SystemNotificationStatefulEventMutationsUpdateArgsDto, SystemNotificationStatefulEventRelatesFromArgsDto, SystemNotificationStatefulEventRelatesToArgsDto, SystemNotificationStatefulEventTaggedByArgsDto, SystemNotificationStatefulEventUpdateDto, SystemNotificationStatefulEventUpdateMessageDto, SystemPersistentQueryAssociationsArgsDto, SystemPersistentQueryConfiguredByArgsDto, SystemPersistentQueryConnectionDto, SystemPersistentQueryDto, SystemPersistentQueryEdgeDto, SystemPersistentQueryInterfaceConfiguredByArgsDto, SystemPersistentQueryInterfaceDto, SystemPersistentQueryInterfaceRelatesFromArgsDto, SystemPersistentQueryInterfaceRelatesToArgsDto, SystemPersistentQueryInterfaceTaggedByArgsDto, SystemPersistentQueryRelatesFromArgsDto, SystemPersistentQueryRelatesToArgsDto, SystemPersistentQueryTaggedByArgsDto, SystemPersistentQueryUpdateDto, SystemPersistentQueryUpdateMessageDto, SystemQueryAssociationsArgsDto, SystemQueryConfiguredByArgsDto, SystemQueryConnectionDto, SystemQueryDto, SystemQueryEdgeDto, SystemQueryInputDto, SystemQueryInputUpdateDto, SystemQueryMutationsCreateArgsDto, SystemQueryMutationsDto, SystemQueryMutationsUpdateArgsDto, SystemQueryRelatesFromArgsDto, SystemQueryRelatesToArgsDto, SystemQueryTaggedByArgsDto, SystemQueryUpdateDto, SystemQueryUpdateMessageDto, SystemReportingConnectionInfoAssociationsArgsDto, SystemReportingConnectionInfoConfiguredByArgsDto, SystemReportingConnectionInfoConnectionDto, SystemReportingConnectionInfoDto, SystemReportingConnectionInfoEdgeDto, SystemReportingConnectionInfoInputDto, SystemReportingConnectionInfoInputUpdateDto, SystemReportingConnectionInfoMutationsCreateArgsDto, SystemReportingConnectionInfoMutationsDto, SystemReportingConnectionInfoMutationsUpdateArgsDto, SystemReportingConnectionInfoRelatesFromArgsDto, SystemReportingConnectionInfoRelatesToArgsDto, SystemReportingConnectionInfoTaggedByArgsDto, SystemReportingConnectionInfoUpdateDto, SystemReportingConnectionInfoUpdateMessageDto, SystemReportingConnectionInfoUsedByArgsDto, SystemReportingFileSystemContainerAssociationsArgsDto, SystemReportingFileSystemContainerConfiguredByArgsDto, SystemReportingFileSystemContainerConnectionDto, SystemReportingFileSystemContainerDto, SystemReportingFileSystemContainerEdgeDto, SystemReportingFileSystemContainerInterfaceConfiguredByArgsDto, SystemReportingFileSystemContainerInterfaceDto, SystemReportingFileSystemContainerInterfaceParentArgsDto, SystemReportingFileSystemContainerInterfaceRelatesFromArgsDto, SystemReportingFileSystemContainerInterfaceRelatesToArgsDto, SystemReportingFileSystemContainerInterfaceTaggedByArgsDto, SystemReportingFileSystemContainerParentArgsDto, SystemReportingFileSystemContainerRelatesFromArgsDto, SystemReportingFileSystemContainerRelatesToArgsDto, SystemReportingFileSystemContainerTaggedByArgsDto, SystemReportingFileSystemContainerUpdateDto, SystemReportingFileSystemContainerUpdateMessageDto, SystemReportingFileSystemContainer_ChildrenUnionConnectionDto, SystemReportingFileSystemContainer_ChildrenUnionDto, SystemReportingFileSystemContainer_ChildrenUnionEdgeDto, SystemReportingFileSystemEntityAssociationsArgsDto, SystemReportingFileSystemEntityConfiguredByArgsDto, SystemReportingFileSystemEntityConnectionDto, SystemReportingFileSystemEntityDto, SystemReportingFileSystemEntityEdgeDto, SystemReportingFileSystemEntityInterfaceConfiguredByArgsDto, SystemReportingFileSystemEntityInterfaceDto, SystemReportingFileSystemEntityInterfaceRelatesFromArgsDto, SystemReportingFileSystemEntityInterfaceRelatesToArgsDto, SystemReportingFileSystemEntityInterfaceTaggedByArgsDto, SystemReportingFileSystemEntityRelatesFromArgsDto, SystemReportingFileSystemEntityRelatesToArgsDto, SystemReportingFileSystemEntityTaggedByArgsDto, SystemReportingFileSystemEntityUpdateDto, SystemReportingFileSystemEntityUpdateMessageDto, SystemReportingFileSystemItemAssociationsArgsDto, SystemReportingFileSystemItemConfiguredByArgsDto, SystemReportingFileSystemItemConnectionDto, SystemReportingFileSystemItemDto, SystemReportingFileSystemItemEdgeDto, SystemReportingFileSystemItemInputDto, SystemReportingFileSystemItemInputUpdateDto, SystemReportingFileSystemItemMutationsCreateArgsDto, SystemReportingFileSystemItemMutationsDto, SystemReportingFileSystemItemMutationsUpdateArgsDto, SystemReportingFileSystemItemParentArgsDto, SystemReportingFileSystemItemRelatesFromArgsDto, SystemReportingFileSystemItemRelatesToArgsDto, SystemReportingFileSystemItemTaggedByArgsDto, SystemReportingFileSystemItemUpdateDto, SystemReportingFileSystemItemUpdateMessageDto, SystemReportingFolderAssociationsArgsDto, SystemReportingFolderChildrenArgsDto, SystemReportingFolderConfiguredByArgsDto, SystemReportingFolderConnectionDto, SystemReportingFolderDto, SystemReportingFolderEdgeDto, SystemReportingFolderInputDto, SystemReportingFolderInputUpdateDto, SystemReportingFolderMutationsCreateArgsDto, SystemReportingFolderMutationsDto, SystemReportingFolderMutationsUpdateArgsDto, SystemReportingFolderParentArgsDto, SystemReportingFolderRelatesFromArgsDto, SystemReportingFolderRelatesToArgsDto, SystemReportingFolderRootAssociationsArgsDto, SystemReportingFolderRootChildrenArgsDto, SystemReportingFolderRootConfiguredByArgsDto, SystemReportingFolderRootConnectionDto, SystemReportingFolderRootDto, SystemReportingFolderRootEdgeDto, SystemReportingFolderRootInputDto, SystemReportingFolderRootInputUpdateDto, SystemReportingFolderRootMutationsCreateArgsDto, SystemReportingFolderRootMutationsDto, SystemReportingFolderRootMutationsUpdateArgsDto, SystemReportingFolderRootRelatesFromArgsDto, SystemReportingFolderRootRelatesToArgsDto, SystemReportingFolderRootTaggedByArgsDto, SystemReportingFolderRootUpdateDto, SystemReportingFolderRootUpdateMessageDto, SystemReportingFolderTaggedByArgsDto, SystemReportingFolderUpdateDto, SystemReportingFolderUpdateMessageDto, SystemReportingFolder_ParentUnionConnectionDto, SystemReportingFolder_ParentUnionDto, SystemReportingFolder_ParentUnionEdgeDto, SystemSimpleRtQueryAssociationsArgsDto, SystemSimpleRtQueryConfiguredByArgsDto, SystemSimpleRtQueryConnectionDto, SystemSimpleRtQueryDto, SystemSimpleRtQueryEdgeDto, SystemSimpleRtQueryInputDto, SystemSimpleRtQueryInputUpdateDto, SystemSimpleRtQueryMutationsCreateArgsDto, SystemSimpleRtQueryMutationsDto, SystemSimpleRtQueryMutationsUpdateArgsDto, SystemSimpleRtQueryRelatesFromArgsDto, SystemSimpleRtQueryRelatesToArgsDto, SystemSimpleRtQueryTaggedByArgsDto, SystemSimpleRtQueryUpdateDto, SystemSimpleRtQueryUpdateMessageDto, SystemSortOrderItemDto, SystemSortOrderItemInputDto, SystemTenantAssociationsArgsDto, SystemTenantConfigurationAssociationsArgsDto, SystemTenantConfigurationConfiguredByArgsDto, SystemTenantConfigurationConnectionDto, SystemTenantConfigurationDto, SystemTenantConfigurationEdgeDto, SystemTenantConfigurationInputDto, SystemTenantConfigurationInputUpdateDto, SystemTenantConfigurationMutationsCreateArgsDto, SystemTenantConfigurationMutationsDto, SystemTenantConfigurationMutationsUpdateArgsDto, SystemTenantConfigurationRelatesFromArgsDto, SystemTenantConfigurationRelatesToArgsDto, SystemTenantConfigurationTaggedByArgsDto, SystemTenantConfigurationUpdateDto, SystemTenantConfigurationUpdateMessageDto, SystemTenantConfigurationUsedByArgsDto, SystemTenantConfiguredByArgsDto, SystemTenantConnectionDto, SystemTenantDto, SystemTenantEdgeDto, SystemTenantInputDto, SystemTenantInputUpdateDto, SystemTenantModeConfigurationAssociationsArgsDto, SystemTenantModeConfigurationConfiguredByArgsDto, SystemTenantModeConfigurationConnectionDto, SystemTenantModeConfigurationDto, SystemTenantModeConfigurationEdgeDto, SystemTenantModeConfigurationInputDto, SystemTenantModeConfigurationInputUpdateDto, SystemTenantModeConfigurationMutationsCreateArgsDto, SystemTenantModeConfigurationMutationsDto, SystemTenantModeConfigurationMutationsUpdateArgsDto, SystemTenantModeConfigurationRelatesFromArgsDto, SystemTenantModeConfigurationRelatesToArgsDto, SystemTenantModeConfigurationTaggedByArgsDto, SystemTenantModeConfigurationUpdateDto, SystemTenantModeConfigurationUpdateMessageDto, SystemTenantModeConfigurationUsedByArgsDto, SystemTenantMutationsCreateArgsDto, SystemTenantMutationsDto, SystemTenantMutationsUpdateArgsDto, SystemTenantRelatesFromArgsDto, SystemTenantRelatesToArgsDto, SystemTenantTaggedByArgsDto, SystemTenantUpdateDto, SystemTenantUpdateMessageDto, SystemTextSearchFilterDto, SystemTextSearchFilterInputDto, SystemUiDashboardAssociationsArgsDto, SystemUiDashboardChildrenArgsDto, SystemUiDashboardConfiguredByArgsDto, SystemUiDashboardConnectionDto, SystemUiDashboardDto, SystemUiDashboardEdgeDto, SystemUiDashboardInputDto, SystemUiDashboardInputUpdateDto, SystemUiDashboardMutationsCreateArgsDto, SystemUiDashboardMutationsDto, SystemUiDashboardMutationsUpdateArgsDto, SystemUiDashboardRelatesFromArgsDto, SystemUiDashboardRelatesToArgsDto, SystemUiDashboardTaggedByArgsDto, SystemUiDashboardUpdateDto, SystemUiDashboardUpdateMessageDto, SystemUiDashboardWidgetAssociationsArgsDto, SystemUiDashboardWidgetConfiguredByArgsDto, SystemUiDashboardWidgetConnectionDto, SystemUiDashboardWidgetDto, SystemUiDashboardWidgetEdgeDto, SystemUiDashboardWidgetInputDto, SystemUiDashboardWidgetInputUpdateDto, SystemUiDashboardWidgetMutationsCreateArgsDto, SystemUiDashboardWidgetMutationsDto, SystemUiDashboardWidgetMutationsUpdateArgsDto, SystemUiDashboardWidgetParentArgsDto, SystemUiDashboardWidgetRelatesFromArgsDto, SystemUiDashboardWidgetRelatesToArgsDto, SystemUiDashboardWidgetTaggedByArgsDto, SystemUiDashboardWidgetUpdateDto, SystemUiDashboardWidgetUpdateMessageDto, SystemUiDashboardWidget_ChildrenUnionConnectionDto, SystemUiDashboardWidget_ChildrenUnionDto, SystemUiDashboardWidget_ChildrenUnionEdgeDto, SystemUiDashboard_ParentUnionConnectionDto, SystemUiDashboard_ParentUnionDto, SystemUiDashboard_ParentUnionEdgeDto, SystemUiProcessDiagramAssociationsArgsDto, SystemUiProcessDiagramConfiguredByArgsDto, SystemUiProcessDiagramConnectionDto, SystemUiProcessDiagramDto, SystemUiProcessDiagramEdgeDto, SystemUiProcessDiagramInputDto, SystemUiProcessDiagramInputUpdateDto, SystemUiProcessDiagramMutationsCreateArgsDto, SystemUiProcessDiagramMutationsDto, SystemUiProcessDiagramMutationsUpdateArgsDto, SystemUiProcessDiagramRelatesFromArgsDto, SystemUiProcessDiagramRelatesToArgsDto, SystemUiProcessDiagramTaggedByArgsDto, SystemUiProcessDiagramUpdateDto, SystemUiProcessDiagramUpdateMessageDto, SystemUiSymbolDefinitionAssociationsArgsDto, SystemUiSymbolDefinitionConfiguredByArgsDto, SystemUiSymbolDefinitionConnectionDto, SystemUiSymbolDefinitionDto, SystemUiSymbolDefinitionEdgeDto, SystemUiSymbolDefinitionInputDto, SystemUiSymbolDefinitionInputUpdateDto, SystemUiSymbolDefinitionMutationsCreateArgsDto, SystemUiSymbolDefinitionMutationsDto, SystemUiSymbolDefinitionMutationsUpdateArgsDto, SystemUiSymbolDefinitionParentArgsDto, SystemUiSymbolDefinitionRelatesFromArgsDto, SystemUiSymbolDefinitionRelatesToArgsDto, SystemUiSymbolDefinitionTaggedByArgsDto, SystemUiSymbolDefinitionUpdateDto, SystemUiSymbolDefinitionUpdateMessageDto, SystemUiSymbolDefinition_ChildrenUnionConnectionDto, SystemUiSymbolDefinition_ChildrenUnionDto, SystemUiSymbolDefinition_ChildrenUnionEdgeDto, SystemUiSymbolLibraryAssociationsArgsDto, SystemUiSymbolLibraryChildrenArgsDto, SystemUiSymbolLibraryConfiguredByArgsDto, SystemUiSymbolLibraryConnectionDto, SystemUiSymbolLibraryDto, SystemUiSymbolLibraryEdgeDto, SystemUiSymbolLibraryInputDto, SystemUiSymbolLibraryInputUpdateDto, SystemUiSymbolLibraryMutationsCreateArgsDto, SystemUiSymbolLibraryMutationsDto, SystemUiSymbolLibraryMutationsUpdateArgsDto, SystemUiSymbolLibraryRelatesFromArgsDto, SystemUiSymbolLibraryRelatesToArgsDto, SystemUiSymbolLibraryTaggedByArgsDto, SystemUiSymbolLibraryUpdateDto, SystemUiSymbolLibraryUpdateMessageDto, SystemUiSymbolLibrary_ParentUnionConnectionDto, SystemUiSymbolLibrary_ParentUnionDto, SystemUiSymbolLibrary_ParentUnionEdgeDto, SystemUiuiElementAssociationsArgsDto, SystemUiuiElementConfiguredByArgsDto, SystemUiuiElementConnectionDto, SystemUiuiElementDto, SystemUiuiElementEdgeDto, SystemUiuiElementInterfaceConfiguredByArgsDto, SystemUiuiElementInterfaceDto, SystemUiuiElementInterfaceRelatesFromArgsDto, SystemUiuiElementInterfaceRelatesToArgsDto, SystemUiuiElementInterfaceTaggedByArgsDto, SystemUiuiElementRelatesFromArgsDto, SystemUiuiElementRelatesToArgsDto, SystemUiuiElementTaggedByArgsDto, SystemUiuiElementUpdateDto, SystemUiuiElementUpdateMessageDto, TenantDto, TenantIdProvider, TusUploadOptions, TusUploadResult, UserDto };
30672
+ export { AggregationInputTypesDto, AggregationTypeDto, AggregationTypesDto, AssetRepoGraphQlDataSource, AssetRepoService, AssociationModOptionsDto, AttributeSelectorService, AttributeValueTypeDto, BasicLegalEntityTypeDto, BasicSalutationDto, BasicTypeOfTelephoneBasicDto, BasicTypeOfTelephoneEnhancedDto, BasicUnitOfMeasureDto, BotService, CONFIGURATION_SERVICE, CkExtensionUpdateOperationsDto, CkModelService, CkTypeAttributeService, CkTypeMetaData, CkTypeSelectorService, CommunicationService, DeleteStrategiesDto, DeploymentState, EnergyCommunityBillingCycleDto, EnergyCommunityBillingDocumentStateDto, EnergyCommunityBillingTypeDto, EnergyCommunityDataQualityDto, EnergyCommunityFacilityTypeDto, EnergyCommunityProductionTypeDto, EnergyCommunityStateDto, EnergyCommunityTaxProcedureCreditNoteDto, EnvironmentGoalStateDto, FieldFilterOperatorsDto, GetCkModelByIdDocumentDto, GetCkModelByIdDtoGQL, GetCkRecordAttributesDocumentDto, GetCkRecordAttributesDtoGQL, GetCkTypeAttributesDocumentDto, GetCkTypeAttributesDtoGQL, GetCkTypeAvailableQueryColumnsDocumentDto, GetCkTypeAvailableQueryColumnsDtoGQL, GetCkTypesDocumentDto, GetCkTypesDtoGQL, GetDerivedCkTypesDocumentDto, GetDerivedCkTypesDtoGQL, GetEntitiesByCkTypeDocumentDto, GetEntitiesByCkTypeDtoGQL, GraphDirectionDto, GraphQL, GraphQLCloneIgnoredProperties, GraphQLCommonIgnoredProperties, GraphQlDataSource, HealthService, HealthStatus, IdentityService, ImportStrategyDto, IndustryBasicAlarmPriorityDto, IndustryBasicAlarmSourceTypeDto, IndustryBasicAlarmStateDto, IndustryBasicAlarmTypeDto, IndustryBasicIecDataTypeDto, IndustryBasicMachineCapabilitiesDto, IndustryBasicMachineStateDto, IndustryMaintenanceAggregationTypeDto, IndustryMaintenanceCostCategoryDto, IndustryMaintenanceEnergyBalanceGroupDto, IndustryMaintenanceEnergyBalanceProductDto, IndustryMaintenanceEnergyBalanceUnitDto, IndustryMaintenanceOrderPriorityDto, IndustryMaintenanceOrderStateDto, IndustryMaintenanceOrderTypeDto, IndustryMaintenanceServiceTypeDto, JobManagementService, LevelMetaData, LoggerSeverity, ModelStateDto, MultiplicitiesDto, NavigationFilterModeDto, OctoErrorLink, OctoGraphQLServiceBase, OctoSdkDemoCustomerStatusDto, OctoSdkDemoNetworkOperatorDto, OctoSdkDemoOperatingStatusDto, OctoServiceOptions, OctoServicesModule, PagedGraphResultDto, ProgressValue, ProgressWindowService, QueryModeDto, RtAssociationMetaData, RuntimeEntityDialogDataSource, RuntimeEntitySelectDataSource, SearchFilterTypesDto, SortOrderDto, SortOrdersDto, SystemAggregationTypesDto, SystemCommunicationCommunicationStateDto, SystemCommunicationConfigurationStateDto, SystemCommunicationDeploymentStateDto, SystemCommunicationPipelineExecutionStatusDto, SystemCommunicationPipelineTriggerTypeDto, SystemEnvironmentModesDto, SystemFieldFilterOperatorDto, SystemIdentityTokenExpirationDto, SystemIdentityTokenTypeDto, SystemIdentityTokenUsageDto, SystemMaintenanceLevelsDto, SystemNavigationFilterModesDto, SystemNotificationEventLevelsDto, SystemNotificationEventSourcesDto, SystemNotificationEventStatesDto, SystemNotificationNotificationTypesDto, SystemNotificationRenderingTypesDto, SystemQueryTypesDto, SystemSortOrdersDto, TENANT_ID_PROVIDER, TusUploadService, UpdateTypeDto, result as possibleTypes, provideOctoServices };
30673
+ export type { AddInConfiguration, AdminPanelConfigurationDto, AggregationDto, AttributeArgumentDto, AttributeItem, AttributeSelectorResult, BasicAddressDto, BasicAddressInputDto, BasicAmountDto, BasicAmountInputDto, BasicAssetAssociationsArgsDto, BasicAssetChildrenArgsDto, BasicAssetConfiguredByArgsDto, BasicAssetConnectionDto, BasicAssetDto, BasicAssetEdgeDto, BasicAssetEventsArgsDto, BasicAssetInputDto, BasicAssetInputUpdateDto, BasicAssetMutationsCreateArgsDto, BasicAssetMutationsDto, BasicAssetMutationsUpdateArgsDto, BasicAssetOrdersArgsDto, BasicAssetParentArgsDto, BasicAssetRelatesFromArgsDto, BasicAssetRelatesToArgsDto, BasicAssetTaggedByArgsDto, BasicAssetUpdateDto, BasicAssetUpdateMessageDto, BasicAsset_EventSourceUnionConnectionDto, BasicAsset_EventSourceUnionDto, BasicAsset_EventSourceUnionEdgeDto, BasicAsset_RelatesFromUnionConnectionDto, BasicAsset_RelatesFromUnionDto, BasicAsset_RelatesFromUnionEdgeDto, BasicBankAccountDto, BasicBankAccountInputDto, BasicCityAssociationsArgsDto, BasicCityChildrenArgsDto, BasicCityConfiguredByArgsDto, BasicCityConnectionDto, BasicCityDto, BasicCityEdgeDto, BasicCityInputDto, BasicCityInputUpdateDto, BasicCityMutationsCreateArgsDto, BasicCityMutationsDto, BasicCityMutationsUpdateArgsDto, BasicCityOrdersArgsDto, BasicCityParentArgsDto, BasicCityRelatesFromArgsDto, BasicCityRelatesToArgsDto, BasicCityTaggedByArgsDto, BasicCityUpdateDto, BasicCityUpdateMessageDto, BasicContactDto, BasicContactInputDto, BasicCountryAssociationsArgsDto, BasicCountryChildrenArgsDto, BasicCountryConfiguredByArgsDto, BasicCountryConnectionDto, BasicCountryDto, BasicCountryEdgeDto, BasicCountryInputDto, BasicCountryInputUpdateDto, BasicCountryMutationsCreateArgsDto, BasicCountryMutationsDto, BasicCountryMutationsUpdateArgsDto, BasicCountryOrdersArgsDto, BasicCountryParentArgsDto, BasicCountryRelatesFromArgsDto, BasicCountryRelatesToArgsDto, BasicCountryTaggedByArgsDto, BasicCountryUpdateDto, BasicCountryUpdateMessageDto, BasicDistrictAssociationsArgsDto, BasicDistrictChildrenArgsDto, BasicDistrictConfiguredByArgsDto, BasicDistrictConnectionDto, BasicDistrictDto, BasicDistrictEdgeDto, BasicDistrictInputDto, BasicDistrictInputUpdateDto, BasicDistrictMutationsCreateArgsDto, BasicDistrictMutationsDto, BasicDistrictMutationsUpdateArgsDto, BasicDistrictOrdersArgsDto, BasicDistrictParentArgsDto, BasicDistrictRelatesFromArgsDto, BasicDistrictRelatesToArgsDto, BasicDistrictTaggedByArgsDto, BasicDistrictUpdateDto, BasicDistrictUpdateMessageDto, BasicDocumentAssociationsArgsDto, BasicDocumentConfiguredByArgsDto, BasicDocumentConnectionDto, BasicDocumentDto, BasicDocumentEdgeDto, BasicDocumentInterfaceConfiguredByArgsDto, BasicDocumentInterfaceDto, BasicDocumentInterfaceRelatesFromArgsDto, BasicDocumentInterfaceRelatesToArgsDto, BasicDocumentInterfaceTaggedByArgsDto, BasicDocumentRelatesFromArgsDto, BasicDocumentRelatesToArgsDto, BasicDocumentTaggedByArgsDto, BasicDocumentUpdateDto, BasicDocumentUpdateMessageDto, BasicEMailDto, BasicEMailInputDto, BasicEmployeeAssociationsArgsDto, BasicEmployeeConfiguredByArgsDto, BasicEmployeeConnectionDto, BasicEmployeeDto, BasicEmployeeEdgeDto, BasicEmployeeInputDto, BasicEmployeeInputUpdateDto, BasicEmployeeMutationsCreateArgsDto, BasicEmployeeMutationsDto, BasicEmployeeMutationsUpdateArgsDto, BasicEmployeeRelatesFromArgsDto, BasicEmployeeRelatesToArgsDto, BasicEmployeeTaggedByArgsDto, BasicEmployeeUpdateDto, BasicEmployeeUpdateMessageDto, BasicFaxNumberDto, BasicFaxNumberInputDto, BasicMarkingDto, BasicMarkingInputDto, BasicNamePlateDto, BasicNamePlateInputDto, BasicNamedEntityAssociationsArgsDto, BasicNamedEntityConfiguredByArgsDto, BasicNamedEntityConnectionDto, BasicNamedEntityDto, BasicNamedEntityEdgeDto, BasicNamedEntityInterfaceConfiguredByArgsDto, BasicNamedEntityInterfaceDto, BasicNamedEntityInterfaceRelatesFromArgsDto, BasicNamedEntityInterfaceRelatesToArgsDto, BasicNamedEntityInterfaceTaggedByArgsDto, BasicNamedEntityRelatesFromArgsDto, BasicNamedEntityRelatesToArgsDto, BasicNamedEntityTaggedByArgsDto, BasicNamedEntityUpdateDto, BasicNamedEntityUpdateMessageDto, BasicPhoneNumberDto, BasicPhoneNumberInputDto, BasicStateAssociationsArgsDto, BasicStateChildrenArgsDto, BasicStateConfiguredByArgsDto, BasicStateConnectionDto, BasicStateDto, BasicStateEdgeDto, BasicStateInputDto, BasicStateInputUpdateDto, BasicStateMutationsCreateArgsDto, BasicStateMutationsDto, BasicStateMutationsUpdateArgsDto, BasicStateOrdersArgsDto, BasicStateParentArgsDto, BasicStateRelatesFromArgsDto, BasicStateRelatesToArgsDto, BasicStateTaggedByArgsDto, BasicStateUpdateDto, BasicStateUpdateMessageDto, BasicTimeRangeDto, BasicTimeRangeInputDto, BasicTreeAssociationsArgsDto, BasicTreeChildrenArgsDto, BasicTreeConfiguredByArgsDto, BasicTreeConnectionDto, BasicTreeDto, BasicTreeEdgeDto, BasicTreeInputDto, BasicTreeInputUpdateDto, BasicTreeMutationsCreateArgsDto, BasicTreeMutationsDto, BasicTreeMutationsUpdateArgsDto, BasicTreeNodeAssociationsArgsDto, BasicTreeNodeChildrenArgsDto, BasicTreeNodeConfiguredByArgsDto, BasicTreeNodeConnectionDto, BasicTreeNodeDto, BasicTreeNodeEdgeDto, BasicTreeNodeInputDto, BasicTreeNodeInputUpdateDto, BasicTreeNodeMutationsCreateArgsDto, BasicTreeNodeMutationsDto, BasicTreeNodeMutationsUpdateArgsDto, BasicTreeNodeOrdersArgsDto, BasicTreeNodeParentArgsDto, BasicTreeNodeRelatesFromArgsDto, BasicTreeNodeRelatesToArgsDto, BasicTreeNodeTaggedByArgsDto, BasicTreeNodeUpdateDto, BasicTreeNodeUpdateMessageDto, BasicTreeNode_ChildrenUnionConnectionDto, BasicTreeNode_ChildrenUnionDto, BasicTreeNode_ChildrenUnionEdgeDto, BasicTreeNode_MachineUnionConnectionDto, BasicTreeNode_MachineUnionDto, BasicTreeNode_MachineUnionEdgeDto, BasicTreeNode_ParentUnionConnectionDto, BasicTreeNode_ParentUnionDto, BasicTreeNode_ParentUnionEdgeDto, BasicTreeNode_RelatesToUnionConnectionDto, BasicTreeNode_RelatesToUnionDto, BasicTreeNode_RelatesToUnionEdgeDto, BasicTreeRelatesFromArgsDto, BasicTreeRelatesToArgsDto, BasicTreeTaggedByArgsDto, BasicTreeUpdateDto, BasicTreeUpdateMessageDto, BasicTree_ParentUnionConnectionDto, BasicTree_ParentUnionDto, BasicTree_ParentUnionEdgeDto, CkAssociationRoleDto, CkAssociationRoleDtoConnectionDto, CkAssociationRoleDtoEdgeDto, CkAssociationRoleIdDto, CkAttributeDto, CkAttributeDtoConnectionDto, CkAttributeDtoEdgeDto, CkAttributeIdDto, CkAttributeMetaDataDto, CkEnumDto, CkEnumDtoConnectionDto, CkEnumDtoEdgeDto, CkEnumIdDto, CkEnumMutationsDto, CkEnumMutationsUpdateValueExtensionsArgsDto, CkEnumUpdateDto, CkEnumValueDto, CkEnumValueInputDto, CkModelAttributesArgsDto, CkModelDto, CkModelDtoConnectionDto, CkModelDtoEdgeDto, CkModelEnumsArgsDto, CkModelIdDto, CkModelRecordsArgsDto, CkModelTypesArgsDto, CkRecordAttributesArgsDto, CkRecordDerivedRecordTypesArgsDto, CkRecordDto, CkRecordDtoConnectionDto, CkRecordDtoEdgeDto, CkRecordIdDto, CkTypeAssociationDirectionDto, CkTypeAssociationDto, CkTypeAssociationSourceDto, CkTypeAttributeDto, CkTypeAttributeDtoConnectionDto, CkTypeAttributeDtoEdgeDto, CkTypeAttributeInfo, CkTypeAttributesArgsDto, CkTypeAvailableQueryColumnsArgsDto, CkTypeDerivedTypesArgsDto, CkTypeDirectAndIndirectDerivedTypesArgsDto, CkTypeDto, CkTypeDtoConnectionDto, CkTypeDtoEdgeDto, CkTypeIdDto, CkTypeQueryColumnDto, CkTypeQueryColumnDtoConnectionDto, CkTypeQueryColumnDtoEdgeDto, CkTypeSelectorItem, CkTypeSelectorResult, ClientDto, ClientScope, ConfigurationDto, ConstructionKitMutationsDto, ConstructionKitMutationsEnumsArgsDto, ConstructionKitQueryAssociationRolesArgsDto, ConstructionKitQueryAttributesArgsDto, ConstructionKitQueryDto, ConstructionKitQueryEnumsArgsDto, ConstructionKitQueryModelsArgsDto, ConstructionKitQueryRecordsArgsDto, ConstructionKitQueryTypesArgsDto, DebugMessage, DebugPointDataDto, DebugPointNode, DeploymentResultDto, DiagnosticsModel, EnergyCommunityBillingDocumentAssignedToArgsDto, EnergyCommunityBillingDocumentAssociationsArgsDto, EnergyCommunityBillingDocumentChildrenArgsDto, EnergyCommunityBillingDocumentConfiguredByArgsDto, EnergyCommunityBillingDocumentConnectionDto, EnergyCommunityBillingDocumentDto, EnergyCommunityBillingDocumentEdgeDto, EnergyCommunityBillingDocumentInputDto, EnergyCommunityBillingDocumentInputUpdateDto, EnergyCommunityBillingDocumentLineItemAssignedToArgsDto, EnergyCommunityBillingDocumentLineItemAssociationsArgsDto, EnergyCommunityBillingDocumentLineItemConfiguredByArgsDto, EnergyCommunityBillingDocumentLineItemConnectionDto, EnergyCommunityBillingDocumentLineItemDto, EnergyCommunityBillingDocumentLineItemEdgeDto, EnergyCommunityBillingDocumentLineItemInputDto, EnergyCommunityBillingDocumentLineItemInputUpdateDto, EnergyCommunityBillingDocumentLineItemMutationsCreateArgsDto, EnergyCommunityBillingDocumentLineItemMutationsDto, EnergyCommunityBillingDocumentLineItemMutationsUpdateArgsDto, EnergyCommunityBillingDocumentLineItemParentArgsDto, EnergyCommunityBillingDocumentLineItemRelatesFromArgsDto, EnergyCommunityBillingDocumentLineItemRelatesToArgsDto, EnergyCommunityBillingDocumentLineItemTaggedByArgsDto, EnergyCommunityBillingDocumentLineItemUpdateDto, EnergyCommunityBillingDocumentLineItemUpdateMessageDto, EnergyCommunityBillingDocumentLineItem_BillingUnionConnectionDto, EnergyCommunityBillingDocumentLineItem_BillingUnionDto, EnergyCommunityBillingDocumentLineItem_BillingUnionEdgeDto, EnergyCommunityBillingDocumentLineItem_ChildrenUnionConnectionDto, EnergyCommunityBillingDocumentLineItem_ChildrenUnionDto, EnergyCommunityBillingDocumentLineItem_ChildrenUnionEdgeDto, EnergyCommunityBillingDocumentMutationsCreateArgsDto, EnergyCommunityBillingDocumentMutationsDto, EnergyCommunityBillingDocumentMutationsUpdateArgsDto, EnergyCommunityBillingDocumentRelatesFromArgsDto, EnergyCommunityBillingDocumentRelatesToArgsDto, EnergyCommunityBillingDocumentTaggedByArgsDto, EnergyCommunityBillingDocumentUpdateDto, EnergyCommunityBillingDocumentUpdateMessageDto, EnergyCommunityBillingDocument_BillingUnionConnectionDto, EnergyCommunityBillingDocument_BillingUnionDto, EnergyCommunityBillingDocument_BillingUnionEdgeDto, EnergyCommunityBillingDocument_ParentUnionConnectionDto, EnergyCommunityBillingDocument_ParentUnionDto, EnergyCommunityBillingDocument_ParentUnionEdgeDto, EnergyCommunityConsumerAssociationsArgsDto, EnergyCommunityConsumerChildrenArgsDto, EnergyCommunityConsumerConfiguredByArgsDto, EnergyCommunityConsumerConnectionDto, EnergyCommunityConsumerDto, EnergyCommunityConsumerEdgeDto, EnergyCommunityConsumerInputDto, EnergyCommunityConsumerInputUpdateDto, EnergyCommunityConsumerMutationsCreateArgsDto, EnergyCommunityConsumerMutationsDto, EnergyCommunityConsumerMutationsUpdateArgsDto, EnergyCommunityConsumerParentArgsDto, EnergyCommunityConsumerRelatesFromArgsDto, EnergyCommunityConsumerRelatesToArgsDto, EnergyCommunityConsumerTaggedByArgsDto, EnergyCommunityConsumerUpdateDto, EnergyCommunityConsumerUpdateMessageDto, EnergyCommunityCustomerAssociationsArgsDto, EnergyCommunityCustomerBillingArgsDto, EnergyCommunityCustomerConfiguredByArgsDto, EnergyCommunityCustomerConnectionDto, EnergyCommunityCustomerDto, EnergyCommunityCustomerEdgeDto, EnergyCommunityCustomerFacilitiesArgsDto, EnergyCommunityCustomerInputDto, EnergyCommunityCustomerInputUpdateDto, EnergyCommunityCustomerMutationsCreateArgsDto, EnergyCommunityCustomerMutationsDto, EnergyCommunityCustomerMutationsUpdateArgsDto, EnergyCommunityCustomerRelatesFromArgsDto, EnergyCommunityCustomerRelatesToArgsDto, EnergyCommunityCustomerTaggedByArgsDto, EnergyCommunityCustomerUpdateDto, EnergyCommunityCustomerUpdateMessageDto, EnergyCommunityCustomer_AssignedToUnionConnectionDto, EnergyCommunityCustomer_AssignedToUnionDto, EnergyCommunityCustomer_AssignedToUnionEdgeDto, EnergyCommunityCustomer_CustomerUnionConnectionDto, EnergyCommunityCustomer_CustomerUnionDto, EnergyCommunityCustomer_CustomerUnionEdgeDto, EnergyCommunityEdaMessageAssociationsArgsDto, EnergyCommunityEdaMessageConfiguredByArgsDto, EnergyCommunityEdaMessageConnectionDto, EnergyCommunityEdaMessageDto, EnergyCommunityEdaMessageEdgeDto, EnergyCommunityEdaMessageInputDto, EnergyCommunityEdaMessageInputUpdateDto, EnergyCommunityEdaMessageMutationsCreateArgsDto, EnergyCommunityEdaMessageMutationsDto, EnergyCommunityEdaMessageMutationsUpdateArgsDto, EnergyCommunityEdaMessageProcessArgsDto, EnergyCommunityEdaMessageRelatesFromArgsDto, EnergyCommunityEdaMessageRelatesToArgsDto, EnergyCommunityEdaMessageTaggedByArgsDto, EnergyCommunityEdaMessageUpdateDto, EnergyCommunityEdaMessageUpdateMessageDto, EnergyCommunityEdaMessage_MessagesUnionConnectionDto, EnergyCommunityEdaMessage_MessagesUnionDto, EnergyCommunityEdaMessage_MessagesUnionEdgeDto, EnergyCommunityEdaMeteringPointAssociationsArgsDto, EnergyCommunityEdaMeteringPointConfiguredByArgsDto, EnergyCommunityEdaMeteringPointConnectionDto, EnergyCommunityEdaMeteringPointDto, EnergyCommunityEdaMeteringPointEdgeDto, EnergyCommunityEdaMeteringPointInputDto, EnergyCommunityEdaMeteringPointInputUpdateDto, EnergyCommunityEdaMeteringPointMutationsCreateArgsDto, EnergyCommunityEdaMeteringPointMutationsDto, EnergyCommunityEdaMeteringPointMutationsUpdateArgsDto, EnergyCommunityEdaMeteringPointRelatesFromArgsDto, EnergyCommunityEdaMeteringPointRelatesToArgsDto, EnergyCommunityEdaMeteringPointTaggedByArgsDto, EnergyCommunityEdaMeteringPointUpdateDto, EnergyCommunityEdaMeteringPointUpdateMessageDto, EnergyCommunityEdaProcessAssociationsArgsDto, EnergyCommunityEdaProcessConfiguredByArgsDto, EnergyCommunityEdaProcessConnectionDto, EnergyCommunityEdaProcessDto, EnergyCommunityEdaProcessEdgeDto, EnergyCommunityEdaProcessInputDto, EnergyCommunityEdaProcessInputUpdateDto, EnergyCommunityEdaProcessMessagesArgsDto, EnergyCommunityEdaProcessMutationsCreateArgsDto, EnergyCommunityEdaProcessMutationsDto, EnergyCommunityEdaProcessMutationsUpdateArgsDto, EnergyCommunityEdaProcessRelatesFromArgsDto, EnergyCommunityEdaProcessRelatesToArgsDto, EnergyCommunityEdaProcessTaggedByArgsDto, EnergyCommunityEdaProcessUpdateDto, EnergyCommunityEdaProcessUpdateMessageDto, EnergyCommunityEdaProcess_ProcessUnionConnectionDto, EnergyCommunityEdaProcess_ProcessUnionDto, EnergyCommunityEdaProcess_ProcessUnionEdgeDto, EnergyCommunityEnergyPriceAssociationsArgsDto, EnergyCommunityEnergyPriceConfiguredByArgsDto, EnergyCommunityEnergyPriceConnectionDto, EnergyCommunityEnergyPriceDto, EnergyCommunityEnergyPriceEdgeDto, EnergyCommunityEnergyPriceInputDto, EnergyCommunityEnergyPriceInputUpdateDto, EnergyCommunityEnergyPriceMutationsCreateArgsDto, EnergyCommunityEnergyPriceMutationsDto, EnergyCommunityEnergyPriceMutationsUpdateArgsDto, EnergyCommunityEnergyPriceRelatesFromArgsDto, EnergyCommunityEnergyPriceRelatesToArgsDto, EnergyCommunityEnergyPriceTaggedByArgsDto, EnergyCommunityEnergyPriceUpdateDto, EnergyCommunityEnergyPriceUpdateMessageDto, EnergyCommunityEnergyQuantityAssociationsArgsDto, EnergyCommunityEnergyQuantityBillingArgsDto, EnergyCommunityEnergyQuantityConfiguredByArgsDto, EnergyCommunityEnergyQuantityConnectionDto, EnergyCommunityEnergyQuantityDto, EnergyCommunityEnergyQuantityEdgeDto, EnergyCommunityEnergyQuantityInputDto, EnergyCommunityEnergyQuantityInputUpdateDto, EnergyCommunityEnergyQuantityMutationsCreateArgsDto, EnergyCommunityEnergyQuantityMutationsDto, EnergyCommunityEnergyQuantityMutationsUpdateArgsDto, EnergyCommunityEnergyQuantityParentArgsDto, EnergyCommunityEnergyQuantityRelatesFromArgsDto, EnergyCommunityEnergyQuantityRelatesToArgsDto, EnergyCommunityEnergyQuantityTaggedByArgsDto, EnergyCommunityEnergyQuantityUpdateDto, EnergyCommunityEnergyQuantityUpdateMessageDto, EnergyCommunityEnergyQuantity_AssignedToUnionConnectionDto, EnergyCommunityEnergyQuantity_AssignedToUnionDto, EnergyCommunityEnergyQuantity_AssignedToUnionEdgeDto, EnergyCommunityEnergyQuantity_ChildrenUnionConnectionDto, EnergyCommunityEnergyQuantity_ChildrenUnionDto, EnergyCommunityEnergyQuantity_ChildrenUnionEdgeDto, EnergyCommunityMeteringPointAssociationsArgsDto, EnergyCommunityMeteringPointChildrenArgsDto, EnergyCommunityMeteringPointConfiguredByArgsDto, EnergyCommunityMeteringPointConnectionDto, EnergyCommunityMeteringPointDto, EnergyCommunityMeteringPointEdgeDto, EnergyCommunityMeteringPointInterfaceChildrenArgsDto, EnergyCommunityMeteringPointInterfaceConfiguredByArgsDto, EnergyCommunityMeteringPointInterfaceDto, EnergyCommunityMeteringPointInterfaceParentArgsDto, EnergyCommunityMeteringPointInterfaceRelatesFromArgsDto, EnergyCommunityMeteringPointInterfaceRelatesToArgsDto, EnergyCommunityMeteringPointInterfaceTaggedByArgsDto, EnergyCommunityMeteringPointParentArgsDto, EnergyCommunityMeteringPointRelatesFromArgsDto, EnergyCommunityMeteringPointRelatesToArgsDto, EnergyCommunityMeteringPointTaggedByArgsDto, EnergyCommunityMeteringPointUpdateDto, EnergyCommunityMeteringPointUpdateMessageDto, EnergyCommunityMeteringPoint_ChildrenUnionConnectionDto, EnergyCommunityMeteringPoint_ChildrenUnionDto, EnergyCommunityMeteringPoint_ChildrenUnionEdgeDto, EnergyCommunityMeteringPoint_ParentUnionConnectionDto, EnergyCommunityMeteringPoint_ParentUnionDto, EnergyCommunityMeteringPoint_ParentUnionEdgeDto, EnergyCommunityOperatingFacilityAssociationsArgsDto, EnergyCommunityOperatingFacilityChildrenArgsDto, EnergyCommunityOperatingFacilityConfiguredByArgsDto, EnergyCommunityOperatingFacilityConnectionDto, EnergyCommunityOperatingFacilityCustomerArgsDto, EnergyCommunityOperatingFacilityDto, EnergyCommunityOperatingFacilityEdgeDto, EnergyCommunityOperatingFacilityInputDto, EnergyCommunityOperatingFacilityInputUpdateDto, EnergyCommunityOperatingFacilityMutationsCreateArgsDto, EnergyCommunityOperatingFacilityMutationsDto, EnergyCommunityOperatingFacilityMutationsUpdateArgsDto, EnergyCommunityOperatingFacilityOrdersArgsDto, EnergyCommunityOperatingFacilityParentArgsDto, EnergyCommunityOperatingFacilityRelatesFromArgsDto, EnergyCommunityOperatingFacilityRelatesToArgsDto, EnergyCommunityOperatingFacilityTaggedByArgsDto, EnergyCommunityOperatingFacilityUpdateDto, EnergyCommunityOperatingFacilityUpdateMessageDto, EnergyCommunityOperatingFacility_FacilitiesUnionConnectionDto, EnergyCommunityOperatingFacility_FacilitiesUnionDto, EnergyCommunityOperatingFacility_FacilitiesUnionEdgeDto, EnergyCommunityOperatingFacility_ParentUnionConnectionDto, EnergyCommunityOperatingFacility_ParentUnionDto, EnergyCommunityOperatingFacility_ParentUnionEdgeDto, EnergyCommunityProducerAssociationsArgsDto, EnergyCommunityProducerChildrenArgsDto, EnergyCommunityProducerConfiguredByArgsDto, EnergyCommunityProducerConnectionDto, EnergyCommunityProducerDto, EnergyCommunityProducerEdgeDto, EnergyCommunityProducerInputDto, EnergyCommunityProducerInputUpdateDto, EnergyCommunityProducerMutationsCreateArgsDto, EnergyCommunityProducerMutationsDto, EnergyCommunityProducerMutationsUpdateArgsDto, EnergyCommunityProducerParentArgsDto, EnergyCommunityProducerRelatesFromArgsDto, EnergyCommunityProducerRelatesToArgsDto, EnergyCommunityProducerTaggedByArgsDto, EnergyCommunityProducerUpdateDto, EnergyCommunityProducerUpdateMessageDto, EnvironmentEnvironmentalGoalAssociationsArgsDto, EnvironmentEnvironmentalGoalConfiguredByArgsDto, EnvironmentEnvironmentalGoalConnectionDto, EnvironmentEnvironmentalGoalDto, EnvironmentEnvironmentalGoalEdgeDto, EnvironmentEnvironmentalGoalInputDto, EnvironmentEnvironmentalGoalInputUpdateDto, EnvironmentEnvironmentalGoalMutationsCreateArgsDto, EnvironmentEnvironmentalGoalMutationsDto, EnvironmentEnvironmentalGoalMutationsUpdateArgsDto, EnvironmentEnvironmentalGoalParentArgsDto, EnvironmentEnvironmentalGoalRelatesFromArgsDto, EnvironmentEnvironmentalGoalRelatesToArgsDto, EnvironmentEnvironmentalGoalTaggedByArgsDto, EnvironmentEnvironmentalGoalUpdateDto, EnvironmentEnvironmentalGoalUpdateMessageDto, EnvironmentWasteMeterAssociationsArgsDto, EnvironmentWasteMeterChildrenArgsDto, EnvironmentWasteMeterConfiguredByArgsDto, EnvironmentWasteMeterConnectionDto, EnvironmentWasteMeterDto, EnvironmentWasteMeterEdgeDto, EnvironmentWasteMeterEventsArgsDto, EnvironmentWasteMeterInputDto, EnvironmentWasteMeterInputUpdateDto, EnvironmentWasteMeterMutationsCreateArgsDto, EnvironmentWasteMeterMutationsDto, EnvironmentWasteMeterMutationsUpdateArgsDto, EnvironmentWasteMeterOrdersArgsDto, EnvironmentWasteMeterParentArgsDto, EnvironmentWasteMeterRelatesFromArgsDto, EnvironmentWasteMeterRelatesToArgsDto, EnvironmentWasteMeterTaggedByArgsDto, EnvironmentWasteMeterUpdateDto, EnvironmentWasteMeterUpdateMessageDto, Exact, ExportModelResponseDto, ExternalLoginDto, FieldAggregationDto, FieldFilterDto, FieldGroupByAggregationInputDto, GeneratedPasswordDto, GetCkModelByIdQueryDto, GetCkModelByIdQueryVariablesDto, GetCkRecordAttributesQueryDto, GetCkRecordAttributesQueryVariablesDto, GetCkTypeAttributesQueryDto, GetCkTypeAttributesQueryVariablesDto, GetCkTypeAvailableQueryColumnsQueryDto, GetCkTypeAvailableQueryColumnsQueryVariablesDto, GetCkTypesQueryDto, GetCkTypesQueryVariablesDto, GetDerivedCkTypesQueryDto, GetDerivedCkTypesQueryVariablesDto, GetEntitiesByCkTypeQueryDto, GetEntitiesByCkTypeQueryVariablesDto, GlobalQueryOptionsDto, GrantTypes, HealthCheck, HealthCheckResult, IConfigurationService, IQueryVariablesDto, ImportModelResponseDto, Incremental, IndustryBasicAlarmAssociationsArgsDto, IndustryBasicAlarmConfiguredByArgsDto, IndustryBasicAlarmConnectionDto, IndustryBasicAlarmDto, IndustryBasicAlarmEdgeDto, IndustryBasicAlarmEventSourceArgsDto, IndustryBasicAlarmInputDto, IndustryBasicAlarmInputUpdateDto, IndustryBasicAlarmMutationsCreateArgsDto, IndustryBasicAlarmMutationsDto, IndustryBasicAlarmMutationsUpdateArgsDto, IndustryBasicAlarmOrderArgsDto, IndustryBasicAlarmRelatesFromArgsDto, IndustryBasicAlarmRelatesToArgsDto, IndustryBasicAlarmTaggedByArgsDto, IndustryBasicAlarmUpdateDto, IndustryBasicAlarmUpdateMessageDto, IndustryBasicEventAssociationsArgsDto, IndustryBasicEventConfiguredByArgsDto, IndustryBasicEventConnectionDto, IndustryBasicEventDto, IndustryBasicEventEdgeDto, IndustryBasicEventEventSourceArgsDto, IndustryBasicEventInputDto, IndustryBasicEventInputUpdateDto, IndustryBasicEventMutationsCreateArgsDto, IndustryBasicEventMutationsDto, IndustryBasicEventMutationsUpdateArgsDto, IndustryBasicEventOrderArgsDto, IndustryBasicEventRelatesFromArgsDto, IndustryBasicEventRelatesToArgsDto, IndustryBasicEventTaggedByArgsDto, IndustryBasicEventUpdateDto, IndustryBasicEventUpdateMessageDto, IndustryBasicEvent_EventUnionConnectionDto, IndustryBasicEvent_EventUnionDto, IndustryBasicEvent_EventUnionEdgeDto, IndustryBasicEvent_EventsUnionConnectionDto, IndustryBasicEvent_EventsUnionDto, IndustryBasicEvent_EventsUnionEdgeDto, IndustryBasicMachineAssociationsArgsDto, IndustryBasicMachineChildrenArgsDto, IndustryBasicMachineConfiguredByArgsDto, IndustryBasicMachineConnectionDto, IndustryBasicMachineDto, IndustryBasicMachineEdgeDto, IndustryBasicMachineEventsArgsDto, IndustryBasicMachineInputDto, IndustryBasicMachineInputUpdateDto, IndustryBasicMachineMutationsCreateArgsDto, IndustryBasicMachineMutationsDto, IndustryBasicMachineMutationsUpdateArgsDto, IndustryBasicMachineOrdersArgsDto, IndustryBasicMachineParentArgsDto, IndustryBasicMachineRelatesFromArgsDto, IndustryBasicMachineRelatesToArgsDto, IndustryBasicMachineRuntimeVariablesArgsDto, IndustryBasicMachineTaggedByArgsDto, IndustryBasicMachineUpdateDto, IndustryBasicMachineUpdateMessageDto, IndustryBasicMachine_MachineUnionConnectionDto, IndustryBasicMachine_MachineUnionDto, IndustryBasicMachine_MachineUnionEdgeDto, IndustryBasicRuntimeVariableAssociationsArgsDto, IndustryBasicRuntimeVariableConfiguredByArgsDto, IndustryBasicRuntimeVariableConnectionDto, IndustryBasicRuntimeVariableDto, IndustryBasicRuntimeVariableEdgeDto, IndustryBasicRuntimeVariableInputDto, IndustryBasicRuntimeVariableInputUpdateDto, IndustryBasicRuntimeVariableMachineArgsDto, IndustryBasicRuntimeVariableMutationsCreateArgsDto, IndustryBasicRuntimeVariableMutationsDto, IndustryBasicRuntimeVariableMutationsUpdateArgsDto, IndustryBasicRuntimeVariableRelatesFromArgsDto, IndustryBasicRuntimeVariableRelatesToArgsDto, IndustryBasicRuntimeVariableTaggedByArgsDto, IndustryBasicRuntimeVariableUpdateDto, IndustryBasicRuntimeVariableUpdateMessageDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionConnectionDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionEdgeDto, IndustryEnergyBatteryAssociationsArgsDto, IndustryEnergyBatteryChildrenArgsDto, IndustryEnergyBatteryConfiguredByArgsDto, IndustryEnergyBatteryConnectionDto, IndustryEnergyBatteryDto, IndustryEnergyBatteryEdgeDto, IndustryEnergyBatteryEventsArgsDto, IndustryEnergyBatteryInputDto, IndustryEnergyBatteryInputUpdateDto, IndustryEnergyBatteryMutationsCreateArgsDto, IndustryEnergyBatteryMutationsDto, IndustryEnergyBatteryMutationsUpdateArgsDto, IndustryEnergyBatteryOrdersArgsDto, IndustryEnergyBatteryParentArgsDto, IndustryEnergyBatteryRelatesFromArgsDto, IndustryEnergyBatteryRelatesToArgsDto, IndustryEnergyBatteryRuntimeVariablesArgsDto, IndustryEnergyBatteryTaggedByArgsDto, IndustryEnergyBatteryUpdateDto, IndustryEnergyBatteryUpdateMessageDto, IndustryEnergyEnergyMeterAssociationsArgsDto, IndustryEnergyEnergyMeterChildrenArgsDto, IndustryEnergyEnergyMeterConfiguredByArgsDto, IndustryEnergyEnergyMeterConnectionDto, IndustryEnergyEnergyMeterDto, IndustryEnergyEnergyMeterEdgeDto, IndustryEnergyEnergyMeterEventsArgsDto, IndustryEnergyEnergyMeterInputDto, IndustryEnergyEnergyMeterInputUpdateDto, IndustryEnergyEnergyMeterMutationsCreateArgsDto, IndustryEnergyEnergyMeterMutationsDto, IndustryEnergyEnergyMeterMutationsUpdateArgsDto, IndustryEnergyEnergyMeterOrdersArgsDto, IndustryEnergyEnergyMeterParentArgsDto, IndustryEnergyEnergyMeterRelatesFromArgsDto, IndustryEnergyEnergyMeterRelatesToArgsDto, IndustryEnergyEnergyMeterRuntimeVariablesArgsDto, IndustryEnergyEnergyMeterTaggedByArgsDto, IndustryEnergyEnergyMeterUpdateDto, IndustryEnergyEnergyMeterUpdateMessageDto, IndustryEnergyInverterAssociationsArgsDto, IndustryEnergyInverterChildrenArgsDto, IndustryEnergyInverterConfiguredByArgsDto, IndustryEnergyInverterConnectionDto, IndustryEnergyInverterDto, IndustryEnergyInverterEdgeDto, IndustryEnergyInverterEventsArgsDto, IndustryEnergyInverterInputDto, IndustryEnergyInverterInputUpdateDto, IndustryEnergyInverterMutationsCreateArgsDto, IndustryEnergyInverterMutationsDto, IndustryEnergyInverterMutationsUpdateArgsDto, IndustryEnergyInverterOrdersArgsDto, IndustryEnergyInverterParentArgsDto, IndustryEnergyInverterRelatesFromArgsDto, IndustryEnergyInverterRelatesToArgsDto, IndustryEnergyInverterRuntimeVariablesArgsDto, IndustryEnergyInverterTaggedByArgsDto, IndustryEnergyInverterUpdateDto, IndustryEnergyInverterUpdateMessageDto, IndustryEnergyPhaseInfoDto, IndustryEnergyPhaseInfoInputDto, IndustryEnergyPhotovoltaicAssociationsArgsDto, IndustryEnergyPhotovoltaicChildrenArgsDto, IndustryEnergyPhotovoltaicConfiguredByArgsDto, IndustryEnergyPhotovoltaicConnectionDto, IndustryEnergyPhotovoltaicDto, IndustryEnergyPhotovoltaicEdgeDto, IndustryEnergyPhotovoltaicEventsArgsDto, IndustryEnergyPhotovoltaicInputDto, IndustryEnergyPhotovoltaicInputUpdateDto, IndustryEnergyPhotovoltaicModuleAssociationsArgsDto, IndustryEnergyPhotovoltaicModuleChildrenArgsDto, IndustryEnergyPhotovoltaicModuleConfiguredByArgsDto, IndustryEnergyPhotovoltaicModuleConnectionDto, IndustryEnergyPhotovoltaicModuleDto, IndustryEnergyPhotovoltaicModuleEdgeDto, IndustryEnergyPhotovoltaicModuleEventsArgsDto, IndustryEnergyPhotovoltaicModuleInputDto, IndustryEnergyPhotovoltaicModuleInputUpdateDto, IndustryEnergyPhotovoltaicModuleMutationsCreateArgsDto, IndustryEnergyPhotovoltaicModuleMutationsDto, IndustryEnergyPhotovoltaicModuleMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicModuleOrdersArgsDto, IndustryEnergyPhotovoltaicModuleParentArgsDto, IndustryEnergyPhotovoltaicModuleRelatesFromArgsDto, IndustryEnergyPhotovoltaicModuleRelatesToArgsDto, IndustryEnergyPhotovoltaicModuleRuntimeVariablesArgsDto, IndustryEnergyPhotovoltaicModuleTaggedByArgsDto, IndustryEnergyPhotovoltaicModuleUpdateDto, IndustryEnergyPhotovoltaicModuleUpdateMessageDto, IndustryEnergyPhotovoltaicMutationsCreateArgsDto, IndustryEnergyPhotovoltaicMutationsDto, IndustryEnergyPhotovoltaicMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicOrdersArgsDto, IndustryEnergyPhotovoltaicParentArgsDto, IndustryEnergyPhotovoltaicRelatesFromArgsDto, IndustryEnergyPhotovoltaicRelatesToArgsDto, IndustryEnergyPhotovoltaicStringAssociationsArgsDto, IndustryEnergyPhotovoltaicStringChildrenArgsDto, IndustryEnergyPhotovoltaicStringConfiguredByArgsDto, IndustryEnergyPhotovoltaicStringConnectionDto, IndustryEnergyPhotovoltaicStringDto, IndustryEnergyPhotovoltaicStringEdgeDto, IndustryEnergyPhotovoltaicStringEventsArgsDto, IndustryEnergyPhotovoltaicStringInputDto, IndustryEnergyPhotovoltaicStringInputUpdateDto, IndustryEnergyPhotovoltaicStringMutationsCreateArgsDto, IndustryEnergyPhotovoltaicStringMutationsDto, IndustryEnergyPhotovoltaicStringMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicStringOrdersArgsDto, IndustryEnergyPhotovoltaicStringParentArgsDto, IndustryEnergyPhotovoltaicStringRelatesFromArgsDto, IndustryEnergyPhotovoltaicStringRelatesToArgsDto, IndustryEnergyPhotovoltaicStringTaggedByArgsDto, IndustryEnergyPhotovoltaicStringUpdateDto, IndustryEnergyPhotovoltaicStringUpdateMessageDto, IndustryEnergyPhotovoltaicTaggedByArgsDto, IndustryEnergyPhotovoltaicUpdateDto, IndustryEnergyPhotovoltaicUpdateMessageDto, IndustryFluidHeatMeterAssociationsArgsDto, IndustryFluidHeatMeterChildrenArgsDto, IndustryFluidHeatMeterConfiguredByArgsDto, IndustryFluidHeatMeterConnectionDto, IndustryFluidHeatMeterDto, IndustryFluidHeatMeterEdgeDto, IndustryFluidHeatMeterEventsArgsDto, IndustryFluidHeatMeterInputDto, IndustryFluidHeatMeterInputUpdateDto, IndustryFluidHeatMeterMutationsCreateArgsDto, IndustryFluidHeatMeterMutationsDto, IndustryFluidHeatMeterMutationsUpdateArgsDto, IndustryFluidHeatMeterOrdersArgsDto, IndustryFluidHeatMeterParentArgsDto, IndustryFluidHeatMeterRelatesFromArgsDto, IndustryFluidHeatMeterRelatesToArgsDto, IndustryFluidHeatMeterRuntimeVariablesArgsDto, IndustryFluidHeatMeterTaggedByArgsDto, IndustryFluidHeatMeterUpdateDto, IndustryFluidHeatMeterUpdateMessageDto, IndustryFluidWaterMeterAssociationsArgsDto, IndustryFluidWaterMeterChildrenArgsDto, IndustryFluidWaterMeterConfiguredByArgsDto, IndustryFluidWaterMeterConnectionDto, IndustryFluidWaterMeterDto, IndustryFluidWaterMeterEdgeDto, IndustryFluidWaterMeterEventsArgsDto, IndustryFluidWaterMeterInputDto, IndustryFluidWaterMeterInputUpdateDto, IndustryFluidWaterMeterMutationsCreateArgsDto, IndustryFluidWaterMeterMutationsDto, IndustryFluidWaterMeterMutationsUpdateArgsDto, IndustryFluidWaterMeterOrdersArgsDto, IndustryFluidWaterMeterParentArgsDto, IndustryFluidWaterMeterRelatesFromArgsDto, IndustryFluidWaterMeterRelatesToArgsDto, IndustryFluidWaterMeterRuntimeVariablesArgsDto, IndustryFluidWaterMeterTaggedByArgsDto, IndustryFluidWaterMeterUpdateDto, IndustryFluidWaterMeterUpdateMessageDto, IndustryMaintenanceAccountAssociationsArgsDto, IndustryMaintenanceAccountChildrenArgsDto, IndustryMaintenanceAccountConfiguredByArgsDto, IndustryMaintenanceAccountConnectionDto, IndustryMaintenanceAccountDto, IndustryMaintenanceAccountEdgeDto, IndustryMaintenanceAccountInputDto, IndustryMaintenanceAccountInputUpdateDto, IndustryMaintenanceAccountMutationsCreateArgsDto, IndustryMaintenanceAccountMutationsDto, IndustryMaintenanceAccountMutationsUpdateArgsDto, IndustryMaintenanceAccountRelatesFromArgsDto, IndustryMaintenanceAccountRelatesToArgsDto, IndustryMaintenanceAccountTaggedByArgsDto, IndustryMaintenanceAccountUpdateDto, IndustryMaintenanceAccountUpdateMessageDto, IndustryMaintenanceAccount_ParentUnionConnectionDto, IndustryMaintenanceAccount_ParentUnionDto, IndustryMaintenanceAccount_ParentUnionEdgeDto, IndustryMaintenanceCostCenterAssociationsArgsDto, IndustryMaintenanceCostCenterChildrenArgsDto, IndustryMaintenanceCostCenterConfiguredByArgsDto, IndustryMaintenanceCostCenterConnectionDto, IndustryMaintenanceCostCenterDto, IndustryMaintenanceCostCenterEdgeDto, IndustryMaintenanceCostCenterEventsArgsDto, IndustryMaintenanceCostCenterInputDto, IndustryMaintenanceCostCenterInputUpdateDto, IndustryMaintenanceCostCenterJournalEntriesArgsDto, IndustryMaintenanceCostCenterMutationsCreateArgsDto, IndustryMaintenanceCostCenterMutationsDto, IndustryMaintenanceCostCenterMutationsUpdateArgsDto, IndustryMaintenanceCostCenterOrdersArgsDto, IndustryMaintenanceCostCenterParentArgsDto, IndustryMaintenanceCostCenterRelatesFromArgsDto, IndustryMaintenanceCostCenterRelatesToArgsDto, IndustryMaintenanceCostCenterTaggedByArgsDto, IndustryMaintenanceCostCenterUpdateDto, IndustryMaintenanceCostCenterUpdateMessageDto, IndustryMaintenanceCostCenter_CostCenterUnionConnectionDto, IndustryMaintenanceCostCenter_CostCenterUnionDto, IndustryMaintenanceCostCenter_CostCenterUnionEdgeDto, IndustryMaintenanceEmployeeAssociationsArgsDto, IndustryMaintenanceEmployeeChildrenArgsDto, IndustryMaintenanceEmployeeConfiguredByArgsDto, IndustryMaintenanceEmployeeConnectionDto, IndustryMaintenanceEmployeeDto, IndustryMaintenanceEmployeeEdgeDto, IndustryMaintenanceEmployeeEventsArgsDto, IndustryMaintenanceEmployeeInputDto, IndustryMaintenanceEmployeeInputUpdateDto, IndustryMaintenanceEmployeeMutationsCreateArgsDto, IndustryMaintenanceEmployeeMutationsDto, IndustryMaintenanceEmployeeMutationsUpdateArgsDto, IndustryMaintenanceEmployeeOrderFeedbacksArgsDto, IndustryMaintenanceEmployeeOrdersArgsDto, IndustryMaintenanceEmployeeParentArgsDto, IndustryMaintenanceEmployeeRelatesFromArgsDto, IndustryMaintenanceEmployeeRelatesToArgsDto, IndustryMaintenanceEmployeeTaggedByArgsDto, IndustryMaintenanceEmployeeUpdateDto, IndustryMaintenanceEmployeeUpdateMessageDto, IndustryMaintenanceEmployee_EmployeeUnionConnectionDto, IndustryMaintenanceEmployee_EmployeeUnionDto, IndustryMaintenanceEmployee_EmployeeUnionEdgeDto, IndustryMaintenanceEnergyBalanceAssociationsArgsDto, IndustryMaintenanceEnergyBalanceConfiguredByArgsDto, IndustryMaintenanceEnergyBalanceConnectionDto, IndustryMaintenanceEnergyBalanceDto, IndustryMaintenanceEnergyBalanceEdgeDto, IndustryMaintenanceEnergyBalanceInputDto, IndustryMaintenanceEnergyBalanceInputUpdateDto, IndustryMaintenanceEnergyBalanceMachineArgsDto, IndustryMaintenanceEnergyBalanceMutationsCreateArgsDto, IndustryMaintenanceEnergyBalanceMutationsDto, IndustryMaintenanceEnergyBalanceMutationsUpdateArgsDto, IndustryMaintenanceEnergyBalanceRelatesFromArgsDto, IndustryMaintenanceEnergyBalanceRelatesToArgsDto, IndustryMaintenanceEnergyBalanceTaggedByArgsDto, IndustryMaintenanceEnergyBalanceUpdateDto, IndustryMaintenanceEnergyBalanceUpdateMessageDto, IndustryMaintenanceEnergyBalance_OrdersUnionConnectionDto, IndustryMaintenanceEnergyBalance_OrdersUnionDto, IndustryMaintenanceEnergyBalance_OrdersUnionEdgeDto, IndustryMaintenanceJournalEntryAssociationsArgsDto, IndustryMaintenanceJournalEntryConfiguredByArgsDto, IndustryMaintenanceJournalEntryConnectionDto, IndustryMaintenanceJournalEntryCostCenterArgsDto, IndustryMaintenanceJournalEntryDto, IndustryMaintenanceJournalEntryEdgeDto, IndustryMaintenanceJournalEntryInputDto, IndustryMaintenanceJournalEntryInputUpdateDto, IndustryMaintenanceJournalEntryMutationsCreateArgsDto, IndustryMaintenanceJournalEntryMutationsDto, IndustryMaintenanceJournalEntryMutationsUpdateArgsDto, IndustryMaintenanceJournalEntryParentArgsDto, IndustryMaintenanceJournalEntryRelatesFromArgsDto, IndustryMaintenanceJournalEntryRelatesToArgsDto, IndustryMaintenanceJournalEntryTaggedByArgsDto, IndustryMaintenanceJournalEntryUpdateDto, IndustryMaintenanceJournalEntryUpdateMessageDto, IndustryMaintenanceJournalEntry_ChildrenUnionConnectionDto, IndustryMaintenanceJournalEntry_ChildrenUnionDto, IndustryMaintenanceJournalEntry_ChildrenUnionEdgeDto, IndustryMaintenanceJournalEntry_JournalEntriesUnionConnectionDto, IndustryMaintenanceJournalEntry_JournalEntriesUnionDto, IndustryMaintenanceJournalEntry_JournalEntriesUnionEdgeDto, IndustryMaintenanceOrderAssociationsArgsDto, IndustryMaintenanceOrderChildrenArgsDto, IndustryMaintenanceOrderConfiguredByArgsDto, IndustryMaintenanceOrderConnectionDto, IndustryMaintenanceOrderCostsArgsDto, IndustryMaintenanceOrderCostsAssociationsArgsDto, IndustryMaintenanceOrderCostsConfiguredByArgsDto, IndustryMaintenanceOrderCostsConnectionDto, IndustryMaintenanceOrderCostsDto, IndustryMaintenanceOrderCostsEdgeDto, IndustryMaintenanceOrderCostsInputDto, IndustryMaintenanceOrderCostsInputUpdateDto, IndustryMaintenanceOrderCostsMutationsCreateArgsDto, IndustryMaintenanceOrderCostsMutationsDto, IndustryMaintenanceOrderCostsMutationsUpdateArgsDto, IndustryMaintenanceOrderCostsOrderArgsDto, IndustryMaintenanceOrderCostsRelatesFromArgsDto, IndustryMaintenanceOrderCostsRelatesToArgsDto, IndustryMaintenanceOrderCostsTaggedByArgsDto, IndustryMaintenanceOrderCostsUpdateDto, IndustryMaintenanceOrderCostsUpdateMessageDto, IndustryMaintenanceOrderCosts_CostsUnionConnectionDto, IndustryMaintenanceOrderCosts_CostsUnionDto, IndustryMaintenanceOrderCosts_CostsUnionEdgeDto, IndustryMaintenanceOrderDto, IndustryMaintenanceOrderEdgeDto, IndustryMaintenanceOrderEventArgsDto, IndustryMaintenanceOrderFeedbackAssociationsArgsDto, IndustryMaintenanceOrderFeedbackConfiguredByArgsDto, IndustryMaintenanceOrderFeedbackConnectionDto, IndustryMaintenanceOrderFeedbackDto, IndustryMaintenanceOrderFeedbackEdgeDto, IndustryMaintenanceOrderFeedbackEmployeeArgsDto, IndustryMaintenanceOrderFeedbackInputDto, IndustryMaintenanceOrderFeedbackInputUpdateDto, IndustryMaintenanceOrderFeedbackMutationsCreateArgsDto, IndustryMaintenanceOrderFeedbackMutationsDto, IndustryMaintenanceOrderFeedbackMutationsUpdateArgsDto, IndustryMaintenanceOrderFeedbackParentArgsDto, IndustryMaintenanceOrderFeedbackRelatesFromArgsDto, IndustryMaintenanceOrderFeedbackRelatesToArgsDto, IndustryMaintenanceOrderFeedbackTaggedByArgsDto, IndustryMaintenanceOrderFeedbackUpdateDto, IndustryMaintenanceOrderFeedbackUpdateMessageDto, IndustryMaintenanceOrderFeedback_ChildrenUnionConnectionDto, IndustryMaintenanceOrderFeedback_ChildrenUnionDto, IndustryMaintenanceOrderFeedback_ChildrenUnionEdgeDto, IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionConnectionDto, IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionDto, IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionEdgeDto, IndustryMaintenanceOrderInputDto, IndustryMaintenanceOrderInputUpdateDto, IndustryMaintenanceOrderMachineArgsDto, IndustryMaintenanceOrderMutationsCreateArgsDto, IndustryMaintenanceOrderMutationsDto, IndustryMaintenanceOrderMutationsUpdateArgsDto, IndustryMaintenanceOrderRelatesFromArgsDto, IndustryMaintenanceOrderRelatesToArgsDto, IndustryMaintenanceOrderTaggedByArgsDto, IndustryMaintenanceOrderUpdateDto, IndustryMaintenanceOrderUpdateMessageDto, IndustryMaintenanceOrder_OrderUnionConnectionDto, IndustryMaintenanceOrder_OrderUnionDto, IndustryMaintenanceOrder_OrderUnionEdgeDto, IndustryMaintenanceOrder_OrdersUnionConnectionDto, IndustryMaintenanceOrder_OrdersUnionDto, IndustryMaintenanceOrder_OrdersUnionEdgeDto, IndustryMaintenanceOrder_ParentUnionConnectionDto, IndustryMaintenanceOrder_ParentUnionDto, IndustryMaintenanceOrder_ParentUnionEdgeDto, IndustryMaintenanceWorkplaceAssociationsArgsDto, IndustryMaintenanceWorkplaceChildrenArgsDto, IndustryMaintenanceWorkplaceConfiguredByArgsDto, IndustryMaintenanceWorkplaceConnectionDto, IndustryMaintenanceWorkplaceDto, IndustryMaintenanceWorkplaceEdgeDto, IndustryMaintenanceWorkplaceEventsArgsDto, IndustryMaintenanceWorkplaceInputDto, IndustryMaintenanceWorkplaceInputUpdateDto, IndustryMaintenanceWorkplaceMutationsCreateArgsDto, IndustryMaintenanceWorkplaceMutationsDto, IndustryMaintenanceWorkplaceMutationsUpdateArgsDto, IndustryMaintenanceWorkplaceOrdersArgsDto, IndustryMaintenanceWorkplaceParentArgsDto, IndustryMaintenanceWorkplaceRelatesFromArgsDto, IndustryMaintenanceWorkplaceRelatesToArgsDto, IndustryMaintenanceWorkplaceTaggedByArgsDto, IndustryMaintenanceWorkplaceUpdateDto, IndustryMaintenanceWorkplaceUpdateMessageDto, InputMaybe, JobDto, JobResponseDto, LargeBinaryInfoDto, MakeEmpty, MakeMaybe, MakeOptional, Maybe, MergeUsersRequestDto, NearGeospatialFilterDto, OctoMutationDto, OctoQueryDto, OctoSdkDemoCustomerAssociationsArgsDto, OctoSdkDemoCustomerConfiguredByArgsDto, OctoSdkDemoCustomerConnectionDto, OctoSdkDemoCustomerDto, OctoSdkDemoCustomerEdgeDto, OctoSdkDemoCustomerInputDto, OctoSdkDemoCustomerInputUpdateDto, OctoSdkDemoCustomerMutationsCreateArgsDto, OctoSdkDemoCustomerMutationsDto, OctoSdkDemoCustomerMutationsUpdateArgsDto, OctoSdkDemoCustomerNoteDto, OctoSdkDemoCustomerNoteInputDto, OctoSdkDemoCustomerOwnsArgsDto, OctoSdkDemoCustomerRelatesFromArgsDto, OctoSdkDemoCustomerRelatesToArgsDto, OctoSdkDemoCustomerTaggedByArgsDto, OctoSdkDemoCustomerUpdateDto, OctoSdkDemoCustomerUpdateMessageDto, OctoSdkDemoCustomer_OwnedByUnionConnectionDto, OctoSdkDemoCustomer_OwnedByUnionDto, OctoSdkDemoCustomer_OwnedByUnionEdgeDto, OctoSdkDemoMeteringPointAssociationsArgsDto, OctoSdkDemoMeteringPointChildrenArgsDto, OctoSdkDemoMeteringPointConfiguredByArgsDto, OctoSdkDemoMeteringPointConnectionDto, OctoSdkDemoMeteringPointDto, OctoSdkDemoMeteringPointEdgeDto, OctoSdkDemoMeteringPointEventsArgsDto, OctoSdkDemoMeteringPointInputDto, OctoSdkDemoMeteringPointInputUpdateDto, OctoSdkDemoMeteringPointMutationsCreateArgsDto, OctoSdkDemoMeteringPointMutationsDto, OctoSdkDemoMeteringPointMutationsUpdateArgsDto, OctoSdkDemoMeteringPointOrdersArgsDto, OctoSdkDemoMeteringPointParentArgsDto, OctoSdkDemoMeteringPointRelatesFromArgsDto, OctoSdkDemoMeteringPointRelatesToArgsDto, OctoSdkDemoMeteringPointTaggedByArgsDto, OctoSdkDemoMeteringPointUpdateDto, OctoSdkDemoMeteringPointUpdateMessageDto, OctoSdkDemoOperatingFacilityAssociationsArgsDto, OctoSdkDemoOperatingFacilityChildrenArgsDto, OctoSdkDemoOperatingFacilityConfiguredByArgsDto, OctoSdkDemoOperatingFacilityConnectionDto, OctoSdkDemoOperatingFacilityDto, OctoSdkDemoOperatingFacilityEdgeDto, OctoSdkDemoOperatingFacilityInputDto, OctoSdkDemoOperatingFacilityInputUpdateDto, OctoSdkDemoOperatingFacilityMutationsCreateArgsDto, OctoSdkDemoOperatingFacilityMutationsDto, OctoSdkDemoOperatingFacilityMutationsUpdateArgsDto, OctoSdkDemoOperatingFacilityOrdersArgsDto, OctoSdkDemoOperatingFacilityOwnedByArgsDto, OctoSdkDemoOperatingFacilityParentArgsDto, OctoSdkDemoOperatingFacilityRelatesFromArgsDto, OctoSdkDemoOperatingFacilityRelatesToArgsDto, OctoSdkDemoOperatingFacilityTaggedByArgsDto, OctoSdkDemoOperatingFacilityUpdateDto, OctoSdkDemoOperatingFacilityUpdateMessageDto, OctoSdkDemoOperatingFacility_OwnsUnionConnectionDto, OctoSdkDemoOperatingFacility_OwnsUnionDto, OctoSdkDemoOperatingFacility_OwnsUnionEdgeDto, OctoSubscriptionsBasicAssetEventsArgsDto, OctoSubscriptionsBasicCityEventsArgsDto, OctoSubscriptionsBasicCountryEventsArgsDto, OctoSubscriptionsBasicDistrictEventsArgsDto, OctoSubscriptionsBasicDocumentEventsArgsDto, OctoSubscriptionsBasicEmployeeEventsArgsDto, OctoSubscriptionsBasicNamedEntityEventsArgsDto, OctoSubscriptionsBasicStateEventsArgsDto, OctoSubscriptionsBasicTreeEventsArgsDto, OctoSubscriptionsBasicTreeNodeEventsArgsDto, OctoSubscriptionsDto, OctoSubscriptionsEnergyCommunityBillingDocumentEventsArgsDto, OctoSubscriptionsEnergyCommunityBillingDocumentLineItemEventsArgsDto, OctoSubscriptionsEnergyCommunityConsumerEventsArgsDto, OctoSubscriptionsEnergyCommunityCustomerEventsArgsDto, OctoSubscriptionsEnergyCommunityEdaMessageEventsArgsDto, OctoSubscriptionsEnergyCommunityEdaMeteringPointEventsArgsDto, OctoSubscriptionsEnergyCommunityEdaProcessEventsArgsDto, OctoSubscriptionsEnergyCommunityEnergyPriceEventsArgsDto, OctoSubscriptionsEnergyCommunityEnergyQuantityEventsArgsDto, OctoSubscriptionsEnergyCommunityMeteringPointEventsArgsDto, OctoSubscriptionsEnergyCommunityOperatingFacilityEventsArgsDto, OctoSubscriptionsEnergyCommunityProducerEventsArgsDto, OctoSubscriptionsEnvironmentEnvironmentalGoalEventsArgsDto, OctoSubscriptionsEnvironmentWasteMeterEventsArgsDto, OctoSubscriptionsIndustryBasicAlarmEventsArgsDto, OctoSubscriptionsIndustryBasicEventEventsArgsDto, OctoSubscriptionsIndustryBasicMachineEventsArgsDto, OctoSubscriptionsIndustryBasicRuntimeVariableEventsArgsDto, OctoSubscriptionsIndustryEnergyBatteryEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyMeterEventsArgsDto, OctoSubscriptionsIndustryEnergyInverterEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicModuleEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicStringEventsArgsDto, OctoSubscriptionsIndustryFluidHeatMeterEventsArgsDto, OctoSubscriptionsIndustryFluidWaterMeterEventsArgsDto, OctoSubscriptionsIndustryMaintenanceAccountEventsArgsDto, OctoSubscriptionsIndustryMaintenanceCostCenterEventsArgsDto, OctoSubscriptionsIndustryMaintenanceEmployeeEventsArgsDto, OctoSubscriptionsIndustryMaintenanceEnergyBalanceEventsArgsDto, OctoSubscriptionsIndustryMaintenanceJournalEntryEventsArgsDto, OctoSubscriptionsIndustryMaintenanceOrderCostsEventsArgsDto, OctoSubscriptionsIndustryMaintenanceOrderEventsArgsDto, OctoSubscriptionsIndustryMaintenanceOrderFeedbackEventsArgsDto, OctoSubscriptionsIndustryMaintenanceWorkplaceEventsArgsDto, OctoSubscriptionsOctoSdkDemoCustomerEventsArgsDto, OctoSubscriptionsOctoSdkDemoMeteringPointEventsArgsDto, OctoSubscriptionsOctoSdkDemoOperatingFacilityEventsArgsDto, OctoSubscriptionsSystemAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemAutoIncrementEventsArgsDto, OctoSubscriptionsSystemBotAttributeAggregateConfigurationEventsArgsDto, OctoSubscriptionsSystemBotFixupEventsArgsDto, OctoSubscriptionsSystemCommunicationAdapterEventsArgsDto, OctoSubscriptionsSystemCommunicationDataPipelineEventsArgsDto, OctoSubscriptionsSystemCommunicationDataPipelineTriggerEventsArgsDto, OctoSubscriptionsSystemCommunicationDeployableEntityEventsArgsDto, OctoSubscriptionsSystemCommunicationEMailSenderConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEdgeAdapterEventsArgsDto, OctoSubscriptionsSystemCommunicationEdgePipelineEventsArgsDto, OctoSubscriptionsSystemCommunicationEnergyCommunityConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationFinApiConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationMeshAdapterEventsArgsDto, OctoSubscriptionsSystemCommunicationMeshPipelineEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineExecutionEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineStatisticsEventsArgsDto, OctoSubscriptionsSystemCommunicationPoolEventsArgsDto, OctoSubscriptionsSystemCommunicationSapConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationTagEventsArgsDto, OctoSubscriptionsSystemConfigurationEventsArgsDto, OctoSubscriptionsSystemEntityEventsArgsDto, OctoSubscriptionsSystemGroupingAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemIdentityApiResourceEventsArgsDto, OctoSubscriptionsSystemIdentityApiScopeEventsArgsDto, OctoSubscriptionsSystemIdentityAzureEntraIdIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityClientEventsArgsDto, OctoSubscriptionsSystemIdentityFacebookIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityGoogleIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityIdentityResourceEventsArgsDto, OctoSubscriptionsSystemIdentityMailNotificationConfigurationEventsArgsDto, OctoSubscriptionsSystemIdentityMicrosoftAdIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityMicrosoftIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityOpenLdapIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityPermissionEventsArgsDto, OctoSubscriptionsSystemIdentityPermissionRoleEventsArgsDto, OctoSubscriptionsSystemIdentityPersistedGrantEventsArgsDto, OctoSubscriptionsSystemIdentityResourceEventsArgsDto, OctoSubscriptionsSystemIdentityRoleEventsArgsDto, OctoSubscriptionsSystemIdentityUserEventsArgsDto, OctoSubscriptionsSystemMigrationHistoryEventsArgsDto, OctoSubscriptionsSystemNotificationCssTemplateConfigurationEventsArgsDto, OctoSubscriptionsSystemNotificationEventEventsArgsDto, OctoSubscriptionsSystemNotificationNotificationTemplateEventsArgsDto, OctoSubscriptionsSystemNotificationStatefulEventEventsArgsDto, OctoSubscriptionsSystemPersistentQueryEventsArgsDto, OctoSubscriptionsSystemQueryEventsArgsDto, OctoSubscriptionsSystemReportingConnectionInfoEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemContainerEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemEntityEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemItemEventsArgsDto, OctoSubscriptionsSystemReportingFolderEventsArgsDto, OctoSubscriptionsSystemReportingFolderRootEventsArgsDto, OctoSubscriptionsSystemSimpleRtQueryEventsArgsDto, OctoSubscriptionsSystemTenantConfigurationEventsArgsDto, OctoSubscriptionsSystemTenantEventsArgsDto, OctoSubscriptionsSystemTenantModeConfigurationEventsArgsDto, OctoSubscriptionsSystemUiDashboardEventsArgsDto, OctoSubscriptionsSystemUiDashboardWidgetEventsArgsDto, OctoSubscriptionsSystemUiProcessDiagramEventsArgsDto, OctoSubscriptionsSystemUiSymbolDefinitionEventsArgsDto, OctoSubscriptionsSystemUiSymbolLibraryEventsArgsDto, OctoSubscriptionsSystemUiuiElementEventsArgsDto, PageInfoDto, PipelineExecutionDataDto, PointInputDto, PositionInputDto, ProgressDialogRef, ProgressWindowOptions, QueryAggregationResultConnectionDto, QueryAggregationResultDto, QueryAggregationResultEdgeDto, RegisterUserDto, ResultAggregationInputDto, RoleDto, RtAggregationQueryRowCellsArgsDto, RtAggregationQueryRowDto, RtAssociationAttributesArgsDto, RtAssociationDto, RtAssociationDtoConnectionDto, RtAssociationDtoEdgeDto, RtAssociationInputDto, RtEntityAssociationInputDto, RtEntityAttributeDto, RtEntityAttributeDtoConnectionDto, RtEntityAttributeDtoEdgeDto, RtEntityAttributeInputDto, RtEntityAttributesArgsDto, RtEntityDto, RtEntityGenericAssociationDefinitionsArgsDto, RtEntityGenericAssociationDto, RtEntityGenericAssociationTargetsArgsDto, RtEntityGenericDtoConnectionDto, RtEntityGenericDtoEdgeDto, RtEntityIdDto, RtEntityInputDto, RtEntityMutationsCreateArgsDto, RtEntityMutationsDeleteArgsDto, RtEntityMutationsDto, RtEntityMutationsUpdateArgsDto, RtEntityUpdateDto, RtGroupingAggregationQueryRowCellsArgsDto, RtGroupingAggregationQueryRowDto, RtQueryAggregationsArgsDto, RtQueryCellDto, RtQueryCellDtoConnectionDto, RtQueryCellDtoEdgeDto, RtQueryCellInputDto, RtQueryColumnDto, RtQueryColumnInputDto, RtQueryDto, RtQueryDtoConnectionDto, RtQueryDtoEdgeDto, RtQueryMutationsCreateArgsDto, RtQueryMutationsDeleteArgsDto, RtQueryMutationsDto, RtQueryMutationsUpdateArgsDto, RtQueryRowCellsArgsDto, RtQueryRowDto, RtQueryRowDtoConnectionDto, RtQueryRowDtoEdgeDto, RtQueryRowInputDto, RtQueryRowUpdateDto, RtQueryRowsArgsDto, RtSimpleQueryRowCellsArgsDto, RtSimpleQueryRowDto, RtTransientAggregationArgsDto, RtTransientDto, RtTransientGroupingAggregationArgsDto, RtTransientQueryAggregationsArgsDto, RtTransientQueryDto, RtTransientQueryDtoConnectionDto, RtTransientQueryDtoEdgeDto, RtTransientQueryRowsArgsDto, RtTransientSimpleArgsDto, RuntimeDto, RuntimeEntityItem, RuntimeModelQueryBasicAssetArgsDto, RuntimeModelQueryBasicCityArgsDto, RuntimeModelQueryBasicCountryArgsDto, RuntimeModelQueryBasicDistrictArgsDto, RuntimeModelQueryBasicDocumentArgsDto, RuntimeModelQueryBasicEmployeeArgsDto, RuntimeModelQueryBasicNamedEntityArgsDto, RuntimeModelQueryBasicStateArgsDto, RuntimeModelQueryBasicTreeArgsDto, RuntimeModelQueryBasicTreeNodeArgsDto, RuntimeModelQueryDto, RuntimeModelQueryEnergyCommunityBillingDocumentArgsDto, RuntimeModelQueryEnergyCommunityBillingDocumentLineItemArgsDto, RuntimeModelQueryEnergyCommunityConsumerArgsDto, RuntimeModelQueryEnergyCommunityCustomerArgsDto, RuntimeModelQueryEnergyCommunityEdaMessageArgsDto, RuntimeModelQueryEnergyCommunityEdaMeteringPointArgsDto, RuntimeModelQueryEnergyCommunityEdaProcessArgsDto, RuntimeModelQueryEnergyCommunityEnergyPriceArgsDto, RuntimeModelQueryEnergyCommunityEnergyQuantityArgsDto, RuntimeModelQueryEnergyCommunityMeteringPointArgsDto, RuntimeModelQueryEnergyCommunityOperatingFacilityArgsDto, RuntimeModelQueryEnergyCommunityProducerArgsDto, RuntimeModelQueryEnvironmentEnvironmentalGoalArgsDto, RuntimeModelQueryEnvironmentWasteMeterArgsDto, RuntimeModelQueryIndustryBasicAlarmArgsDto, RuntimeModelQueryIndustryBasicEventArgsDto, RuntimeModelQueryIndustryBasicMachineArgsDto, RuntimeModelQueryIndustryBasicRuntimeVariableArgsDto, RuntimeModelQueryIndustryEnergyBatteryArgsDto, RuntimeModelQueryIndustryEnergyEnergyMeterArgsDto, RuntimeModelQueryIndustryEnergyInverterArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicModuleArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicStringArgsDto, RuntimeModelQueryIndustryFluidHeatMeterArgsDto, RuntimeModelQueryIndustryFluidWaterMeterArgsDto, RuntimeModelQueryIndustryMaintenanceAccountArgsDto, RuntimeModelQueryIndustryMaintenanceCostCenterArgsDto, RuntimeModelQueryIndustryMaintenanceEmployeeArgsDto, RuntimeModelQueryIndustryMaintenanceEnergyBalanceArgsDto, RuntimeModelQueryIndustryMaintenanceJournalEntryArgsDto, RuntimeModelQueryIndustryMaintenanceOrderArgsDto, RuntimeModelQueryIndustryMaintenanceOrderCostsArgsDto, RuntimeModelQueryIndustryMaintenanceOrderFeedbackArgsDto, RuntimeModelQueryIndustryMaintenanceWorkplaceArgsDto, RuntimeModelQueryOctoSdkDemoCustomerArgsDto, RuntimeModelQueryOctoSdkDemoMeteringPointArgsDto, RuntimeModelQueryOctoSdkDemoOperatingFacilityArgsDto, RuntimeModelQueryRuntimeEntitiesArgsDto, RuntimeModelQueryRuntimeQueryArgsDto, RuntimeModelQuerySystemAggregationRtQueryArgsDto, RuntimeModelQuerySystemAutoIncrementArgsDto, RuntimeModelQuerySystemBotAttributeAggregateConfigurationArgsDto, RuntimeModelQuerySystemBotFixupArgsDto, RuntimeModelQuerySystemCommunicationAdapterArgsDto, RuntimeModelQuerySystemCommunicationDataPipelineArgsDto, RuntimeModelQuerySystemCommunicationDataPipelineTriggerArgsDto, RuntimeModelQuerySystemCommunicationDeployableEntityArgsDto, RuntimeModelQuerySystemCommunicationEMailSenderConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEdgeAdapterArgsDto, RuntimeModelQuerySystemCommunicationEdgePipelineArgsDto, RuntimeModelQuerySystemCommunicationEnergyCommunityConfigurationArgsDto, RuntimeModelQuerySystemCommunicationFinApiConfigurationArgsDto, RuntimeModelQuerySystemCommunicationMeshAdapterArgsDto, RuntimeModelQuerySystemCommunicationMeshPipelineArgsDto, RuntimeModelQuerySystemCommunicationPipelineArgsDto, RuntimeModelQuerySystemCommunicationPipelineExecutionArgsDto, RuntimeModelQuerySystemCommunicationPipelineStatisticsArgsDto, RuntimeModelQuerySystemCommunicationPoolArgsDto, RuntimeModelQuerySystemCommunicationSapConfigurationArgsDto, RuntimeModelQuerySystemCommunicationTagArgsDto, RuntimeModelQuerySystemConfigurationArgsDto, RuntimeModelQuerySystemEntityArgsDto, RuntimeModelQuerySystemGroupingAggregationRtQueryArgsDto, RuntimeModelQuerySystemIdentityApiResourceArgsDto, RuntimeModelQuerySystemIdentityApiScopeArgsDto, RuntimeModelQuerySystemIdentityAzureEntraIdIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityClientArgsDto, RuntimeModelQuerySystemIdentityFacebookIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityGoogleIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityIdentityResourceArgsDto, RuntimeModelQuerySystemIdentityMailNotificationConfigurationArgsDto, RuntimeModelQuerySystemIdentityMicrosoftAdIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityMicrosoftIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityOpenLdapIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityPermissionArgsDto, RuntimeModelQuerySystemIdentityPermissionRoleArgsDto, RuntimeModelQuerySystemIdentityPersistedGrantArgsDto, RuntimeModelQuerySystemIdentityResourceArgsDto, RuntimeModelQuerySystemIdentityRoleArgsDto, RuntimeModelQuerySystemIdentityUserArgsDto, RuntimeModelQuerySystemMigrationHistoryArgsDto, RuntimeModelQuerySystemNotificationCssTemplateConfigurationArgsDto, RuntimeModelQuerySystemNotificationEventArgsDto, RuntimeModelQuerySystemNotificationNotificationTemplateArgsDto, RuntimeModelQuerySystemNotificationStatefulEventArgsDto, RuntimeModelQuerySystemPersistentQueryArgsDto, RuntimeModelQuerySystemQueryArgsDto, RuntimeModelQuerySystemReportingConnectionInfoArgsDto, RuntimeModelQuerySystemReportingFileSystemContainerArgsDto, RuntimeModelQuerySystemReportingFileSystemEntityArgsDto, RuntimeModelQuerySystemReportingFileSystemItemArgsDto, RuntimeModelQuerySystemReportingFolderArgsDto, RuntimeModelQuerySystemReportingFolderRootArgsDto, RuntimeModelQuerySystemSimpleRtQueryArgsDto, RuntimeModelQuerySystemTenantArgsDto, RuntimeModelQuerySystemTenantConfigurationArgsDto, RuntimeModelQuerySystemTenantModeConfigurationArgsDto, RuntimeModelQuerySystemUiDashboardArgsDto, RuntimeModelQuerySystemUiDashboardWidgetArgsDto, RuntimeModelQuerySystemUiProcessDiagramArgsDto, RuntimeModelQuerySystemUiSymbolDefinitionArgsDto, RuntimeModelQuerySystemUiSymbolLibraryArgsDto, RuntimeModelQuerySystemUiuiElementArgsDto, RuntimeRuntimeQueryArgsDto, Scalars, SearchFilterDto, SortDto, StatisticsDto, StreamDataArgumentsDto, StreamDataModelQueryDto, StreamDataModelQueryEnergyCommunityEnergyQuantityArgsDto, StreamDataModelQueryIndustryBasicAlarmArgsDto, StreamDataModelQueryIndustryBasicEventArgsDto, StreamDataModelQueryIndustryBasicMachineArgsDto, StreamDataModelQueryIndustryBasicRuntimeVariableArgsDto, StreamDataModelQueryIndustryEnergyBatteryArgsDto, StreamDataModelQueryIndustryEnergyEnergyMeterArgsDto, StreamDataModelQueryIndustryEnergyInverterArgsDto, StreamDataModelQueryIndustryEnergyPhotovoltaicModuleArgsDto, StreamDataModelQueryIndustryEnergyPhotovoltaicStringArgsDto, StreamDataModelQueryIndustryFluidHeatMeterArgsDto, StreamDataModelQueryIndustryFluidWaterMeterArgsDto, StreamEnergyCommunityEnergyQuantityConnectionDto, StreamEnergyCommunityEnergyQuantityDataQualityArgsDto, StreamEnergyCommunityEnergyQuantityDto, StreamEnergyCommunityEnergyQuantityEdgeDto, StreamEnergyCommunityEnergyQuantityRtChangedDateTimeArgsDto, StreamIndustryBasicAlarmAcknowledgedArgsDto, StreamIndustryBasicAlarmCategoryArgsDto, StreamIndustryBasicAlarmCauseArgsDto, StreamIndustryBasicAlarmClearedArgsDto, StreamIndustryBasicAlarmConnectionDto, StreamIndustryBasicAlarmDto, StreamIndustryBasicAlarmEdgeDto, StreamIndustryBasicAlarmLastModifiedArgsDto, StreamIndustryBasicAlarmMessageArgsDto, StreamIndustryBasicAlarmPriorityArgsDto, StreamIndustryBasicAlarmReactivatedArgsDto, StreamIndustryBasicAlarmReactivatedCountArgsDto, StreamIndustryBasicAlarmReceivedArgsDto, StreamIndustryBasicAlarmRtChangedDateTimeArgsDto, StreamIndustryBasicAlarmSourceArgsDto, StreamIndustryBasicAlarmStateArgsDto, StreamIndustryBasicAlarmTagNameArgsDto, StreamIndustryBasicAlarmTypeArgsDto, StreamIndustryBasicEventCategoryArgsDto, StreamIndustryBasicEventConnectionDto, StreamIndustryBasicEventDto, StreamIndustryBasicEventEdgeDto, StreamIndustryBasicEventMessageArgsDto, StreamIndustryBasicEventReceivedArgsDto, StreamIndustryBasicEventRtChangedDateTimeArgsDto, StreamIndustryBasicEventTagNameArgsDto, StreamIndustryBasicMachineConnectionDto, StreamIndustryBasicMachineDto, StreamIndustryBasicMachineEdgeDto, StreamIndustryBasicMachineMachineStateArgsDto, StreamIndustryBasicMachineOperatingHoursArgsDto, StreamIndustryBasicMachineRtChangedDateTimeArgsDto, StreamIndustryBasicMachineStandStillCounterArgsDto, StreamIndustryBasicRuntimeVariableBooleanValueArgsDto, StreamIndustryBasicRuntimeVariableConnectionDto, StreamIndustryBasicRuntimeVariableDateTimeValueArgsDto, StreamIndustryBasicRuntimeVariableDoubleValueArgsDto, StreamIndustryBasicRuntimeVariableDto, StreamIndustryBasicRuntimeVariableEdgeDto, StreamIndustryBasicRuntimeVariableIecDataTypeArgsDto, StreamIndustryBasicRuntimeVariableInt64ValueArgsDto, StreamIndustryBasicRuntimeVariableIntValueArgsDto, StreamIndustryBasicRuntimeVariableRtChangedDateTimeArgsDto, StreamIndustryBasicRuntimeVariableStringValueArgsDto, StreamIndustryBasicRuntimeVariableTimeSpanValueArgsDto, StreamIndustryEnergyBatteryAmpereArgsDto, StreamIndustryEnergyBatteryCapacityArgsDto, StreamIndustryEnergyBatteryConnectionDto, StreamIndustryEnergyBatteryDto, StreamIndustryEnergyBatteryEdgeDto, StreamIndustryEnergyBatteryExportedEnergyArgsDto, StreamIndustryEnergyBatteryImportedEnergyArgsDto, StreamIndustryEnergyBatteryMachineStateArgsDto, StreamIndustryEnergyBatteryNumOfCyclesArgsDto, StreamIndustryEnergyBatteryOperatingHoursArgsDto, StreamIndustryEnergyBatteryPowerArgsDto, StreamIndustryEnergyBatteryRtChangedDateTimeArgsDto, StreamIndustryEnergyBatterySoCArgsDto, StreamIndustryEnergyBatterySoHArgsDto, StreamIndustryEnergyBatteryStandStillCounterArgsDto, StreamIndustryEnergyBatteryVoltageArgsDto, StreamIndustryEnergyEnergyMeterAmpereArgsDto, StreamIndustryEnergyEnergyMeterApparentPowerArgsDto, StreamIndustryEnergyEnergyMeterConnectionDto, StreamIndustryEnergyEnergyMeterDto, StreamIndustryEnergyEnergyMeterEdgeDto, StreamIndustryEnergyEnergyMeterExportedEnergyArgsDto, StreamIndustryEnergyEnergyMeterFrequencyArgsDto, StreamIndustryEnergyEnergyMeterImportedEnergyArgsDto, StreamIndustryEnergyEnergyMeterMachineStateArgsDto, StreamIndustryEnergyEnergyMeterOperatingHoursArgsDto, StreamIndustryEnergyEnergyMeterPowerArgsDto, StreamIndustryEnergyEnergyMeterReactivePowerArgsDto, StreamIndustryEnergyEnergyMeterRtChangedDateTimeArgsDto, StreamIndustryEnergyEnergyMeterStandStillCounterArgsDto, StreamIndustryEnergyEnergyMeterVoltageArgsDto, StreamIndustryEnergyInverterAmpereArgsDto, StreamIndustryEnergyInverterConnectionDto, StreamIndustryEnergyInverterDcAmpereArgsDto, StreamIndustryEnergyInverterDcVoltageArgsDto, StreamIndustryEnergyInverterDto, StreamIndustryEnergyInverterEdgeDto, StreamIndustryEnergyInverterMachineStateArgsDto, StreamIndustryEnergyInverterMaximumPowerArgsDto, StreamIndustryEnergyInverterOperatingHoursArgsDto, StreamIndustryEnergyInverterPowerArgsDto, StreamIndustryEnergyInverterRtChangedDateTimeArgsDto, StreamIndustryEnergyInverterStandStillCounterArgsDto, StreamIndustryEnergyInverterVoltageArgsDto, StreamIndustryEnergyPhotovoltaicModuleConnectionDto, StreamIndustryEnergyPhotovoltaicModuleDto, StreamIndustryEnergyPhotovoltaicModuleEdgeDto, StreamIndustryEnergyPhotovoltaicModuleMachineStateArgsDto, StreamIndustryEnergyPhotovoltaicModuleOperatingHoursArgsDto, StreamIndustryEnergyPhotovoltaicModulePeakPowerArgsDto, StreamIndustryEnergyPhotovoltaicModulePowerArgsDto, StreamIndustryEnergyPhotovoltaicModuleRtChangedDateTimeArgsDto, StreamIndustryEnergyPhotovoltaicModuleStandStillCounterArgsDto, StreamIndustryEnergyPhotovoltaicStringConnectionDto, StreamIndustryEnergyPhotovoltaicStringDto, StreamIndustryEnergyPhotovoltaicStringEdgeDto, StreamIndustryEnergyPhotovoltaicStringPowerArgsDto, StreamIndustryEnergyPhotovoltaicStringRtChangedDateTimeArgsDto, StreamIndustryFluidHeatMeterConnectionDto, StreamIndustryFluidHeatMeterDto, StreamIndustryFluidHeatMeterEdgeDto, StreamIndustryFluidHeatMeterImportedEnergyArgsDto, StreamIndustryFluidHeatMeterMachineStateArgsDto, StreamIndustryFluidHeatMeterOperatingHoursArgsDto, StreamIndustryFluidHeatMeterPowerArgsDto, StreamIndustryFluidHeatMeterRtChangedDateTimeArgsDto, StreamIndustryFluidHeatMeterStandStillCounterArgsDto, StreamIndustryFluidWaterMeterConnectionDto, StreamIndustryFluidWaterMeterDto, StreamIndustryFluidWaterMeterEdgeDto, StreamIndustryFluidWaterMeterMachineStateArgsDto, StreamIndustryFluidWaterMeterOperatingHoursArgsDto, StreamIndustryFluidWaterMeterRtChangedDateTimeArgsDto, StreamIndustryFluidWaterMeterStandStillCounterArgsDto, SystemAggregationQueryColumnDto, SystemAggregationQueryColumnInputDto, SystemAggregationRtQueryAssociationsArgsDto, SystemAggregationRtQueryConfiguredByArgsDto, SystemAggregationRtQueryConnectionDto, SystemAggregationRtQueryDto, SystemAggregationRtQueryEdgeDto, SystemAggregationRtQueryInputDto, SystemAggregationRtQueryInputUpdateDto, SystemAggregationRtQueryMutationsCreateArgsDto, SystemAggregationRtQueryMutationsDto, SystemAggregationRtQueryMutationsUpdateArgsDto, SystemAggregationRtQueryRelatesFromArgsDto, SystemAggregationRtQueryRelatesToArgsDto, SystemAggregationRtQueryTaggedByArgsDto, SystemAggregationRtQueryUpdateDto, SystemAggregationRtQueryUpdateMessageDto, SystemAttributeSearchFilterDto, SystemAttributeSearchFilterInputDto, SystemAutoIncrementAssociationsArgsDto, SystemAutoIncrementConfiguredByArgsDto, SystemAutoIncrementConnectionDto, SystemAutoIncrementDto, SystemAutoIncrementEdgeDto, SystemAutoIncrementInputDto, SystemAutoIncrementInputUpdateDto, SystemAutoIncrementMutationsCreateArgsDto, SystemAutoIncrementMutationsDto, SystemAutoIncrementMutationsUpdateArgsDto, SystemAutoIncrementRelatesFromArgsDto, SystemAutoIncrementRelatesToArgsDto, SystemAutoIncrementTaggedByArgsDto, SystemAutoIncrementUpdateDto, SystemAutoIncrementUpdateMessageDto, SystemBotAttributeAggregateConfigurationAssociationsArgsDto, SystemBotAttributeAggregateConfigurationConfiguredByArgsDto, SystemBotAttributeAggregateConfigurationConfiguresArgsDto, SystemBotAttributeAggregateConfigurationConnectionDto, SystemBotAttributeAggregateConfigurationDto, SystemBotAttributeAggregateConfigurationEdgeDto, SystemBotAttributeAggregateConfigurationInputDto, SystemBotAttributeAggregateConfigurationInputUpdateDto, SystemBotAttributeAggregateConfigurationMutationsCreateArgsDto, SystemBotAttributeAggregateConfigurationMutationsDto, SystemBotAttributeAggregateConfigurationMutationsUpdateArgsDto, SystemBotAttributeAggregateConfigurationRelatesFromArgsDto, SystemBotAttributeAggregateConfigurationRelatesToArgsDto, SystemBotAttributeAggregateConfigurationTaggedByArgsDto, SystemBotAttributeAggregateConfigurationUpdateDto, SystemBotAttributeAggregateConfigurationUpdateMessageDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionEdgeDto, SystemBotFixupAssociationsArgsDto, SystemBotFixupConfiguredByArgsDto, SystemBotFixupConnectionDto, SystemBotFixupDto, SystemBotFixupEdgeDto, SystemBotFixupInputDto, SystemBotFixupInputUpdateDto, SystemBotFixupMutationsCreateArgsDto, SystemBotFixupMutationsDto, SystemBotFixupMutationsUpdateArgsDto, SystemBotFixupRelatesFromArgsDto, SystemBotFixupRelatesToArgsDto, SystemBotFixupTaggedByArgsDto, SystemBotFixupUpdateDto, SystemBotFixupUpdateMessageDto, SystemCommunicationAdapterAssociationsArgsDto, SystemCommunicationAdapterConfiguredByArgsDto, SystemCommunicationAdapterConnectionDto, SystemCommunicationAdapterDto, SystemCommunicationAdapterEdgeDto, SystemCommunicationAdapterExecutesArgsDto, SystemCommunicationAdapterExecutingAdapterArgsDto, SystemCommunicationAdapterInterfaceConfiguredByArgsDto, SystemCommunicationAdapterInterfaceDto, SystemCommunicationAdapterInterfaceExecutesArgsDto, SystemCommunicationAdapterInterfaceExecutingAdapterArgsDto, SystemCommunicationAdapterInterfaceManagedByArgsDto, SystemCommunicationAdapterInterfaceRelatesFromArgsDto, SystemCommunicationAdapterInterfaceRelatesToArgsDto, SystemCommunicationAdapterInterfaceTaggedByArgsDto, SystemCommunicationAdapterManagedByArgsDto, SystemCommunicationAdapterRelatesFromArgsDto, SystemCommunicationAdapterRelatesToArgsDto, SystemCommunicationAdapterTaggedByArgsDto, SystemCommunicationAdapterUpdateDto, SystemCommunicationAdapterUpdateMessageDto, SystemCommunicationAdapter_AdapterExecutionsUnionConnectionDto, SystemCommunicationAdapter_AdapterExecutionsUnionDto, SystemCommunicationAdapter_AdapterExecutionsUnionEdgeDto, SystemCommunicationAdapter_ExecutedByUnionConnectionDto, SystemCommunicationAdapter_ExecutedByUnionDto, SystemCommunicationAdapter_ExecutedByUnionEdgeDto, SystemCommunicationAdapter_ManagesUnionConnectionDto, SystemCommunicationAdapter_ManagesUnionDto, SystemCommunicationAdapter_ManagesUnionEdgeDto, SystemCommunicationDataPipelineAssociationsArgsDto, SystemCommunicationDataPipelineChildrenArgsDto, SystemCommunicationDataPipelineConfiguredByArgsDto, SystemCommunicationDataPipelineConnectionDto, SystemCommunicationDataPipelineDto, SystemCommunicationDataPipelineEdgeDto, SystemCommunicationDataPipelineInputDto, SystemCommunicationDataPipelineInputUpdateDto, SystemCommunicationDataPipelineMutationsCreateArgsDto, SystemCommunicationDataPipelineMutationsDto, SystemCommunicationDataPipelineMutationsUpdateArgsDto, SystemCommunicationDataPipelineRelatesFromArgsDto, SystemCommunicationDataPipelineRelatesToArgsDto, SystemCommunicationDataPipelineTaggedByArgsDto, SystemCommunicationDataPipelineTriggerAssociationsArgsDto, SystemCommunicationDataPipelineTriggerConfiguredByArgsDto, SystemCommunicationDataPipelineTriggerConnectionDto, SystemCommunicationDataPipelineTriggerDto, SystemCommunicationDataPipelineTriggerEdgeDto, SystemCommunicationDataPipelineTriggerInputDto, SystemCommunicationDataPipelineTriggerInputUpdateDto, SystemCommunicationDataPipelineTriggerMutationsCreateArgsDto, SystemCommunicationDataPipelineTriggerMutationsDto, SystemCommunicationDataPipelineTriggerMutationsUpdateArgsDto, SystemCommunicationDataPipelineTriggerRelatesFromArgsDto, SystemCommunicationDataPipelineTriggerRelatesToArgsDto, SystemCommunicationDataPipelineTriggerTaggedByArgsDto, SystemCommunicationDataPipelineTriggerTriggersArgsDto, SystemCommunicationDataPipelineTriggerUpdateDto, SystemCommunicationDataPipelineTriggerUpdateMessageDto, SystemCommunicationDataPipelineTrigger_TriggeredByUnionConnectionDto, SystemCommunicationDataPipelineTrigger_TriggeredByUnionDto, SystemCommunicationDataPipelineTrigger_TriggeredByUnionEdgeDto, SystemCommunicationDataPipelineUpdateDto, SystemCommunicationDataPipelineUpdateMessageDto, SystemCommunicationDataPipeline_ParentUnionConnectionDto, SystemCommunicationDataPipeline_ParentUnionDto, SystemCommunicationDataPipeline_ParentUnionEdgeDto, SystemCommunicationDeployableEntityAssociationsArgsDto, SystemCommunicationDeployableEntityConfiguredByArgsDto, SystemCommunicationDeployableEntityConnectionDto, SystemCommunicationDeployableEntityDto, SystemCommunicationDeployableEntityEdgeDto, SystemCommunicationDeployableEntityInterfaceConfiguredByArgsDto, SystemCommunicationDeployableEntityInterfaceDto, SystemCommunicationDeployableEntityInterfaceRelatesFromArgsDto, SystemCommunicationDeployableEntityInterfaceRelatesToArgsDto, SystemCommunicationDeployableEntityInterfaceTaggedByArgsDto, SystemCommunicationDeployableEntityRelatesFromArgsDto, SystemCommunicationDeployableEntityRelatesToArgsDto, SystemCommunicationDeployableEntityTaggedByArgsDto, SystemCommunicationDeployableEntityUpdateDto, SystemCommunicationDeployableEntityUpdateMessageDto, SystemCommunicationEMailSenderConfigurationAssociationsArgsDto, SystemCommunicationEMailSenderConfigurationConfiguredByArgsDto, SystemCommunicationEMailSenderConfigurationConnectionDto, SystemCommunicationEMailSenderConfigurationDto, SystemCommunicationEMailSenderConfigurationEdgeDto, SystemCommunicationEMailSenderConfigurationInputDto, SystemCommunicationEMailSenderConfigurationInputUpdateDto, SystemCommunicationEMailSenderConfigurationMutationsCreateArgsDto, SystemCommunicationEMailSenderConfigurationMutationsDto, SystemCommunicationEMailSenderConfigurationMutationsUpdateArgsDto, SystemCommunicationEMailSenderConfigurationRelatesFromArgsDto, SystemCommunicationEMailSenderConfigurationRelatesToArgsDto, SystemCommunicationEMailSenderConfigurationTaggedByArgsDto, SystemCommunicationEMailSenderConfigurationUpdateDto, SystemCommunicationEMailSenderConfigurationUpdateMessageDto, SystemCommunicationEMailSenderConfigurationUsedByArgsDto, SystemCommunicationEdgeAdapterAssociationsArgsDto, SystemCommunicationEdgeAdapterConfiguredByArgsDto, SystemCommunicationEdgeAdapterConnectionDto, SystemCommunicationEdgeAdapterDto, SystemCommunicationEdgeAdapterEdgeDto, SystemCommunicationEdgeAdapterExecutesArgsDto, SystemCommunicationEdgeAdapterExecutingAdapterArgsDto, SystemCommunicationEdgeAdapterInputDto, SystemCommunicationEdgeAdapterInputUpdateDto, SystemCommunicationEdgeAdapterManagedByArgsDto, SystemCommunicationEdgeAdapterMutationsCreateArgsDto, SystemCommunicationEdgeAdapterMutationsDto, SystemCommunicationEdgeAdapterMutationsUpdateArgsDto, SystemCommunicationEdgeAdapterRelatesFromArgsDto, SystemCommunicationEdgeAdapterRelatesToArgsDto, SystemCommunicationEdgeAdapterTaggedByArgsDto, SystemCommunicationEdgeAdapterUpdateDto, SystemCommunicationEdgeAdapterUpdateMessageDto, SystemCommunicationEdgePipelineAssociationsArgsDto, SystemCommunicationEdgePipelineConfiguredByArgsDto, SystemCommunicationEdgePipelineConnectionDto, SystemCommunicationEdgePipelineDto, SystemCommunicationEdgePipelineEdgeDto, SystemCommunicationEdgePipelineExecutedByArgsDto, SystemCommunicationEdgePipelineExecutedPipelineArgsDto, SystemCommunicationEdgePipelineInputDto, SystemCommunicationEdgePipelineInputUpdateDto, SystemCommunicationEdgePipelineIsUsingArgsDto, SystemCommunicationEdgePipelineMutationsCreateArgsDto, SystemCommunicationEdgePipelineMutationsDto, SystemCommunicationEdgePipelineMutationsUpdateArgsDto, SystemCommunicationEdgePipelineParentArgsDto, SystemCommunicationEdgePipelineRelatesFromArgsDto, SystemCommunicationEdgePipelineRelatesToArgsDto, SystemCommunicationEdgePipelineStatisticsForPipelineArgsDto, SystemCommunicationEdgePipelineTaggedByArgsDto, SystemCommunicationEdgePipelineUpdateDto, SystemCommunicationEdgePipelineUpdateMessageDto, SystemCommunicationEnergyCommunityConfigurationAssociationsArgsDto, SystemCommunicationEnergyCommunityConfigurationConfiguredByArgsDto, SystemCommunicationEnergyCommunityConfigurationConnectionDto, SystemCommunicationEnergyCommunityConfigurationDto, SystemCommunicationEnergyCommunityConfigurationEdgeDto, SystemCommunicationEnergyCommunityConfigurationInputDto, SystemCommunicationEnergyCommunityConfigurationInputUpdateDto, SystemCommunicationEnergyCommunityConfigurationMutationsCreateArgsDto, SystemCommunicationEnergyCommunityConfigurationMutationsDto, SystemCommunicationEnergyCommunityConfigurationMutationsUpdateArgsDto, SystemCommunicationEnergyCommunityConfigurationRelatesFromArgsDto, SystemCommunicationEnergyCommunityConfigurationRelatesToArgsDto, SystemCommunicationEnergyCommunityConfigurationTaggedByArgsDto, SystemCommunicationEnergyCommunityConfigurationUpdateDto, SystemCommunicationEnergyCommunityConfigurationUpdateMessageDto, SystemCommunicationEnergyCommunityConfigurationUsedByArgsDto, SystemCommunicationFinApiConfigurationAssociationsArgsDto, SystemCommunicationFinApiConfigurationConfiguredByArgsDto, SystemCommunicationFinApiConfigurationConnectionDto, SystemCommunicationFinApiConfigurationDto, SystemCommunicationFinApiConfigurationEdgeDto, SystemCommunicationFinApiConfigurationInputDto, SystemCommunicationFinApiConfigurationInputUpdateDto, SystemCommunicationFinApiConfigurationMutationsCreateArgsDto, SystemCommunicationFinApiConfigurationMutationsDto, SystemCommunicationFinApiConfigurationMutationsUpdateArgsDto, SystemCommunicationFinApiConfigurationRelatesFromArgsDto, SystemCommunicationFinApiConfigurationRelatesToArgsDto, SystemCommunicationFinApiConfigurationTaggedByArgsDto, SystemCommunicationFinApiConfigurationUpdateDto, SystemCommunicationFinApiConfigurationUpdateMessageDto, SystemCommunicationFinApiConfigurationUsedByArgsDto, SystemCommunicationMeshAdapterAssociationsArgsDto, SystemCommunicationMeshAdapterConfiguredByArgsDto, SystemCommunicationMeshAdapterConnectionDto, SystemCommunicationMeshAdapterDto, SystemCommunicationMeshAdapterEdgeDto, SystemCommunicationMeshAdapterExecutesArgsDto, SystemCommunicationMeshAdapterExecutingAdapterArgsDto, SystemCommunicationMeshAdapterInputDto, SystemCommunicationMeshAdapterInputUpdateDto, SystemCommunicationMeshAdapterManagedByArgsDto, SystemCommunicationMeshAdapterMutationsCreateArgsDto, SystemCommunicationMeshAdapterMutationsDto, SystemCommunicationMeshAdapterMutationsUpdateArgsDto, SystemCommunicationMeshAdapterRelatesFromArgsDto, SystemCommunicationMeshAdapterRelatesToArgsDto, SystemCommunicationMeshAdapterTaggedByArgsDto, SystemCommunicationMeshAdapterUpdateDto, SystemCommunicationMeshAdapterUpdateMessageDto, SystemCommunicationMeshPipelineAssociationsArgsDto, SystemCommunicationMeshPipelineConfiguredByArgsDto, SystemCommunicationMeshPipelineConnectionDto, SystemCommunicationMeshPipelineDto, SystemCommunicationMeshPipelineEdgeDto, SystemCommunicationMeshPipelineExecutedByArgsDto, SystemCommunicationMeshPipelineExecutedPipelineArgsDto, SystemCommunicationMeshPipelineInputDto, SystemCommunicationMeshPipelineInputUpdateDto, SystemCommunicationMeshPipelineIsUsingArgsDto, SystemCommunicationMeshPipelineMutationsCreateArgsDto, SystemCommunicationMeshPipelineMutationsDto, SystemCommunicationMeshPipelineMutationsUpdateArgsDto, SystemCommunicationMeshPipelineParentArgsDto, SystemCommunicationMeshPipelineRelatesFromArgsDto, SystemCommunicationMeshPipelineRelatesToArgsDto, SystemCommunicationMeshPipelineStatisticsForPipelineArgsDto, SystemCommunicationMeshPipelineTaggedByArgsDto, SystemCommunicationMeshPipelineTriggeredByArgsDto, SystemCommunicationMeshPipelineUpdateDto, SystemCommunicationMeshPipelineUpdateMessageDto, SystemCommunicationMeshPipeline_TriggersUnionConnectionDto, SystemCommunicationMeshPipeline_TriggersUnionDto, SystemCommunicationMeshPipeline_TriggersUnionEdgeDto, SystemCommunicationPipelineAssociationsArgsDto, SystemCommunicationPipelineConfiguredByArgsDto, SystemCommunicationPipelineConnectionDto, SystemCommunicationPipelineDto, SystemCommunicationPipelineEdgeDto, SystemCommunicationPipelineExecutedByArgsDto, SystemCommunicationPipelineExecutedPipelineArgsDto, SystemCommunicationPipelineExecutionAdapterExecutionsArgsDto, SystemCommunicationPipelineExecutionAssociationsArgsDto, SystemCommunicationPipelineExecutionConfiguredByArgsDto, SystemCommunicationPipelineExecutionConnectionDto, SystemCommunicationPipelineExecutionDto, SystemCommunicationPipelineExecutionEdgeDto, SystemCommunicationPipelineExecutionInputDto, SystemCommunicationPipelineExecutionInputUpdateDto, SystemCommunicationPipelineExecutionMutationsCreateArgsDto, SystemCommunicationPipelineExecutionMutationsDto, SystemCommunicationPipelineExecutionMutationsUpdateArgsDto, SystemCommunicationPipelineExecutionPipelineExecutionsArgsDto, SystemCommunicationPipelineExecutionRelatesFromArgsDto, SystemCommunicationPipelineExecutionRelatesToArgsDto, SystemCommunicationPipelineExecutionTaggedByArgsDto, SystemCommunicationPipelineExecutionUpdateDto, SystemCommunicationPipelineExecutionUpdateMessageDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnectionDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionEdgeDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnectionDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionEdgeDto, SystemCommunicationPipelineInterfaceConfiguredByArgsDto, SystemCommunicationPipelineInterfaceDto, SystemCommunicationPipelineInterfaceExecutedByArgsDto, SystemCommunicationPipelineInterfaceExecutedPipelineArgsDto, SystemCommunicationPipelineInterfaceIsUsingArgsDto, SystemCommunicationPipelineInterfaceParentArgsDto, SystemCommunicationPipelineInterfaceRelatesFromArgsDto, SystemCommunicationPipelineInterfaceRelatesToArgsDto, SystemCommunicationPipelineInterfaceStatisticsForPipelineArgsDto, SystemCommunicationPipelineInterfaceTaggedByArgsDto, SystemCommunicationPipelineIsUsingArgsDto, SystemCommunicationPipelineParentArgsDto, SystemCommunicationPipelineRelatesFromArgsDto, SystemCommunicationPipelineRelatesToArgsDto, SystemCommunicationPipelineStatisticsAssociationsArgsDto, SystemCommunicationPipelineStatisticsConfiguredByArgsDto, SystemCommunicationPipelineStatisticsConnectionDto, SystemCommunicationPipelineStatisticsDto, SystemCommunicationPipelineStatisticsEdgeDto, SystemCommunicationPipelineStatisticsForPipelineArgsDto, SystemCommunicationPipelineStatisticsInputDto, SystemCommunicationPipelineStatisticsInputUpdateDto, SystemCommunicationPipelineStatisticsMutationsCreateArgsDto, SystemCommunicationPipelineStatisticsMutationsDto, SystemCommunicationPipelineStatisticsMutationsUpdateArgsDto, SystemCommunicationPipelineStatisticsPipelineStatisticsArgsDto, SystemCommunicationPipelineStatisticsRelatesFromArgsDto, SystemCommunicationPipelineStatisticsRelatesToArgsDto, SystemCommunicationPipelineStatisticsTaggedByArgsDto, SystemCommunicationPipelineStatisticsUpdateDto, SystemCommunicationPipelineStatisticsUpdateMessageDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnectionDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionEdgeDto, SystemCommunicationPipelineTaggedByArgsDto, SystemCommunicationPipelineUpdateDto, SystemCommunicationPipelineUpdateMessageDto, SystemCommunicationPipeline_ChildrenUnionConnectionDto, SystemCommunicationPipeline_ChildrenUnionDto, SystemCommunicationPipeline_ChildrenUnionEdgeDto, SystemCommunicationPipeline_ExecutesUnionConnectionDto, SystemCommunicationPipeline_ExecutesUnionDto, SystemCommunicationPipeline_ExecutesUnionEdgeDto, SystemCommunicationPipeline_PipelineExecutionsUnionConnectionDto, SystemCommunicationPipeline_PipelineExecutionsUnionDto, SystemCommunicationPipeline_PipelineExecutionsUnionEdgeDto, SystemCommunicationPipeline_PipelineStatisticsUnionConnectionDto, SystemCommunicationPipeline_PipelineStatisticsUnionDto, SystemCommunicationPipeline_PipelineStatisticsUnionEdgeDto, SystemCommunicationPipeline_UsedByUnionConnectionDto, SystemCommunicationPipeline_UsedByUnionDto, SystemCommunicationPipeline_UsedByUnionEdgeDto, SystemCommunicationPoolAssociationsArgsDto, SystemCommunicationPoolConfiguredByArgsDto, SystemCommunicationPoolConnectionDto, SystemCommunicationPoolDto, SystemCommunicationPoolEdgeDto, SystemCommunicationPoolInputDto, SystemCommunicationPoolInputUpdateDto, SystemCommunicationPoolManagesArgsDto, SystemCommunicationPoolMutationsCreateArgsDto, SystemCommunicationPoolMutationsDto, SystemCommunicationPoolMutationsUpdateArgsDto, SystemCommunicationPoolRelatesFromArgsDto, SystemCommunicationPoolRelatesToArgsDto, SystemCommunicationPoolTaggedByArgsDto, SystemCommunicationPoolUpdateDto, SystemCommunicationPoolUpdateMessageDto, SystemCommunicationPool_ManagedByUnionConnectionDto, SystemCommunicationPool_ManagedByUnionDto, SystemCommunicationPool_ManagedByUnionEdgeDto, SystemCommunicationSapConfigurationAssociationsArgsDto, SystemCommunicationSapConfigurationConfiguredByArgsDto, SystemCommunicationSapConfigurationConnectionDto, SystemCommunicationSapConfigurationDto, SystemCommunicationSapConfigurationEdgeDto, SystemCommunicationSapConfigurationInputDto, SystemCommunicationSapConfigurationInputUpdateDto, SystemCommunicationSapConfigurationMutationsCreateArgsDto, SystemCommunicationSapConfigurationMutationsDto, SystemCommunicationSapConfigurationMutationsUpdateArgsDto, SystemCommunicationSapConfigurationRelatesFromArgsDto, SystemCommunicationSapConfigurationRelatesToArgsDto, SystemCommunicationSapConfigurationTaggedByArgsDto, SystemCommunicationSapConfigurationUpdateDto, SystemCommunicationSapConfigurationUpdateMessageDto, SystemCommunicationSapConfigurationUsedByArgsDto, SystemCommunicationTagAssociationsArgsDto, SystemCommunicationTagConfiguredByArgsDto, SystemCommunicationTagConnectionDto, SystemCommunicationTagDto, SystemCommunicationTagEdgeDto, SystemCommunicationTagInputDto, SystemCommunicationTagInputUpdateDto, SystemCommunicationTagIsTaggingArgsDto, SystemCommunicationTagMutationsCreateArgsDto, SystemCommunicationTagMutationsDto, SystemCommunicationTagMutationsUpdateArgsDto, SystemCommunicationTagRelatesFromArgsDto, SystemCommunicationTagRelatesToArgsDto, SystemCommunicationTagTaggedByArgsDto, SystemCommunicationTagUpdateDto, SystemCommunicationTagUpdateMessageDto, SystemCommunicationTag_TaggedByUnionConnectionDto, SystemCommunicationTag_TaggedByUnionDto, SystemCommunicationTag_TaggedByUnionEdgeDto, SystemCommunicationUiThemeColorsDto, SystemCommunicationUiThemeColorsInputDto, SystemConfigurationAssociationsArgsDto, SystemConfigurationConfiguredByArgsDto, SystemConfigurationConnectionDto, SystemConfigurationDto, SystemConfigurationEdgeDto, SystemConfigurationInterfaceConfiguredByArgsDto, SystemConfigurationInterfaceDto, SystemConfigurationInterfaceRelatesFromArgsDto, SystemConfigurationInterfaceRelatesToArgsDto, SystemConfigurationInterfaceTaggedByArgsDto, SystemConfigurationInterfaceUsedByArgsDto, SystemConfigurationRelatesFromArgsDto, SystemConfigurationRelatesToArgsDto, SystemConfigurationTaggedByArgsDto, SystemConfigurationUpdateDto, SystemConfigurationUpdateMessageDto, SystemConfigurationUsedByArgsDto, SystemConfiguration_IsUsingUnionConnectionDto, SystemConfiguration_IsUsingUnionDto, SystemConfiguration_IsUsingUnionEdgeDto, SystemEntityAssociationsArgsDto, SystemEntityConfiguredByArgsDto, SystemEntityConnectionDto, SystemEntityDto, SystemEntityEdgeDto, SystemEntityInterfaceConfiguredByArgsDto, SystemEntityInterfaceDto, SystemEntityInterfaceRelatesFromArgsDto, SystemEntityInterfaceRelatesToArgsDto, SystemEntityInterfaceTaggedByArgsDto, SystemEntityRelatesFromArgsDto, SystemEntityRelatesToArgsDto, SystemEntityTaggedByArgsDto, SystemEntityUpdateDto, SystemEntityUpdateMessageDto, SystemEntity_ConfiguresUnionConnectionDto, SystemEntity_ConfiguresUnionDto, SystemEntity_ConfiguresUnionEdgeDto, SystemEntity_IsTaggingUnionConnectionDto, SystemEntity_IsTaggingUnionDto, SystemEntity_IsTaggingUnionEdgeDto, SystemEntity_RelatesFromUnionConnectionDto, SystemEntity_RelatesFromUnionDto, SystemEntity_RelatesFromUnionEdgeDto, SystemEntity_RelatesToUnionConnectionDto, SystemEntity_RelatesToUnionDto, SystemEntity_RelatesToUnionEdgeDto, SystemFieldFilterDto, SystemFieldFilterInputDto, SystemGroupingAggregationRtQueryAssociationsArgsDto, SystemGroupingAggregationRtQueryConfiguredByArgsDto, SystemGroupingAggregationRtQueryConnectionDto, SystemGroupingAggregationRtQueryDto, SystemGroupingAggregationRtQueryEdgeDto, SystemGroupingAggregationRtQueryInputDto, SystemGroupingAggregationRtQueryInputUpdateDto, SystemGroupingAggregationRtQueryMutationsCreateArgsDto, SystemGroupingAggregationRtQueryMutationsDto, SystemGroupingAggregationRtQueryMutationsUpdateArgsDto, SystemGroupingAggregationRtQueryRelatesFromArgsDto, SystemGroupingAggregationRtQueryRelatesToArgsDto, SystemGroupingAggregationRtQueryTaggedByArgsDto, SystemGroupingAggregationRtQueryUpdateDto, SystemGroupingAggregationRtQueryUpdateMessageDto, SystemIdentityApiResourceAssociationsArgsDto, SystemIdentityApiResourceConfiguredByArgsDto, SystemIdentityApiResourceConnectionDto, SystemIdentityApiResourceDto, SystemIdentityApiResourceEdgeDto, SystemIdentityApiResourceInputDto, SystemIdentityApiResourceInputUpdateDto, SystemIdentityApiResourceMutationsCreateArgsDto, SystemIdentityApiResourceMutationsDto, SystemIdentityApiResourceMutationsUpdateArgsDto, SystemIdentityApiResourceRelatesFromArgsDto, SystemIdentityApiResourceRelatesToArgsDto, SystemIdentityApiResourceTaggedByArgsDto, SystemIdentityApiResourceUpdateDto, SystemIdentityApiResourceUpdateMessageDto, SystemIdentityApiScopeAssociationsArgsDto, SystemIdentityApiScopeConfiguredByArgsDto, SystemIdentityApiScopeConnectionDto, SystemIdentityApiScopeDto, SystemIdentityApiScopeEdgeDto, SystemIdentityApiScopeInputDto, SystemIdentityApiScopeInputUpdateDto, SystemIdentityApiScopeMutationsCreateArgsDto, SystemIdentityApiScopeMutationsDto, SystemIdentityApiScopeMutationsUpdateArgsDto, SystemIdentityApiScopeRelatesFromArgsDto, SystemIdentityApiScopeRelatesToArgsDto, SystemIdentityApiScopeTaggedByArgsDto, SystemIdentityApiScopeUpdateDto, SystemIdentityApiScopeUpdateMessageDto, SystemIdentityAzureEntraIdIdentityProviderAssociationsArgsDto, SystemIdentityAzureEntraIdIdentityProviderConfiguredByArgsDto, SystemIdentityAzureEntraIdIdentityProviderConnectionDto, SystemIdentityAzureEntraIdIdentityProviderDto, SystemIdentityAzureEntraIdIdentityProviderEdgeDto, SystemIdentityAzureEntraIdIdentityProviderInputDto, SystemIdentityAzureEntraIdIdentityProviderInputUpdateDto, SystemIdentityAzureEntraIdIdentityProviderMutationsCreateArgsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsUpdateArgsDto, SystemIdentityAzureEntraIdIdentityProviderRelatesFromArgsDto, SystemIdentityAzureEntraIdIdentityProviderRelatesToArgsDto, SystemIdentityAzureEntraIdIdentityProviderTaggedByArgsDto, SystemIdentityAzureEntraIdIdentityProviderUpdateDto, SystemIdentityAzureEntraIdIdentityProviderUpdateMessageDto, SystemIdentityClientAssociationsArgsDto, SystemIdentityClientClaimDto, SystemIdentityClientClaimInputDto, SystemIdentityClientConfiguredByArgsDto, SystemIdentityClientConnectionDto, SystemIdentityClientDto, SystemIdentityClientEdgeDto, SystemIdentityClientInputDto, SystemIdentityClientInputUpdateDto, SystemIdentityClientMutationsCreateArgsDto, SystemIdentityClientMutationsDto, SystemIdentityClientMutationsUpdateArgsDto, SystemIdentityClientRelatesFromArgsDto, SystemIdentityClientRelatesToArgsDto, SystemIdentityClientTaggedByArgsDto, SystemIdentityClientUpdateDto, SystemIdentityClientUpdateMessageDto, SystemIdentityFacebookIdentityProviderAssociationsArgsDto, SystemIdentityFacebookIdentityProviderConfiguredByArgsDto, SystemIdentityFacebookIdentityProviderConnectionDto, SystemIdentityFacebookIdentityProviderDto, SystemIdentityFacebookIdentityProviderEdgeDto, SystemIdentityFacebookIdentityProviderInputDto, SystemIdentityFacebookIdentityProviderInputUpdateDto, SystemIdentityFacebookIdentityProviderMutationsCreateArgsDto, SystemIdentityFacebookIdentityProviderMutationsDto, SystemIdentityFacebookIdentityProviderMutationsUpdateArgsDto, SystemIdentityFacebookIdentityProviderRelatesFromArgsDto, SystemIdentityFacebookIdentityProviderRelatesToArgsDto, SystemIdentityFacebookIdentityProviderTaggedByArgsDto, SystemIdentityFacebookIdentityProviderUpdateDto, SystemIdentityFacebookIdentityProviderUpdateMessageDto, SystemIdentityGoogleIdentityProviderAssociationsArgsDto, SystemIdentityGoogleIdentityProviderConfiguredByArgsDto, SystemIdentityGoogleIdentityProviderConnectionDto, SystemIdentityGoogleIdentityProviderDto, SystemIdentityGoogleIdentityProviderEdgeDto, SystemIdentityGoogleIdentityProviderInputDto, SystemIdentityGoogleIdentityProviderInputUpdateDto, SystemIdentityGoogleIdentityProviderMutationsCreateArgsDto, SystemIdentityGoogleIdentityProviderMutationsDto, SystemIdentityGoogleIdentityProviderMutationsUpdateArgsDto, SystemIdentityGoogleIdentityProviderRelatesFromArgsDto, SystemIdentityGoogleIdentityProviderRelatesToArgsDto, SystemIdentityGoogleIdentityProviderTaggedByArgsDto, SystemIdentityGoogleIdentityProviderUpdateDto, SystemIdentityGoogleIdentityProviderUpdateMessageDto, SystemIdentityIdentityProviderAssociationsArgsDto, SystemIdentityIdentityProviderConfiguredByArgsDto, SystemIdentityIdentityProviderConnectionDto, SystemIdentityIdentityProviderDto, SystemIdentityIdentityProviderEdgeDto, SystemIdentityIdentityProviderInterfaceConfiguredByArgsDto, SystemIdentityIdentityProviderInterfaceDto, SystemIdentityIdentityProviderInterfaceRelatesFromArgsDto, SystemIdentityIdentityProviderInterfaceRelatesToArgsDto, SystemIdentityIdentityProviderInterfaceTaggedByArgsDto, SystemIdentityIdentityProviderRelatesFromArgsDto, SystemIdentityIdentityProviderRelatesToArgsDto, SystemIdentityIdentityProviderTaggedByArgsDto, SystemIdentityIdentityProviderUpdateDto, SystemIdentityIdentityProviderUpdateMessageDto, SystemIdentityIdentityResourceAssociationsArgsDto, SystemIdentityIdentityResourceConfiguredByArgsDto, SystemIdentityIdentityResourceConnectionDto, SystemIdentityIdentityResourceDto, SystemIdentityIdentityResourceEdgeDto, SystemIdentityIdentityResourceInputDto, SystemIdentityIdentityResourceInputUpdateDto, SystemIdentityIdentityResourceMutationsCreateArgsDto, SystemIdentityIdentityResourceMutationsDto, SystemIdentityIdentityResourceMutationsUpdateArgsDto, SystemIdentityIdentityResourceRelatesFromArgsDto, SystemIdentityIdentityResourceRelatesToArgsDto, SystemIdentityIdentityResourceTaggedByArgsDto, SystemIdentityIdentityResourceUpdateDto, SystemIdentityIdentityResourceUpdateMessageDto, SystemIdentityMailNotificationConfigurationAssociationsArgsDto, SystemIdentityMailNotificationConfigurationConfiguredByArgsDto, SystemIdentityMailNotificationConfigurationConnectionDto, SystemIdentityMailNotificationConfigurationDto, SystemIdentityMailNotificationConfigurationEdgeDto, SystemIdentityMailNotificationConfigurationInputDto, SystemIdentityMailNotificationConfigurationInputUpdateDto, SystemIdentityMailNotificationConfigurationMutationsCreateArgsDto, SystemIdentityMailNotificationConfigurationMutationsDto, SystemIdentityMailNotificationConfigurationMutationsUpdateArgsDto, SystemIdentityMailNotificationConfigurationRelatesFromArgsDto, SystemIdentityMailNotificationConfigurationRelatesToArgsDto, SystemIdentityMailNotificationConfigurationTaggedByArgsDto, SystemIdentityMailNotificationConfigurationUpdateDto, SystemIdentityMailNotificationConfigurationUpdateMessageDto, SystemIdentityMailNotificationConfigurationUsedByArgsDto, SystemIdentityMicrosoftAdIdentityProviderAssociationsArgsDto, SystemIdentityMicrosoftAdIdentityProviderConfiguredByArgsDto, SystemIdentityMicrosoftAdIdentityProviderConnectionDto, SystemIdentityMicrosoftAdIdentityProviderDto, SystemIdentityMicrosoftAdIdentityProviderEdgeDto, SystemIdentityMicrosoftAdIdentityProviderInputDto, SystemIdentityMicrosoftAdIdentityProviderInputUpdateDto, SystemIdentityMicrosoftAdIdentityProviderMutationsCreateArgsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsUpdateArgsDto, SystemIdentityMicrosoftAdIdentityProviderRelatesFromArgsDto, SystemIdentityMicrosoftAdIdentityProviderRelatesToArgsDto, SystemIdentityMicrosoftAdIdentityProviderTaggedByArgsDto, SystemIdentityMicrosoftAdIdentityProviderUpdateDto, SystemIdentityMicrosoftAdIdentityProviderUpdateMessageDto, SystemIdentityMicrosoftIdentityProviderAssociationsArgsDto, SystemIdentityMicrosoftIdentityProviderConfiguredByArgsDto, SystemIdentityMicrosoftIdentityProviderConnectionDto, SystemIdentityMicrosoftIdentityProviderDto, SystemIdentityMicrosoftIdentityProviderEdgeDto, SystemIdentityMicrosoftIdentityProviderInputDto, SystemIdentityMicrosoftIdentityProviderInputUpdateDto, SystemIdentityMicrosoftIdentityProviderMutationsCreateArgsDto, SystemIdentityMicrosoftIdentityProviderMutationsDto, SystemIdentityMicrosoftIdentityProviderMutationsUpdateArgsDto, SystemIdentityMicrosoftIdentityProviderRelatesFromArgsDto, SystemIdentityMicrosoftIdentityProviderRelatesToArgsDto, SystemIdentityMicrosoftIdentityProviderTaggedByArgsDto, SystemIdentityMicrosoftIdentityProviderUpdateDto, SystemIdentityMicrosoftIdentityProviderUpdateMessageDto, SystemIdentityOpenLdapIdentityProviderAssociationsArgsDto, SystemIdentityOpenLdapIdentityProviderConfiguredByArgsDto, SystemIdentityOpenLdapIdentityProviderConnectionDto, SystemIdentityOpenLdapIdentityProviderDto, SystemIdentityOpenLdapIdentityProviderEdgeDto, SystemIdentityOpenLdapIdentityProviderInputDto, SystemIdentityOpenLdapIdentityProviderInputUpdateDto, SystemIdentityOpenLdapIdentityProviderMutationsCreateArgsDto, SystemIdentityOpenLdapIdentityProviderMutationsDto, SystemIdentityOpenLdapIdentityProviderMutationsUpdateArgsDto, SystemIdentityOpenLdapIdentityProviderRelatesFromArgsDto, SystemIdentityOpenLdapIdentityProviderRelatesToArgsDto, SystemIdentityOpenLdapIdentityProviderTaggedByArgsDto, SystemIdentityOpenLdapIdentityProviderUpdateDto, SystemIdentityOpenLdapIdentityProviderUpdateMessageDto, SystemIdentityPermissionAssociationsArgsDto, SystemIdentityPermissionConfiguredByArgsDto, SystemIdentityPermissionConnectionDto, SystemIdentityPermissionDto, SystemIdentityPermissionEdgeDto, SystemIdentityPermissionInputDto, SystemIdentityPermissionInputUpdateDto, SystemIdentityPermissionMutationsCreateArgsDto, SystemIdentityPermissionMutationsDto, SystemIdentityPermissionMutationsUpdateArgsDto, SystemIdentityPermissionRelatesFromArgsDto, SystemIdentityPermissionRelatesToArgsDto, SystemIdentityPermissionRoleAssociationsArgsDto, SystemIdentityPermissionRoleConfiguredByArgsDto, SystemIdentityPermissionRoleConnectionDto, SystemIdentityPermissionRoleDto, SystemIdentityPermissionRoleEdgeDto, SystemIdentityPermissionRoleInputDto, SystemIdentityPermissionRoleInputUpdateDto, SystemIdentityPermissionRoleMutationsCreateArgsDto, SystemIdentityPermissionRoleMutationsDto, SystemIdentityPermissionRoleMutationsUpdateArgsDto, SystemIdentityPermissionRoleRelatesFromArgsDto, SystemIdentityPermissionRoleRelatesToArgsDto, SystemIdentityPermissionRoleTaggedByArgsDto, SystemIdentityPermissionRoleUpdateDto, SystemIdentityPermissionRoleUpdateMessageDto, SystemIdentityPermissionTaggedByArgsDto, SystemIdentityPermissionUpdateDto, SystemIdentityPermissionUpdateMessageDto, SystemIdentityPersistedGrantAssociationsArgsDto, SystemIdentityPersistedGrantConfiguredByArgsDto, SystemIdentityPersistedGrantConnectionDto, SystemIdentityPersistedGrantDto, SystemIdentityPersistedGrantEdgeDto, SystemIdentityPersistedGrantInputDto, SystemIdentityPersistedGrantInputUpdateDto, SystemIdentityPersistedGrantMutationsCreateArgsDto, SystemIdentityPersistedGrantMutationsDto, SystemIdentityPersistedGrantMutationsUpdateArgsDto, SystemIdentityPersistedGrantRelatesFromArgsDto, SystemIdentityPersistedGrantRelatesToArgsDto, SystemIdentityPersistedGrantTaggedByArgsDto, SystemIdentityPersistedGrantUpdateDto, SystemIdentityPersistedGrantUpdateMessageDto, SystemIdentityResourceAssociationsArgsDto, SystemIdentityResourceConfiguredByArgsDto, SystemIdentityResourceConnectionDto, SystemIdentityResourceDto, SystemIdentityResourceEdgeDto, SystemIdentityResourceInterfaceConfiguredByArgsDto, SystemIdentityResourceInterfaceDto, SystemIdentityResourceInterfaceRelatesFromArgsDto, SystemIdentityResourceInterfaceRelatesToArgsDto, SystemIdentityResourceInterfaceTaggedByArgsDto, SystemIdentityResourceRelatesFromArgsDto, SystemIdentityResourceRelatesToArgsDto, SystemIdentityResourceTaggedByArgsDto, SystemIdentityResourceUpdateDto, SystemIdentityResourceUpdateMessageDto, SystemIdentityRoleAssociationsArgsDto, SystemIdentityRoleClaimDto, SystemIdentityRoleClaimInputDto, SystemIdentityRoleConfiguredByArgsDto, SystemIdentityRoleConnectionDto, SystemIdentityRoleDto, SystemIdentityRoleEdgeDto, SystemIdentityRoleInputDto, SystemIdentityRoleInputUpdateDto, SystemIdentityRoleMutationsCreateArgsDto, SystemIdentityRoleMutationsDto, SystemIdentityRoleMutationsUpdateArgsDto, SystemIdentityRoleRelatesFromArgsDto, SystemIdentityRoleRelatesToArgsDto, SystemIdentityRoleTaggedByArgsDto, SystemIdentityRoleUpdateDto, SystemIdentityRoleUpdateMessageDto, SystemIdentitySecretDto, SystemIdentitySecretInputDto, SystemIdentityUserAssociationsArgsDto, SystemIdentityUserClaimDto, SystemIdentityUserClaimInputDto, SystemIdentityUserConfiguredByArgsDto, SystemIdentityUserConnectionDto, SystemIdentityUserDto, SystemIdentityUserEdgeDto, SystemIdentityUserInputDto, SystemIdentityUserInputUpdateDto, SystemIdentityUserLoginDto, SystemIdentityUserLoginInputDto, SystemIdentityUserMutationsCreateArgsDto, SystemIdentityUserMutationsDto, SystemIdentityUserMutationsUpdateArgsDto, SystemIdentityUserRelatesFromArgsDto, SystemIdentityUserRelatesToArgsDto, SystemIdentityUserTaggedByArgsDto, SystemIdentityUserTokenDto, SystemIdentityUserTokenInputDto, SystemIdentityUserUpdateDto, SystemIdentityUserUpdateMessageDto, SystemMigrationHistoryAssociationsArgsDto, SystemMigrationHistoryConfiguredByArgsDto, SystemMigrationHistoryConnectionDto, SystemMigrationHistoryDto, SystemMigrationHistoryEdgeDto, SystemMigrationHistoryInputDto, SystemMigrationHistoryInputUpdateDto, SystemMigrationHistoryMutationsCreateArgsDto, SystemMigrationHistoryMutationsDto, SystemMigrationHistoryMutationsUpdateArgsDto, SystemMigrationHistoryRelatesFromArgsDto, SystemMigrationHistoryRelatesToArgsDto, SystemMigrationHistoryTaggedByArgsDto, SystemMigrationHistoryUpdateDto, SystemMigrationHistoryUpdateMessageDto, SystemNotificationCssTemplateConfigurationAssociationsArgsDto, SystemNotificationCssTemplateConfigurationConfiguredByArgsDto, SystemNotificationCssTemplateConfigurationConnectionDto, SystemNotificationCssTemplateConfigurationDto, SystemNotificationCssTemplateConfigurationEdgeDto, SystemNotificationCssTemplateConfigurationInputDto, SystemNotificationCssTemplateConfigurationInputUpdateDto, SystemNotificationCssTemplateConfigurationMutationsCreateArgsDto, SystemNotificationCssTemplateConfigurationMutationsDto, SystemNotificationCssTemplateConfigurationMutationsUpdateArgsDto, SystemNotificationCssTemplateConfigurationRelatesFromArgsDto, SystemNotificationCssTemplateConfigurationRelatesToArgsDto, SystemNotificationCssTemplateConfigurationTaggedByArgsDto, SystemNotificationCssTemplateConfigurationUpdateDto, SystemNotificationCssTemplateConfigurationUpdateMessageDto, SystemNotificationCssTemplateConfigurationUsedByArgsDto, SystemNotificationEventAssociationsArgsDto, SystemNotificationEventConfiguredByArgsDto, SystemNotificationEventConnectionDto, SystemNotificationEventDto, SystemNotificationEventEdgeDto, SystemNotificationEventInputDto, SystemNotificationEventInputUpdateDto, SystemNotificationEventMutationsCreateArgsDto, SystemNotificationEventMutationsDto, SystemNotificationEventMutationsUpdateArgsDto, SystemNotificationEventRelatesFromArgsDto, SystemNotificationEventRelatesToArgsDto, SystemNotificationEventTaggedByArgsDto, SystemNotificationEventUpdateDto, SystemNotificationEventUpdateMessageDto, SystemNotificationNotificationTemplateAssociationsArgsDto, SystemNotificationNotificationTemplateConfiguredByArgsDto, SystemNotificationNotificationTemplateConnectionDto, SystemNotificationNotificationTemplateDto, SystemNotificationNotificationTemplateEdgeDto, SystemNotificationNotificationTemplateInputDto, SystemNotificationNotificationTemplateInputUpdateDto, SystemNotificationNotificationTemplateMutationsCreateArgsDto, SystemNotificationNotificationTemplateMutationsDto, SystemNotificationNotificationTemplateMutationsUpdateArgsDto, SystemNotificationNotificationTemplateRelatesFromArgsDto, SystemNotificationNotificationTemplateRelatesToArgsDto, SystemNotificationNotificationTemplateTaggedByArgsDto, SystemNotificationNotificationTemplateUpdateDto, SystemNotificationNotificationTemplateUpdateMessageDto, SystemNotificationStatefulEventAssociationsArgsDto, SystemNotificationStatefulEventConfiguredByArgsDto, SystemNotificationStatefulEventConnectionDto, SystemNotificationStatefulEventDto, SystemNotificationStatefulEventEdgeDto, SystemNotificationStatefulEventInputDto, SystemNotificationStatefulEventInputUpdateDto, SystemNotificationStatefulEventMutationsCreateArgsDto, SystemNotificationStatefulEventMutationsDto, SystemNotificationStatefulEventMutationsUpdateArgsDto, SystemNotificationStatefulEventRelatesFromArgsDto, SystemNotificationStatefulEventRelatesToArgsDto, SystemNotificationStatefulEventTaggedByArgsDto, SystemNotificationStatefulEventUpdateDto, SystemNotificationStatefulEventUpdateMessageDto, SystemPersistentQueryAssociationsArgsDto, SystemPersistentQueryConfiguredByArgsDto, SystemPersistentQueryConnectionDto, SystemPersistentQueryDto, SystemPersistentQueryEdgeDto, SystemPersistentQueryInterfaceConfiguredByArgsDto, SystemPersistentQueryInterfaceDto, SystemPersistentQueryInterfaceRelatesFromArgsDto, SystemPersistentQueryInterfaceRelatesToArgsDto, SystemPersistentQueryInterfaceTaggedByArgsDto, SystemPersistentQueryRelatesFromArgsDto, SystemPersistentQueryRelatesToArgsDto, SystemPersistentQueryTaggedByArgsDto, SystemPersistentQueryUpdateDto, SystemPersistentQueryUpdateMessageDto, SystemQueryAssociationsArgsDto, SystemQueryConfiguredByArgsDto, SystemQueryConnectionDto, SystemQueryDto, SystemQueryEdgeDto, SystemQueryInputDto, SystemQueryInputUpdateDto, SystemQueryMutationsCreateArgsDto, SystemQueryMutationsDto, SystemQueryMutationsUpdateArgsDto, SystemQueryRelatesFromArgsDto, SystemQueryRelatesToArgsDto, SystemQueryTaggedByArgsDto, SystemQueryUpdateDto, SystemQueryUpdateMessageDto, SystemReportingConnectionInfoAssociationsArgsDto, SystemReportingConnectionInfoConfiguredByArgsDto, SystemReportingConnectionInfoConnectionDto, SystemReportingConnectionInfoDto, SystemReportingConnectionInfoEdgeDto, SystemReportingConnectionInfoInputDto, SystemReportingConnectionInfoInputUpdateDto, SystemReportingConnectionInfoMutationsCreateArgsDto, SystemReportingConnectionInfoMutationsDto, SystemReportingConnectionInfoMutationsUpdateArgsDto, SystemReportingConnectionInfoRelatesFromArgsDto, SystemReportingConnectionInfoRelatesToArgsDto, SystemReportingConnectionInfoTaggedByArgsDto, SystemReportingConnectionInfoUpdateDto, SystemReportingConnectionInfoUpdateMessageDto, SystemReportingConnectionInfoUsedByArgsDto, SystemReportingFileSystemContainerAssociationsArgsDto, SystemReportingFileSystemContainerConfiguredByArgsDto, SystemReportingFileSystemContainerConnectionDto, SystemReportingFileSystemContainerDto, SystemReportingFileSystemContainerEdgeDto, SystemReportingFileSystemContainerInterfaceConfiguredByArgsDto, SystemReportingFileSystemContainerInterfaceDto, SystemReportingFileSystemContainerInterfaceParentArgsDto, SystemReportingFileSystemContainerInterfaceRelatesFromArgsDto, SystemReportingFileSystemContainerInterfaceRelatesToArgsDto, SystemReportingFileSystemContainerInterfaceTaggedByArgsDto, SystemReportingFileSystemContainerParentArgsDto, SystemReportingFileSystemContainerRelatesFromArgsDto, SystemReportingFileSystemContainerRelatesToArgsDto, SystemReportingFileSystemContainerTaggedByArgsDto, SystemReportingFileSystemContainerUpdateDto, SystemReportingFileSystemContainerUpdateMessageDto, SystemReportingFileSystemContainer_ChildrenUnionConnectionDto, SystemReportingFileSystemContainer_ChildrenUnionDto, SystemReportingFileSystemContainer_ChildrenUnionEdgeDto, SystemReportingFileSystemEntityAssociationsArgsDto, SystemReportingFileSystemEntityConfiguredByArgsDto, SystemReportingFileSystemEntityConnectionDto, SystemReportingFileSystemEntityDto, SystemReportingFileSystemEntityEdgeDto, SystemReportingFileSystemEntityInterfaceConfiguredByArgsDto, SystemReportingFileSystemEntityInterfaceDto, SystemReportingFileSystemEntityInterfaceRelatesFromArgsDto, SystemReportingFileSystemEntityInterfaceRelatesToArgsDto, SystemReportingFileSystemEntityInterfaceTaggedByArgsDto, SystemReportingFileSystemEntityRelatesFromArgsDto, SystemReportingFileSystemEntityRelatesToArgsDto, SystemReportingFileSystemEntityTaggedByArgsDto, SystemReportingFileSystemEntityUpdateDto, SystemReportingFileSystemEntityUpdateMessageDto, SystemReportingFileSystemItemAssociationsArgsDto, SystemReportingFileSystemItemConfiguredByArgsDto, SystemReportingFileSystemItemConnectionDto, SystemReportingFileSystemItemDto, SystemReportingFileSystemItemEdgeDto, SystemReportingFileSystemItemInputDto, SystemReportingFileSystemItemInputUpdateDto, SystemReportingFileSystemItemMutationsCreateArgsDto, SystemReportingFileSystemItemMutationsDto, SystemReportingFileSystemItemMutationsUpdateArgsDto, SystemReportingFileSystemItemParentArgsDto, SystemReportingFileSystemItemRelatesFromArgsDto, SystemReportingFileSystemItemRelatesToArgsDto, SystemReportingFileSystemItemTaggedByArgsDto, SystemReportingFileSystemItemUpdateDto, SystemReportingFileSystemItemUpdateMessageDto, SystemReportingFolderAssociationsArgsDto, SystemReportingFolderChildrenArgsDto, SystemReportingFolderConfiguredByArgsDto, SystemReportingFolderConnectionDto, SystemReportingFolderDto, SystemReportingFolderEdgeDto, SystemReportingFolderInputDto, SystemReportingFolderInputUpdateDto, SystemReportingFolderMutationsCreateArgsDto, SystemReportingFolderMutationsDto, SystemReportingFolderMutationsUpdateArgsDto, SystemReportingFolderParentArgsDto, SystemReportingFolderRelatesFromArgsDto, SystemReportingFolderRelatesToArgsDto, SystemReportingFolderRootAssociationsArgsDto, SystemReportingFolderRootChildrenArgsDto, SystemReportingFolderRootConfiguredByArgsDto, SystemReportingFolderRootConnectionDto, SystemReportingFolderRootDto, SystemReportingFolderRootEdgeDto, SystemReportingFolderRootInputDto, SystemReportingFolderRootInputUpdateDto, SystemReportingFolderRootMutationsCreateArgsDto, SystemReportingFolderRootMutationsDto, SystemReportingFolderRootMutationsUpdateArgsDto, SystemReportingFolderRootRelatesFromArgsDto, SystemReportingFolderRootRelatesToArgsDto, SystemReportingFolderRootTaggedByArgsDto, SystemReportingFolderRootUpdateDto, SystemReportingFolderRootUpdateMessageDto, SystemReportingFolderTaggedByArgsDto, SystemReportingFolderUpdateDto, SystemReportingFolderUpdateMessageDto, SystemReportingFolder_ParentUnionConnectionDto, SystemReportingFolder_ParentUnionDto, SystemReportingFolder_ParentUnionEdgeDto, SystemSimpleRtQueryAssociationsArgsDto, SystemSimpleRtQueryConfiguredByArgsDto, SystemSimpleRtQueryConnectionDto, SystemSimpleRtQueryDto, SystemSimpleRtQueryEdgeDto, SystemSimpleRtQueryInputDto, SystemSimpleRtQueryInputUpdateDto, SystemSimpleRtQueryMutationsCreateArgsDto, SystemSimpleRtQueryMutationsDto, SystemSimpleRtQueryMutationsUpdateArgsDto, SystemSimpleRtQueryRelatesFromArgsDto, SystemSimpleRtQueryRelatesToArgsDto, SystemSimpleRtQueryTaggedByArgsDto, SystemSimpleRtQueryUpdateDto, SystemSimpleRtQueryUpdateMessageDto, SystemSortOrderItemDto, SystemSortOrderItemInputDto, SystemTenantAssociationsArgsDto, SystemTenantConfigurationAssociationsArgsDto, SystemTenantConfigurationConfiguredByArgsDto, SystemTenantConfigurationConnectionDto, SystemTenantConfigurationDto, SystemTenantConfigurationEdgeDto, SystemTenantConfigurationInputDto, SystemTenantConfigurationInputUpdateDto, SystemTenantConfigurationMutationsCreateArgsDto, SystemTenantConfigurationMutationsDto, SystemTenantConfigurationMutationsUpdateArgsDto, SystemTenantConfigurationRelatesFromArgsDto, SystemTenantConfigurationRelatesToArgsDto, SystemTenantConfigurationTaggedByArgsDto, SystemTenantConfigurationUpdateDto, SystemTenantConfigurationUpdateMessageDto, SystemTenantConfigurationUsedByArgsDto, SystemTenantConfiguredByArgsDto, SystemTenantConnectionDto, SystemTenantDto, SystemTenantEdgeDto, SystemTenantInputDto, SystemTenantInputUpdateDto, SystemTenantModeConfigurationAssociationsArgsDto, SystemTenantModeConfigurationConfiguredByArgsDto, SystemTenantModeConfigurationConnectionDto, SystemTenantModeConfigurationDto, SystemTenantModeConfigurationEdgeDto, SystemTenantModeConfigurationInputDto, SystemTenantModeConfigurationInputUpdateDto, SystemTenantModeConfigurationMutationsCreateArgsDto, SystemTenantModeConfigurationMutationsDto, SystemTenantModeConfigurationMutationsUpdateArgsDto, SystemTenantModeConfigurationRelatesFromArgsDto, SystemTenantModeConfigurationRelatesToArgsDto, SystemTenantModeConfigurationTaggedByArgsDto, SystemTenantModeConfigurationUpdateDto, SystemTenantModeConfigurationUpdateMessageDto, SystemTenantModeConfigurationUsedByArgsDto, SystemTenantMutationsCreateArgsDto, SystemTenantMutationsDto, SystemTenantMutationsUpdateArgsDto, SystemTenantRelatesFromArgsDto, SystemTenantRelatesToArgsDto, SystemTenantTaggedByArgsDto, SystemTenantUpdateDto, SystemTenantUpdateMessageDto, SystemTextSearchFilterDto, SystemTextSearchFilterInputDto, SystemUiDashboardAssociationsArgsDto, SystemUiDashboardChildrenArgsDto, SystemUiDashboardConfiguredByArgsDto, SystemUiDashboardConnectionDto, SystemUiDashboardDto, SystemUiDashboardEdgeDto, SystemUiDashboardInputDto, SystemUiDashboardInputUpdateDto, SystemUiDashboardMutationsCreateArgsDto, SystemUiDashboardMutationsDto, SystemUiDashboardMutationsUpdateArgsDto, SystemUiDashboardRelatesFromArgsDto, SystemUiDashboardRelatesToArgsDto, SystemUiDashboardTaggedByArgsDto, SystemUiDashboardUpdateDto, SystemUiDashboardUpdateMessageDto, SystemUiDashboardWidgetAssociationsArgsDto, SystemUiDashboardWidgetConfiguredByArgsDto, SystemUiDashboardWidgetConnectionDto, SystemUiDashboardWidgetDto, SystemUiDashboardWidgetEdgeDto, SystemUiDashboardWidgetInputDto, SystemUiDashboardWidgetInputUpdateDto, SystemUiDashboardWidgetMutationsCreateArgsDto, SystemUiDashboardWidgetMutationsDto, SystemUiDashboardWidgetMutationsUpdateArgsDto, SystemUiDashboardWidgetParentArgsDto, SystemUiDashboardWidgetRelatesFromArgsDto, SystemUiDashboardWidgetRelatesToArgsDto, SystemUiDashboardWidgetTaggedByArgsDto, SystemUiDashboardWidgetUpdateDto, SystemUiDashboardWidgetUpdateMessageDto, SystemUiDashboardWidget_ChildrenUnionConnectionDto, SystemUiDashboardWidget_ChildrenUnionDto, SystemUiDashboardWidget_ChildrenUnionEdgeDto, SystemUiDashboard_ParentUnionConnectionDto, SystemUiDashboard_ParentUnionDto, SystemUiDashboard_ParentUnionEdgeDto, SystemUiProcessDiagramAssociationsArgsDto, SystemUiProcessDiagramConfiguredByArgsDto, SystemUiProcessDiagramConnectionDto, SystemUiProcessDiagramDto, SystemUiProcessDiagramEdgeDto, SystemUiProcessDiagramInputDto, SystemUiProcessDiagramInputUpdateDto, SystemUiProcessDiagramMutationsCreateArgsDto, SystemUiProcessDiagramMutationsDto, SystemUiProcessDiagramMutationsUpdateArgsDto, SystemUiProcessDiagramRelatesFromArgsDto, SystemUiProcessDiagramRelatesToArgsDto, SystemUiProcessDiagramTaggedByArgsDto, SystemUiProcessDiagramUpdateDto, SystemUiProcessDiagramUpdateMessageDto, SystemUiSymbolDefinitionAssociationsArgsDto, SystemUiSymbolDefinitionConfiguredByArgsDto, SystemUiSymbolDefinitionConnectionDto, SystemUiSymbolDefinitionDto, SystemUiSymbolDefinitionEdgeDto, SystemUiSymbolDefinitionInputDto, SystemUiSymbolDefinitionInputUpdateDto, SystemUiSymbolDefinitionMutationsCreateArgsDto, SystemUiSymbolDefinitionMutationsDto, SystemUiSymbolDefinitionMutationsUpdateArgsDto, SystemUiSymbolDefinitionParentArgsDto, SystemUiSymbolDefinitionRelatesFromArgsDto, SystemUiSymbolDefinitionRelatesToArgsDto, SystemUiSymbolDefinitionTaggedByArgsDto, SystemUiSymbolDefinitionUpdateDto, SystemUiSymbolDefinitionUpdateMessageDto, SystemUiSymbolDefinition_ChildrenUnionConnectionDto, SystemUiSymbolDefinition_ChildrenUnionDto, SystemUiSymbolDefinition_ChildrenUnionEdgeDto, SystemUiSymbolLibraryAssociationsArgsDto, SystemUiSymbolLibraryChildrenArgsDto, SystemUiSymbolLibraryConfiguredByArgsDto, SystemUiSymbolLibraryConnectionDto, SystemUiSymbolLibraryDto, SystemUiSymbolLibraryEdgeDto, SystemUiSymbolLibraryInputDto, SystemUiSymbolLibraryInputUpdateDto, SystemUiSymbolLibraryMutationsCreateArgsDto, SystemUiSymbolLibraryMutationsDto, SystemUiSymbolLibraryMutationsUpdateArgsDto, SystemUiSymbolLibraryRelatesFromArgsDto, SystemUiSymbolLibraryRelatesToArgsDto, SystemUiSymbolLibraryTaggedByArgsDto, SystemUiSymbolLibraryUpdateDto, SystemUiSymbolLibraryUpdateMessageDto, SystemUiSymbolLibrary_ParentUnionConnectionDto, SystemUiSymbolLibrary_ParentUnionDto, SystemUiSymbolLibrary_ParentUnionEdgeDto, SystemUiuiElementAssociationsArgsDto, SystemUiuiElementConfiguredByArgsDto, SystemUiuiElementConnectionDto, SystemUiuiElementDto, SystemUiuiElementEdgeDto, SystemUiuiElementInterfaceConfiguredByArgsDto, SystemUiuiElementInterfaceDto, SystemUiuiElementInterfaceRelatesFromArgsDto, SystemUiuiElementInterfaceRelatesToArgsDto, SystemUiuiElementInterfaceTaggedByArgsDto, SystemUiuiElementRelatesFromArgsDto, SystemUiuiElementRelatesToArgsDto, SystemUiuiElementTaggedByArgsDto, SystemUiuiElementUpdateDto, SystemUiuiElementUpdateMessageDto, TenantDto, TenantIdProvider, TusUploadOptions, TusUploadResult, UserDto };