No Description

UmengUappEventCreateParam.class.php 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. include_once ('com/alibaba/openapi/client/entity/SDKDomain.class.php');
  3. include_once ('com/alibaba/openapi/client/entity/ByteArray.class.php');
  4. class UmengUappEventCreateParam {
  5. /**
  6. * @return 应用ID
  7. */
  8. public function getAppkey() {
  9. $tempResult = $this->sdkStdResult["appkey"];
  10. return $tempResult;
  11. }
  12. /**
  13. * 设置应用ID
  14. * @param String $appkey
  15. * 参数示例:<pre></pre>
  16. * 此参数必填 */
  17. public function setAppkey( $appkey) {
  18. $this->sdkStdResult["appkey"] = $appkey;
  19. }
  20. /**
  21. * @return 自定义事件名(英文和数字,不允许特殊符号?/.\<>)
  22. */
  23. public function getEventName() {
  24. $tempResult = $this->sdkStdResult["eventName"];
  25. return $tempResult;
  26. }
  27. /**
  28. * 设置自定义事件名(英文和数字,不允许特殊符号?/.\<>)
  29. * @param String $eventName
  30. * 参数示例:<pre></pre>
  31. * 此参数必填 */
  32. public function setEventName( $eventName) {
  33. $this->sdkStdResult["eventName"] = $eventName;
  34. }
  35. /**
  36. * @return 自定义事件显示名(中文,英文和数字,不允许特殊符号?/.\<>)
  37. */
  38. public function getEventDisplayName() {
  39. $tempResult = $this->sdkStdResult["eventDisplayName"];
  40. return $tempResult;
  41. }
  42. /**
  43. * 设置自定义事件显示名(中文,英文和数字,不允许特殊符号?/.\<>)
  44. * @param String $eventDisplayName
  45. * 参数示例:<pre></pre>
  46. * 此参数必填 */
  47. public function setEventDisplayName( $eventDisplayName) {
  48. $this->sdkStdResult["eventDisplayName"] = $eventDisplayName;
  49. }
  50. /**
  51. * @return true 计算事件(数值型),用于统计数值型变量的累计值、均值及分布。false 计数事件(字符串型),用于统计字符串型变量的消息数及触发设备数。
  52. */
  53. public function getEventType() {
  54. $tempResult = $this->sdkStdResult["eventType"];
  55. return $tempResult;
  56. }
  57. /**
  58. * 设置true 计算事件(数值型),用于统计数值型变量的累计值、均值及分布。false 计数事件(字符串型),用于统计字符串型变量的消息数及触发设备数。
  59. * @param Boolean $eventType
  60. * 参数示例:<pre>false</pre>
  61. * 此参数必填 */
  62. public function setEventType( $eventType) {
  63. $this->sdkStdResult["eventType"] = $eventType;
  64. }
  65. private $sdkStdResult=array();
  66. public function getSdkStdResult(){
  67. return $this->sdkStdResult;
  68. }
  69. }
  70. ?>