# frozen_string_literal: true require_relative './representer/organization_response' module ONEAccess module Response class OrganizationResponse extend Serializable represented_by Representer::OrganizationResponse attr_accessor :api_status_code attr_accessor :data end end end