28 lines
426 B
TypeScript
Executable File
28 lines
426 B
TypeScript
Executable File
export interface IFormQuery {
|
|
includeTodayCount?: boolean;
|
|
}
|
|
|
|
export interface IWebhook {
|
|
url: string;
|
|
handshakeKey?: string;
|
|
metadata?: boolean;
|
|
}
|
|
|
|
interface ISubField {
|
|
DefaultVal: string;
|
|
ID: string;
|
|
Label: string;
|
|
}
|
|
|
|
export interface IField {
|
|
Title: string;
|
|
Instructions: string;
|
|
IsRequired: number;
|
|
ClassNames: string;
|
|
DefaultVal: string;
|
|
Page: number;
|
|
Type: string;
|
|
ID: string;
|
|
SubFields: [ISubField];
|
|
}
|