cc/src/PSSailpointCC/Model/ListApplications200ResponseInnerOwner.ps1
# # IdentityNow cc (private) APIs # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # Version: 1.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Id No description available. .PARAMETER Name No description available. .OUTPUTS ListApplications200ResponseInnerOwner<PSCustomObject> #> function Initialize-CCListApplications200ResponseInnerOwner { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${Id}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [String] ${Name} ) Process { 'Creating PSCustomObject: PSSailpointCC => CCListApplications200ResponseInnerOwner' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "id" = ${Id} "name" = ${Name} } return $PSO } } <# .SYNOPSIS Convert from JSON to ListApplications200ResponseInnerOwner<PSCustomObject> .DESCRIPTION Convert from JSON to ListApplications200ResponseInnerOwner<PSCustomObject> .PARAMETER Json Json object .OUTPUTS ListApplications200ResponseInnerOwner<PSCustomObject> #> function ConvertFrom-CCJsonToListApplications200ResponseInnerOwner { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpointCC => CCListApplications200ResponseInnerOwner' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in CCListApplications200ResponseInnerOwner $AllProperties = ("id", "name") 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 "id"))) { #optional property not found $Id = $null } else { $Id = $JsonParameters.PSobject.Properties["id"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "name"))) { #optional property not found $Name = $null } else { $Name = $JsonParameters.PSobject.Properties["name"].value } $PSO = [PSCustomObject]@{ "id" = ${Id} "name" = ${Name} } return $PSO } } |