# SubscriptionCursorRequest

Represents a streaming events subscription cursor

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**cursor_token** | **string** | The cursor token generated by Mambu | [optional] [default to undefined]
**event_type** | **string** | Specifies the event-type of the cursor | [optional] [default to undefined]
**offset** | **string** | The offset of this batch. | [default to undefined]
**partition** | **string** | The partition this batch belongs to. | [default to undefined]

## Example

```typescript
import { SubscriptionCursorRequest } from './api';

const instance: SubscriptionCursorRequest = {
    cursor_token,
    event_type,
    offset,
    partition,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
