/** * 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. */ import { ModelMetaObjectDto } from './model-meta-object-dto'; /** * * @export * @interface ConfigurationDto */ export interface ConfigurationDto { /** * Describes the date of the last update * @type {number} * @memberof ConfigurationDto */ lastUpdatedAt?: number; /** * Describe the date when the entity was deleted * @type {number} * @memberof ConfigurationDto */ deletedAt?: number; /** * * @type {string} * @memberof ConfigurationDto */ id?: string; /** * * @type {number} * @memberof ConfigurationDto */ createdAt?: number; /** * * @type {ModelMetaObjectDto} * @memberof ConfigurationDto */ _meta?: ModelMetaObjectDto; /** * * @type {string} * @memberof ConfigurationDto */ key: string; /** * * @type {string} * @memberof ConfigurationDto */ description?: string; /** * * @type {string} * @memberof ConfigurationDto */ value: string; /** * * @type {string} * @memberof ConfigurationDto */ defaultValue?: string; /** * * @type {string} * @memberof ConfigurationDto */ scope: ConfigurationDtoScopeEnum; } /** * @export * @enum {string} */ export declare enum ConfigurationDtoScopeEnum { Public = "public", Server = "server", System = "system" }