1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.edu.card.user.post.update request
- *
- * @author auto create
- * @since 1.0, 2020.09.23
- */
- class OapiEduCardUserPostUpdateRequest
- {
- /**
- * 打卡动态修改入参
- **/
- private $updatePostParam;
-
- private $apiParas = array();
-
- public function setUpdatePostParam($updatePostParam)
- {
- $this->updatePostParam = $updatePostParam;
- $this->apiParas["update_post_param"] = $updatePostParam;
- }
- public function getUpdatePostParam()
- {
- return $this->updatePostParam;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.edu.card.user.post.update";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|