docs/QuotaRuleInfo

Forgejo::QuotaRuleInfo

Properties

Name Type Description Notes
limit Integer The limit set by the rule [optional]
name String Name of the rule (only shown to admins) [optional]
subjects Array<String> Subjects the rule affects [optional]

Example

require 'forgejo'

instance = Forgejo::QuotaRuleInfo.new(
  limit: null,
  name: null,
  subjects: null
)