interface User {
    acceptedTermsAndConditionsAt: null | Date;
    canDeleteOrganisation: boolean;
    hasAcceptedTermsAndConditions: boolean;
    id: string;
    isReadOnly: boolean;
    type: "SUPER" | "USER";
}

Properties

acceptedTermsAndConditionsAt: null | Date
canDeleteOrganisation: boolean
hasAcceptedTermsAndConditions: boolean
id: string
isReadOnly: boolean
type: "SUPER" | "USER"