ImportDataSuccessOrg constructor
ImportDataSuccessOrg({
- String? orgId,
- Iterable<
String> ? projectIds, - Iterable<
String> ? projectRoles, - Iterable<
String> ? oidcAppIds, - Iterable<
String> ? apiAppIds, - Iterable<
String> ? humanUserIds, - Iterable<
String> ? machineUserIds, - Iterable<
String> ? actionIds, - Iterable<
SetTriggerActionsRequest> ? triggerActions, - Iterable<
ImportDataSuccessProjectGrant> ? projectGrants, - Iterable<
ImportDataSuccessUserGrant> ? userGrants, - Iterable<
String> ? orgMembers, - Iterable<
ImportDataSuccessProjectMember> ? projectMembers, - Iterable<
ImportDataSuccessProjectGrantMember> ? projectGrantMembers, - Iterable<
String> ? oidcIpds, - Iterable<
String> ? jwtIdps, - Iterable<
String> ? idpLinks, - Iterable<
ImportDataSuccessUserLinks> ? userLinks, - Iterable<
ImportDataSuccessUserMetadata> ? userMetadata, - Iterable<
String> ? domains, - Iterable<
String> ? appKeys, - Iterable<
String> ? machineKeys,
Implementation
factory ImportDataSuccessOrg({
$core.String? orgId,
$core.Iterable<$core.String>? projectIds,
$core.Iterable<$core.String>? projectRoles,
$core.Iterable<$core.String>? oidcAppIds,
$core.Iterable<$core.String>? apiAppIds,
$core.Iterable<$core.String>? humanUserIds,
$core.Iterable<$core.String>? machineUserIds,
$core.Iterable<$core.String>? actionIds,
$core.Iterable<$12.SetTriggerActionsRequest>? triggerActions,
$core.Iterable<ImportDataSuccessProjectGrant>? projectGrants,
$core.Iterable<ImportDataSuccessUserGrant>? userGrants,
$core.Iterable<$core.String>? orgMembers,
$core.Iterable<ImportDataSuccessProjectMember>? projectMembers,
$core.Iterable<ImportDataSuccessProjectGrantMember>? projectGrantMembers,
$core.Iterable<$core.String>? oidcIpds,
$core.Iterable<$core.String>? jwtIdps,
$core.Iterable<$core.String>? idpLinks,
$core.Iterable<ImportDataSuccessUserLinks>? userLinks,
$core.Iterable<ImportDataSuccessUserMetadata>? userMetadata,
$core.Iterable<$core.String>? domains,
$core.Iterable<$core.String>? appKeys,
$core.Iterable<$core.String>? machineKeys,
}) {
final result = create();
if (orgId != null) result.orgId = orgId;
if (projectIds != null) result.projectIds.addAll(projectIds);
if (projectRoles != null) result.projectRoles.addAll(projectRoles);
if (oidcAppIds != null) result.oidcAppIds.addAll(oidcAppIds);
if (apiAppIds != null) result.apiAppIds.addAll(apiAppIds);
if (humanUserIds != null) result.humanUserIds.addAll(humanUserIds);
if (machineUserIds != null) result.machineUserIds.addAll(machineUserIds);
if (actionIds != null) result.actionIds.addAll(actionIds);
if (triggerActions != null) result.triggerActions.addAll(triggerActions);
if (projectGrants != null) result.projectGrants.addAll(projectGrants);
if (userGrants != null) result.userGrants.addAll(userGrants);
if (orgMembers != null) result.orgMembers.addAll(orgMembers);
if (projectMembers != null) result.projectMembers.addAll(projectMembers);
if (projectGrantMembers != null)
result.projectGrantMembers.addAll(projectGrantMembers);
if (oidcIpds != null) result.oidcIpds.addAll(oidcIpds);
if (jwtIdps != null) result.jwtIdps.addAll(jwtIdps);
if (idpLinks != null) result.idpLinks.addAll(idpLinks);
if (userLinks != null) result.userLinks.addAll(userLinks);
if (userMetadata != null) result.userMetadata.addAll(userMetadata);
if (domains != null) result.domains.addAll(domains);
if (appKeys != null) result.appKeys.addAll(appKeys);
if (machineKeys != null) result.machineKeys.addAll(machineKeys);
return result;
}