Model/MailboxSentItems.ps1
# # Cloud Governance Api # Contact: support@avepoint.com # <# MailboxSentItems<PSCustomObject> #> function New-MailboxSentItems { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${CopySendAs} = $false, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${CopySendOnBehalf} = $false, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${ActivityId} ) Process { 'Creating PSCustomObject: Cloud.Governance.Client => MailboxSentItems' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "CopySendAs" = ${CopySendAs} "CopySendOnBehalf" = ${CopySendOnBehalf} "ActivityId" = ${ActivityId} } return $PSO } } <# MailboxSentItems<PSCustomObject> #> function ConvertFrom-JsonToMailboxSentItems { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: Cloud.Governance.Client => MailboxSentItems' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in MailboxSentItems $AllProperties = $("CopySendAs", "CopySendOnBehalf", "ActivityId") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } if (!([bool]($JsonParameters.PSobject.Properties.name -match "CopySendAs"))) { #optional property not found $CopySendAs = $null } else { $CopySendAs = $JsonParameters.PSobject.Properties["CopySendAs"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "CopySendOnBehalf"))) { #optional property not found $CopySendOnBehalf = $null } else { $CopySendOnBehalf = $JsonParameters.PSobject.Properties["CopySendOnBehalf"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "ActivityId"))) { #optional property not found $ActivityId = $null } else { $ActivityId = $JsonParameters.PSobject.Properties["ActivityId"].value } $PSO = [PSCustomObject]@{ "CopySendAs" = ${CopySendAs} "CopySendOnBehalf" = ${CopySendOnBehalf} "ActivityId" = ${ActivityId} } return $PSO } } |