# frozen_string_literal: true module ONEAccess module DataObject module Representer class Meta < Representable::Decorator include Representable::JSON property :total, type: Integer property :limit, type: Integer property :offset, type: Integer end end end end