/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ImportScriptDto */ export interface ImportScriptDto { /** * Define wether this is an insert, update, upsert or remove operation * @type {string} * @memberof ImportScriptDto */ operation: ImportScriptDtoOperationEnum; /** * Set the smallstack type, e.h. \'user\' * @type {string} * @memberof ImportScriptDto */ type: string; /** * The model for the operation, can include placeholders like {ownerId: \"$PREVIOUSLY_INSERT_CAR_ID\"}, can be empty for remove operation * @type {any} * @memberof ImportScriptDto */ model?: any; /** * * @type {boolean} * @memberof ImportScriptDto */ async?: boolean; /** * * @type {any} * @memberof ImportScriptDto */ query?: any; } /** * @export * @enum {string} */ export declare enum ImportScriptDtoOperationEnum { Insert = "insert", InsertBulk = "insertBulk", Update = "update" }