Model/SharingCapabilitiesChangedValueRequestModel.ps1
# # Cloud Governance Api # Contact: support@avepoint.com # <# SharingCapabilitiesChangedValueRequestModel<PSCustomObject> #> function New-SharingCapabilitiesChangedValueRequestModel { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${NewValue} = "Disabled", [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${OriginalValue} = "Disabled", [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${ActivityId} ) Process { 'Creating PSCustomObject: Cloud.Governance.Client => SharingCapabilitiesChangedValueRequestModel' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "NewValue" = ${NewValue} "OriginalValue" = ${OriginalValue} "ActivityId" = ${ActivityId} } return $PSO } } <# SharingCapabilitiesChangedValueRequestModel<PSCustomObject> #> function ConvertFrom-JsonToSharingCapabilitiesChangedValueRequestModel { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: Cloud.Governance.Client => SharingCapabilitiesChangedValueRequestModel' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in SharingCapabilitiesChangedValueRequestModel $AllProperties = $("NewValue", "OriginalValue", "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 "NewValue"))) { #optional property not found $NewValue = $null } else { $NewValue = $JsonParameters.PSobject.Properties["NewValue"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "OriginalValue"))) { #optional property not found $OriginalValue = $null } else { $OriginalValue = $JsonParameters.PSobject.Properties["OriginalValue"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "ActivityId"))) { #optional property not found $ActivityId = $null } else { $ActivityId = $JsonParameters.PSobject.Properties["ActivityId"].value } $PSO = [PSCustomObject]@{ "NewValue" = ${NewValue} "OriginalValue" = ${OriginalValue} "ActivityId" = ${ActivityId} } return $PSO } } |