v3/src/PSSailpoint/Model/Approval.ps1
# # IdentityNow V3 API # Use these APIs to interact with the IdentityNow platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs. # Version: 3.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Comments No description available. .PARAMETER Created A date-time in ISO-8601 format .PARAMETER Modified A date-time in ISO-8601 format .PARAMETER Owner No description available. .PARAMETER Result The result of the approval .PARAMETER Type No description available. .OUTPUTS Approval<PSCustomObject> #> function Initialize-Approval { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Comments}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [System.Nullable[System.DateTime]] ${Created}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [System.Nullable[System.DateTime]] ${Modified}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Owner}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [String] ${Result}, [Parameter(Position = 5, ValueFromPipelineByPropertyName = $true)] [String] ${Type} ) Process { 'Creating PSCustomObject: PSSailpoint => Approval' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "comments" = ${Comments} "created" = ${Created} "modified" = ${Modified} "owner" = ${Owner} "result" = ${Result} "type" = ${Type} } return $PSO } } <# .SYNOPSIS Convert from JSON to Approval<PSCustomObject> .DESCRIPTION Convert from JSON to Approval<PSCustomObject> .PARAMETER Json Json object .OUTPUTS Approval<PSCustomObject> #> function ConvertFrom-JsonToApproval { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint => Approval' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in Approval $AllProperties = ("comments", "created", "modified", "owner", "result", "type") 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 "comments"))) { #optional property not found $Comments = $null } else { $Comments = $JsonParameters.PSobject.Properties["comments"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "created"))) { #optional property not found $Created = $null } else { $Created = $JsonParameters.PSobject.Properties["created"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "modified"))) { #optional property not found $Modified = $null } else { $Modified = $JsonParameters.PSobject.Properties["modified"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "owner"))) { #optional property not found $Owner = $null } else { $Owner = $JsonParameters.PSobject.Properties["owner"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "result"))) { #optional property not found $Result = $null } else { $Result = $JsonParameters.PSobject.Properties["result"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "type"))) { #optional property not found $Type = $null } else { $Type = $JsonParameters.PSobject.Properties["type"].value } $PSO = [PSCustomObject]@{ "comments" = ${Comments} "created" = ${Created} "modified" = ${Modified} "owner" = ${Owner} "result" = ${Result} "type" = ${Type} } return $PSO } } |