Sha256: ce11f6df734b32435a135a7e4ea39a95181601871201a718d184ba37dab6e497
Contents?: true
Size: 1.77 KB
Versions: 3
Compression:
Stored size: 1.77 KB
Contents
# Athenian::FilterCodeChecksRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **_in** | **Array<String>** | Set of repositories. An empty list raises a bad response 400. Duplicates are automatically ignored. | | | **triggered_by** | **Array<String>** | Check runs must be triggered by commits pushed by these people. When it is impossible to determine who pushed, e.g. in legacy API based checks, they are committers. It is possible to mention whole teams using the syntax `{id}` where `id` is a team identifier (see `/teams`). | [optional] | | **labels_include** | **Array<String>** | At least one of these labels must be present in the checked PRs. | [optional] | | **labels_exclude** | **Array<String>** | None of these labels must be present in each checked PR. | [optional] | | **jira** | [**ForSetCodeChecksJira**](ForSetCodeChecksJira.md) | | [optional] | | **date_from** | **Date** | Date from when to start measuring the metrics. | | | **date_to** | **Date** | Date until which to measure the metrics. | | | **timezone** | **Integer** | Local time zone offset in minutes, used to adjust `date_from` and `date_to`. | [optional] | | **account** | **Integer** | Session account ID. | | | **quantiles** | **Object** | | [optional] | ## Example ```ruby require 'athenian' instance = Athenian::FilterCodeChecksRequest.new( _in: ["github.com/athenianco/athenian-webapp","github.com/athenianco/athenian-api"], triggered_by: ["github.com/vmarkovtsev","github.com/se7entyse7en"], labels_include: null, labels_exclude: null, jira: null, date_from: null, date_to: null, timezone: null, account: null, quantiles: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
athenian-2.1.86 | docs/FilterCodeChecksRequest.md |
athenian-2.1.85 | docs/FilterCodeChecksRequest.md |
athenian-2.1.81 | docs/FilterCodeChecksRequest.md |