Private/Convert-Alert.ps1

filter Convert-Alert
{
    [PSCustomObject]@{
        Sender      = $_.sender_name
        Event       = $_.event
        Start       = Get-Date -UnixTimeSeconds $_.start
        End         = Get-Date -UnixTimeSeconds $_.end
        Description = $_.description
        Tags        = $_.tags
    }
}