Methods (5)
Constants (1)
▶
CaseStatus
enum (2 values)
#
'active'
'closed'
Types (7)
▶
Case
6 fields
#
interface Case {
status: enum: "active", "closed"
effectiveStartDate?: string
effectiveEndDate?: string
primaryApplicantId: string
members?: array[object]
assignedToId?: string
}
▶
CaseMember
2 fields
#
interface CaseMember {
personId: string
relationship: string
}
▶
CaseCreate
6 fields
#
interface CaseCreate {
status?: enum: "active", "closed"
effectiveStartDate?: string
effectiveEndDate?: string
primaryApplicantId?: string
members?: array[object]
assignedToId?: string
}
▶
CaseUpdate
6 fields
#
interface CaseUpdate {
status?: enum: "active", "closed"
effectiveStartDate?: string
effectiveEndDate?: string
primaryApplicantId?: string
members?: array[object]
assignedToId?: string
}
▶
CaseList
4 fields
#
interface CaseList {
total: number
limit: number
offset: number
hasNext?: boolean
}
▶
CaseWritable
6 fields
#
interface CaseWritable {
status: enum: "active", "closed"
effectiveStartDate?: string
effectiveEndDate?: string
primaryApplicantId: string
members?: array[object]
assignedToId?: string
}
▶
CaseListWritable
4 fields
#
interface CaseListWritable {
total: number
limit: number
offset: number
hasNext?: boolean
}