ExportDataRequest constructor
ExportDataRequest({
- Iterable<
String> ? orgIds, - Iterable<
String> ? excludedOrgIds, - bool? withPasswords,
- bool? withOtp,
- bool? responseOutput,
- ExportDataRequest_LocalOutput? localOutput,
- ExportDataRequest_S3Output? s3Output,
- ExportDataRequest_GCSOutput? gcsOutput,
- String? timeout,
Implementation
factory ExportDataRequest({
$core.Iterable<$core.String>? orgIds,
$core.Iterable<$core.String>? excludedOrgIds,
$core.bool? withPasswords,
$core.bool? withOtp,
$core.bool? responseOutput,
ExportDataRequest_LocalOutput? localOutput,
ExportDataRequest_S3Output? s3Output,
ExportDataRequest_GCSOutput? gcsOutput,
$core.String? timeout,
}) {
final $result = create();
if (orgIds != null) {
$result.orgIds.addAll(orgIds);
}
if (excludedOrgIds != null) {
$result.excludedOrgIds.addAll(excludedOrgIds);
}
if (withPasswords != null) {
$result.withPasswords = withPasswords;
}
if (withOtp != null) {
$result.withOtp = withOtp;
}
if (responseOutput != null) {
$result.responseOutput = responseOutput;
}
if (localOutput != null) {
$result.localOutput = localOutput;
}
if (s3Output != null) {
$result.s3Output = s3Output;
}
if (gcsOutput != null) {
$result.gcsOutput = gcsOutput;
}
if (timeout != null) {
$result.timeout = timeout;
}
return $result;
}