/* 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 streaming events subscription cursor */ export interface SubscriptionCursorRequest { /** * The cursor token generated by Mambu */ cursor_token?: string; /** * Specifies the event-type of the cursor */ event_type?: string; /** * The offset of this batch. */ offset: string; /** * The partition this batch belongs to. */ partition: string; }