export interface Insert { sqlInsertValues: SqlInsertValue[]; } export interface SqlInsertValue { propertyName: string; type: string; value: number | string; } export interface InsertPayload { inserts: Insert[]; } export interface InsertRequest { payload: InsertPayload; } export interface DmlOperation { inserts: Insert[]; } export interface InsertProcedureValue { dmlOperation: DmlOperation; storeProcedurePayload: any; }