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