class Attio::Attribute

def unarchive(**opts)

Unarchive this attribute
def unarchive(**opts)
  raise InvalidRequestError, "Cannot unarchive an attribute without an ID" unless persisted?
  response = self.class.send(:execute_request, :POST, "#{resource_path}/unarchive", {}, opts)
  update_from(response[:data] || response)
  self
end