src/tools/types/Defect.ps1

class DefectProject{
    [String]$_rallyAPIMajor
    [String]$_rallyAPIMinor 
    [String]$_ref
    [String]$_refObjectUUID
    [String]$_refObjectName
    [String]$_type
}
class Defect{
    [String]$FormattedID
    [String]$Name
    [String]$Description
    [String]$c_ApprovedProject
    [String]$c_FoundinVersion
    [String]$c_VerifiedinVersion
    [String]$c_Impact
    [String]$c_Likelihood
    [String]$Priority
    [String]$c_Product
    [String]$c_Activity
    [String]$c_Workaround
    [String]$Environment
    [String]$SalesforceCaseNumber
    [String]$Severity
    [String]$State
    [DefectProject]$Project
    [String]$DefectSuites
    [Boolean]$Expedite
    [String]$DisplayColor
    Defect(){

    }
}