UNPKG

jack-kafka-instance-sdk

Version:
27 lines (26 loc) 774 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 * @enum {string} */ export declare const RecordIncludedProperty: { readonly Partition: "partition"; readonly Offset: "offset"; readonly Timestamp: "timestamp"; readonly TimestampType: "timestampType"; readonly Headers: "headers"; readonly Key: "key"; readonly Value: "value"; }; export type RecordIncludedProperty = typeof RecordIncludedProperty[keyof typeof RecordIncludedProperty];