diff --git a/lib/ioki/model/operator/reporting/report_aggregation.rb b/lib/ioki/model/operator/reporting/report_aggregation.rb index 669dde32..5825ba55 100644 --- a/lib/ioki/model/operator/reporting/report_aggregation.rb +++ b/lib/ioki/model/operator/reporting/report_aggregation.rb @@ -17,6 +17,10 @@ class ReportAggregation < Base on: :read, type: :string + attribute :localized_reference_timestamp, + on: :read, + type: :string + attribute :visualization, on: :read, type: :string diff --git a/lib/ioki/model/operator/reporting/report_aggregation_bucket.rb b/lib/ioki/model/operator/reporting/report_aggregation_bucket.rb index 7151567b..5bade254 100644 --- a/lib/ioki/model/operator/reporting/report_aggregation_bucket.rb +++ b/lib/ioki/model/operator/reporting/report_aggregation_bucket.rb @@ -9,23 +9,51 @@ class ReportAggregationBucket < Base on: :read, type: :string + attribute :col, + on: :read, + type: :string + + attribute :default_preset, + on: :read, + type: :string + attribute :granularities, on: :read, type: :array + attribute :localized_col, + on: :read, + type: :string + attribute :localized_granularities, on: :read, type: :array - attribute :presets, + attribute :localized_on, on: :read, - type: :array + type: :string attribute :localized_presets, on: :read, type: :array - attribute :default_preset, + attribute :localized_row, + on: :read, + type: :string + + attribute :on, + on: :read, + type: :string + + attribute :periodic, + on: :read, + type: :boolean + + attribute :presets, + on: :read, + type: :array + + attribute :row, on: :read, type: :string end