v3/src/PSSailpoint/Model/AccountUnlockRequest.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

Request used for account unlock

.PARAMETER ExternalVerificationId
If set, an external process validates that the user wants to proceed with this request.
.PARAMETER UnlockIDNAccount
If set, the IDN account is unlocked after the workflow completes.
.PARAMETER ForceProvisioning
If set, provisioning updates the account attribute at the source. This option is used when the account is not synced to ensure the attribute is updated.
.OUTPUTS

AccountUnlockRequest<PSCustomObject>
#>


function Initialize-AccountUnlockRequest {
    [CmdletBinding()]
    Param (
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${ExternalVerificationId},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [System.Nullable[Boolean]]
        ${UnlockIDNAccount},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [System.Nullable[Boolean]]
        ${ForceProvisioning}
    )

    Process {
        'Creating PSCustomObject: PSSailpoint => AccountUnlockRequest' | Write-Debug
        $PSBoundParameters | Out-DebugParameter | Write-Debug


        $PSO = [PSCustomObject]@{
            "externalVerificationId" = ${ExternalVerificationId}
            "unlockIDNAccount" = ${UnlockIDNAccount}
            "forceProvisioning" = ${ForceProvisioning}
        }

        return $PSO
    }
}

<#
.SYNOPSIS

Convert from JSON to AccountUnlockRequest<PSCustomObject>

.DESCRIPTION

Convert from JSON to AccountUnlockRequest<PSCustomObject>

.PARAMETER Json

Json object

.OUTPUTS

AccountUnlockRequest<PSCustomObject>
#>

function ConvertFrom-JsonToAccountUnlockRequest {
    Param(
        [AllowEmptyString()]
        [string]$Json
    )

    Process {
        'Converting JSON to PSCustomObject: PSSailpoint => AccountUnlockRequest' | Write-Debug
        $PSBoundParameters | Out-DebugParameter | Write-Debug

        $JsonParameters = ConvertFrom-Json -InputObject $Json

        # check if Json contains properties not defined in AccountUnlockRequest
        $AllProperties = ("externalVerificationId", "unlockIDNAccount", "forceProvisioning")
        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 "externalVerificationId"))) { #optional property not found
            $ExternalVerificationId = $null
        } else {
            $ExternalVerificationId = $JsonParameters.PSobject.Properties["externalVerificationId"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "unlockIDNAccount"))) { #optional property not found
            $UnlockIDNAccount = $null
        } else {
            $UnlockIDNAccount = $JsonParameters.PSobject.Properties["unlockIDNAccount"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "forceProvisioning"))) { #optional property not found
            $ForceProvisioning = $null
        } else {
            $ForceProvisioning = $JsonParameters.PSobject.Properties["forceProvisioning"].value
        }

        $PSO = [PSCustomObject]@{
            "externalVerificationId" = ${ExternalVerificationId}
            "unlockIDNAccount" = ${UnlockIDNAccount}
            "forceProvisioning" = ${ForceProvisioning}
        }

        return $PSO
    }

}