Interface IInterventionResponse<T>

interface IInterventionResponse<T> {
    createdAt?: string;
    data: IInterventionTypeMap[T]["response"];
    id?: string;
    interventionId: string;
    interventionType: T;
    updatedAt?: string;
    userId?: string;
}

Type Parameters

Hierarchy (view full)

Properties

createdAt?: string
data: IInterventionTypeMap[T]["response"]
id?: string
interventionId: string
interventionType: T
updatedAt?: string
userId?: string

Generated using TypeDoc