# Athenian::CalculatedDeveloperMetrics ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **calculated** | [**Array<CalculatedDeveloperMetricsItem>**](CalculatedDeveloperMetricsItem.md) | Values of the requested metrics by developer through time. | | | **metrics** | [**Array<DeveloperMetricID>**](DeveloperMetricID.md) | Repeats `DeveloperMetricsRequest.metrics`. | | | **date_from** | **Date** | Repeats `DeveloperMetricsRequest.date_from`. | | | **date_to** | **Date** | Repeats `DeveloperMetricsRequest.date_to`. | | | **timezone** | **Integer** | Local time zone offset in minutes, used to adjust `date_from` and `date_to`. | [optional] | | **granularities** | **Array<String>** | The splits of the specified time range. | | ## Example ```ruby require 'athenian' instance = Athenian::CalculatedDeveloperMetrics.new( calculated: null, metrics: null, date_from: null, date_to: null, timezone: null, granularities: null ) ```