# frozen_string_literal: true require_relative "./representer/product_groups_response" module ONEAccess module Response class ProductGroupsResponse extend Serializable represented_by Representer::ProductGroupsResponse attr_accessor :api_status_code attr_accessor :total_count attr_accessor :has_more_records attr_accessor :data alias has_more_records? has_more_records alias more_records? has_more_records end end end