UNPKG

jack-kafka-instance-sdk

Version:
31 lines (30 loc) 665 B
/** * Kafka Instance API * API for interacting with Kafka Instance. Includes Produce, Consume and Admin APIs * * The version of the OpenAPI document: 0.14.1-SNAPSHOT * * * 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 TopicsToResetOffset */ export interface TopicsToResetOffset { /** * * @type {string} * @memberof TopicsToResetOffset */ 'topic': string; /** * * @type {Array<number>} * @memberof TopicsToResetOffset */ 'partitions'?: Array<number>; }