/** * 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 ModelMetaObjectDto */ export interface ModelMetaObjectDto { /** * Readable representation of the model * @type {string} * @memberof ModelMetaObjectDto */ name: string; /** * The serial can be used to check if the current local object was changed in the database since it was read the last time. On every successful write, the serial number will be increased by 1 * @type {number} * @memberof ModelMetaObjectDto */ serial: number; /** * * @type {string} * @memberof ModelMetaObjectDto */ tenantId?: string; /** * * @type {string} * @memberof ModelMetaObjectDto */ resellerId?: string; }