Pap_Api_Object::save PHP 메소드

save() 공개 메소드

public save ( )
        public function save()
        {
            if (!$this->primaryKeyIsDefined()) {
                throw new Exception("You have to set " . $this->getPrimaryKey() . " before calling save()!");
            }
            $this->setField("Id", $this->getField($this->getPrimaryKey()));
            return $this->callRequest("save");
        }