/* tslint:disable */ /* eslint-disable */ /** * subscriptions * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents a subscription statistics of one partition */ export interface SubscriptionPartitionStats { /** * The consumer lag in seconds. */ consumer_lag_seconds?: number; /** * The partition id. */ partition?: string; /** * The state of the partition. */ state?: string; }