# Athenian::DeveloperMetricsRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **_for** | [**Array<ForSetDevelopers>**](ForSetDevelopers.md) | Sets of developers and repositories to calculate the metrics for. | | | **metrics** | [**Array<DeveloperMetricID>**](DeveloperMetricID.md) | Requested metric identifiers. | | | **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. | | | **granularities** | **Array<String>** | The splits of the specified time range. | | ## Example ```ruby require 'athenian' instance = Athenian::DeveloperMetricsRequest.new( _for: null, metrics: null, date_from: null, date_to: null, timezone: null, account: null, granularities: null ) ```