datadirect
Version:
Types for working with Blackbaud's front-end APIs
23 lines (22 loc) • 539 B
TypeScript
import { DateString } from '@battis/descriptive-types';
export type Payload = {
id?: number;
leadSectionId?: number;
format: 'json';
contextLabelId?: number;
contentId?: number;
contentIndexId?: number;
contextValue?: number;
topicIndexId?: number;
editMode?: string;
active?: boolean;
future?: boolean;
expired?: boolean;
viewDate?: DateString;
fromDate?: DateString;
toDate?: DateString;
row?: number;
column?: number;
cell?: number;
selectedOnly?: boolean;
};