functions/Request-UserLicense.ps1


function Request-UserLicense {
    [CmdletBinding()]
    Param (
        # Zendesk Connection Context from `Get-ZendeskConnection`
        [Parameter(Mandatory = $false)]
        [PSTypeName('ZendeskContext')]
        [PSCustomObject]
        $Context = $null
    )

    throw [System.NotImplementedException]::new()

}