cberg
Version:
Node.js Client for the Codeberg API
24 lines (16 loc) • 822 B
Markdown
# 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<CreateQuotaRuleOptions>**](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)