Type alias HighSystemsResponseGetRolePermissions

HighSystemsResponseGetRolePermissions: {
    results: {
        fields: {
            add: boolean;
            edit: boolean;
            hasAccess: boolean;
            relatedField: string;
            relatedTable: string;
            view: boolean;
        }[];
        tables: {
            add: boolean;
            defaultDashboard?: string;
            defaultForm?: string;
            delete: boolean;
            deleteCondition?: string;
            edit: boolean;
            editCondition?: string;
            hasAccess: boolean;
            permissions: boolean;
            relatedTable: string;
            settings: boolean;
            view: boolean;
            viewCondition?: string;
        }[];
    };
    success: boolean;
}

Type declaration

  • results: {
        fields: {
            add: boolean;
            edit: boolean;
            hasAccess: boolean;
            relatedField: string;
            relatedTable: string;
            view: boolean;
        }[];
        tables: {
            add: boolean;
            defaultDashboard?: string;
            defaultForm?: string;
            delete: boolean;
            deleteCondition?: string;
            edit: boolean;
            editCondition?: string;
            hasAccess: boolean;
            permissions: boolean;
            relatedTable: string;
            settings: boolean;
            view: boolean;
            viewCondition?: string;
        }[];
    }
    • fields: {
          add: boolean;
          edit: boolean;
          hasAccess: boolean;
          relatedField: string;
          relatedTable: string;
          view: boolean;
      }[]
    • tables: {
          add: boolean;
          defaultDashboard?: string;
          defaultForm?: string;
          delete: boolean;
          deleteCondition?: string;
          edit: boolean;
          editCondition?: string;
          hasAccess: boolean;
          permissions: boolean;
          relatedTable: string;
          settings: boolean;
          view: boolean;
          viewCondition?: string;
      }[]
  • success: boolean

Generated using TypeDoc