From ceb7356823e2f96b2a136e8da956f865918f9740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serge=20H=C3=A4nni?= Date: Tue, 11 Aug 2026 18:11:41 +0200 Subject: [PATCH] Add periodic/bucket attributes for aggregations --- .../reporting/report_aggregation_series.rb | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/lib/ioki/model/operator/reporting/report_aggregation_series.rb b/lib/ioki/model/operator/reporting/report_aggregation_series.rb index 0e8d0ccc..68485dca 100644 --- a/lib/ioki/model/operator/reporting/report_aggregation_series.rb +++ b/lib/ioki/model/operator/reporting/report_aggregation_series.rb @@ -33,6 +33,42 @@ class ReportAggregationSeries < Base on: :read, type: :string + attribute :col_buckets, + on: :read, + type: :array + + attribute :localized_col_buckets, + on: :read, + type: :array + + attribute :col_periodic_type, + on: :read, + type: :string + + attribute :end_time, + on: :read, + type: :date_time + + attribute :periodic, + on: :read, + type: :boolean + + attribute :localized_row_buckets, + on: :read, + type: :array + + attribute :row_buckets, + on: :read, + type: :array + + attribute :row_periodic_type, + on: :read, + type: :string + + attribute :start_time, + on: :read, + type: :date_time + attribute :measures, on: :read, type: :array,