/* 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. */ import { UserClass } from './user-class'; /** * * @export * @interface SubscriptionClass */ export interface SubscriptionClass { /** * User subscription id * @type {number} * @memberof SubscriptionClass */ 'id': number; /** * User id * @type {number} * @memberof SubscriptionClass */ 'userId': number; /** * Entity name * @type {string} * @memberof SubscriptionClass */ 'entity': string; /** * Entity id * @type {number} * @memberof SubscriptionClass */ 'entityId': number; /** * Is active subscription * @type {boolean} * @memberof SubscriptionClass */ 'isActive': boolean; /** * Time at which the object was created. * @type {string} * @memberof SubscriptionClass */ 'createdAt'?: string; /** * Time at which the object was updated. * @type {string} * @memberof SubscriptionClass */ 'updatedAt'?: string; /** * Identifier of the user who created the record. * @type {string} * @memberof SubscriptionClass */ 'createdBy': string; /** * Identifier of the user who last updated the record. * @type {string} * @memberof SubscriptionClass */ 'updatedBy': string; /** * user * @type {UserClass} * @memberof SubscriptionClass */ 'user'?: UserClass; }