Skip to content

MODELS Group User Model

mcverter edited this page Jul 30, 2020 · 1 revision

Group User Model

src: r4h/models

Interface

export interface ContactDetails {
  facebookGroup?: string;
  web?: { [id: string]: string }; // List of URLs
  phone?: string[];
  email?: string[];
}
export interface ContactGroup {
  /** general contact information */
  general?: ContactDetails;
  /** details of how those that need help can interact with the organization  */
  getHelp?: ContactDetails;
  /** details of how those who want to help can interact with the organization  */
  volunteers?: ContactDetails;
}

Relationships

Diagrams

Clone this wiki locally