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