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() } |