blob: 63f22f1607d1ad038d3a5011dde3b3c6abd23023 [file] [log] [blame]
/**
* Response the Platform Types API should return when doing a POST,PUT,PATCH, or DELETE to indicate success/status of API
*/
export interface StructureApiResponse {
empty: boolean,
errorCount: number,
errors: boolean,
failed: boolean,
ids: string[],
infoCount: boolean,
numErrors: number,
numErrorsViaSearch: number,
numWarnings: number,
numWarningsViaSearch: number,
results: string[],
success: boolean,
tables: string[],
title: string,
txId: string,
warningCount: number
}