/* tslint:disable */ /* eslint-disable */ /** * EMIL Tenant Service * The EMIL TenantService API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * 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 CustomSchemaClass */ export interface CustomSchemaClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof CustomSchemaClass */ 'id': number; /** * Unique identifier for the object. * @type {string} * @memberof CustomSchemaClass */ 'code': string; /** * Optional field for a product specification custom fields * @type {string} * @memberof CustomSchemaClass */ 'productCode': string; /** * The fields that schema created from * @type {object} * @memberof CustomSchemaClass */ 'fields': object; /** * The json schema generated from fields * @type {object} * @memberof CustomSchemaClass */ 'jsonSchema': object; /** * The entity that this schema related to * @type {string} * @memberof CustomSchemaClass */ 'entity': string; /** * Time at which the object was created. * @type {string} * @memberof CustomSchemaClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof CustomSchemaClass */ 'updatedAt': string; /** * Identifier of the user who created the record. * @type {string} * @memberof CustomSchemaClass */ 'createdBy': string; /** * Identifier of the user who last updated the record. * @type {string} * @memberof CustomSchemaClass */ 'updatedBy': string; }