cberg
Version:
Node.js Client for the Codeberg API
26 lines (18 loc) • 817 B
Markdown
# CreateQuotaRuleOptions
CreateQuotaRuleOptions represents the options for creating a quota rule
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**limit** | **number** | The limit set by the rule | [optional] [default to undefined]
**name** | **string** | Name of the rule to create | [optional] [default to undefined]
**subjects** | **Array<string>** | The subjects affected by the rule | [optional] [default to undefined]
## Example
```typescript
import { CreateQuotaRuleOptions } from 'berg';
const instance: CreateQuotaRuleOptions = {
limit,
name,
subjects,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)