# frozen_string_literal: true require_relative "./representer/research_document_response" module ONEAccess module Response class ResearchDocumentResponse extend Serializable represented_by Representer::ResearchDocumentResponse attr_accessor :api_status_code attr_accessor :data end end end