ResolveProjectDeletionGuardRequest constructor

ResolveProjectDeletionGuardRequest({
  1. String? projectId,
  2. String? guardId,
})

Implementation

factory ResolveProjectDeletionGuardRequest({
  $core.String? projectId,
  $core.String? guardId,
}) {
  final result = create();
  if (projectId != null) result.projectId = projectId;
  if (guardId != null) result.guardId = guardId;
  return result;
}