# CreateQuotaGroupOptions

CreateQutaGroupOptions represents the options for creating a quota group

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **string** | Name of the quota group to create | [optional] [default to undefined]
**rules** | [**Array&lt;CreateQuotaRuleOptions&gt;**](CreateQuotaRuleOptions.md) | Rules to add to the newly created group. If a rule does not exist, it will be created. | [optional] [default to undefined]

## Example

```typescript
import { CreateQuotaGroupOptions } from 'berg';

const instance: CreateQuotaGroupOptions = {
    name,
    rules,
};
```

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