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