# frozen_string_literal: true require_relative "./paginated_response" require_relative "./representer/product_groups_response" module ONEAccess module Response class ProductGroupsResponse < PaginatedResponse represented_by Representer::ProductGroupsResponse end end end