# File lib/couchrest/more/casted_model.rb, line 11
    def initialize(keys={})
      super
      keys.each do |k,v|
        self[k.to_s] = v
      end if keys
      apply_defaults # defined in CouchRest::Mixins::Properties
      # cast_keys      # defined in CouchRest::Mixins::Properties
    end