notifications/src/PSSailpoint.Notifications/Model/TemplateslackCustomFields.ps1
|
# # Identity Security Cloud API - Notifications # Use these APIs to interact with the Identity Security Cloud 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: v1 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER RequestType The type of request .PARAMETER ContainsDeny Whether the request contains a deny action .PARAMETER CampaignId The campaign ID .PARAMETER CampaignStatus The campaign status .OUTPUTS TemplateslackCustomFields<PSCustomObject> #> function Initialize-TemplateslackCustomFields { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${RequestType}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${ContainsDeny}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${CampaignId}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${CampaignStatus} ) Process { 'Creating PSCustomObject: PSSailpoint.Notifications => TemplateslackCustomFields' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "requestType" = ${RequestType} "containsDeny" = ${ContainsDeny} "campaignId" = ${CampaignId} "campaignStatus" = ${CampaignStatus} } return $PSO } } <# .SYNOPSIS Convert from JSON to TemplateslackCustomFields<PSCustomObject> .DESCRIPTION Convert from JSON to TemplateslackCustomFields<PSCustomObject> .PARAMETER Json Json object .OUTPUTS TemplateslackCustomFields<PSCustomObject> #> function ConvertFrom-JsonToTemplateslackCustomFields { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.Notifications => TemplateslackCustomFields' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in TemplateslackCustomFields $AllProperties = ("requestType", "containsDeny", "campaignId", "campaignStatus") 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 "requestType"))) { #optional property not found $RequestType = $null } else { $RequestType = $JsonParameters.PSobject.Properties["requestType"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "containsDeny"))) { #optional property not found $ContainsDeny = $null } else { $ContainsDeny = $JsonParameters.PSobject.Properties["containsDeny"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "campaignId"))) { #optional property not found $CampaignId = $null } else { $CampaignId = $JsonParameters.PSobject.Properties["campaignId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "campaignStatus"))) { #optional property not found $CampaignStatus = $null } else { $CampaignStatus = $JsonParameters.PSobject.Properties["campaignStatus"].value } $PSO = [PSCustomObject]@{ "requestType" = ${RequestType} "containsDeny" = ${ContainsDeny} "campaignId" = ${CampaignId} "campaignStatus" = ${CampaignStatus} } return $PSO } } |