Type Alias CreateCustomMenuDto

CreateCustomMenuDto: {
    title: string;
    url: string;
    icon: CustomMenuIcon;
    showOnCompany: boolean;
    showOnLocation: boolean;
    showToAllLocations: boolean;
    openMode: CustomMenuOpenMode;
    locations: string[];
    userRole: CustomMenuUserRole;
    allowCamera?: boolean;
    allowMicrophone?: boolean;
}

Type declaration

  • title: string
  • url: string
  • icon: CustomMenuIcon
  • showOnCompany: boolean
  • showOnLocation: boolean
  • showToAllLocations: boolean
  • openMode: CustomMenuOpenMode
  • locations: string[]
  • userRole: CustomMenuUserRole
  • OptionalallowCamera?: boolean
  • OptionalallowMicrophone?: boolean