Sha256: 85555c62a797a177d1ede3ec629babb85fe006662a36311443cf19681cb75d76

Contents?: true

Size: 1.45 KB

Versions: 3

Compression:

Stored size: 1.45 KB

Contents

# Athenian::CodeCheckHistogramsRequest

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **_for** | [**Array<ForSetCodeChecks>**](ForSetCodeChecks.md) | Sets of developers and repositories for which to calculate the histograms. The aggregation is `AND` between repositories and developers. The aggregation is `OR` inside both repositories and developers. |  |
| **histograms** | [**Array<CodeCheckHistogramDefinition>**](CodeCheckHistogramDefinition.md) | Histogram parameters for each wanted topic. |  |
| **date_from** | **Date** | Date from when to start measuring the distribution. |  |
| **date_to** | **Date** | Date until which to measure the distribution. |  |
| **timezone** | **Integer** | Local time zone offset in minutes, used to adjust `date_from` and `date_to`. | [optional] |
| **quantiles** | **Array<Float>** | Cut the distributions at certain quantiles. The default values are [0, 1] which means no cutting. | [optional] |
| **split_by_check_runs** | **Boolean** | Calculate histograms separately for each number of check runs in suite. | [optional] |
| **account** | **Integer** | Session account ID. |  |

## Example

```ruby
require 'athenian'

instance = Athenian::CodeCheckHistogramsRequest.new(
  _for: null,
  histograms: null,
  date_from: null,
  date_to: null,
  timezone: null,
  quantiles: [0,0.95],
  split_by_check_runs: null,
  account: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
athenian-2.1.86 docs/CodeCheckHistogramsRequest.md
athenian-2.1.85 docs/CodeCheckHistogramsRequest.md
athenian-2.1.81 docs/CodeCheckHistogramsRequest.md