# SubscriptionRequest

Represents a streaming events subscription

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**consumer_group** | **string** | The value describing the use case of this subscription. | [optional] [default to undefined]
**event_types** | **Set&lt;string&gt;** | EventTypes to subscribe to | [default to undefined]
**owning_application** | **string** | The id of application owning the subscription. | [default to undefined]
**read_from** | **string** | Position to start reading events from. | [default to undefined]

## Example

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

const instance: SubscriptionRequest = {
    consumer_group,
    event_types,
    owning_application,
    read_from,
};
```

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