Types/OpenPackage/set_ContentStatus.ps1

<#
.SYNOPSIS
    Sets OpenPackage `ContentStatus`
.DESCRIPTION
    Sets the OpenPackage `ContentStatus` property.
.LINK
    https://learn.microsoft.com/en-us/dotnet/api/system.io.packaging.packageproperties.contentstatus?wt.mc_id=MVP_321542
#>

param([string]$ContentStatus)

$this.PackageProperties.ContentStatus = $ContentStatus