No Description

UmengBrandEditCampaignParam.class.php 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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 UmengBrandEditCampaignParam {
  5. /**
  6. * @return 活动id
  7. */
  8. public function getCampaignId() {
  9. $tempResult = $this->sdkStdResult["campaignId"];
  10. return $tempResult;
  11. }
  12. /**
  13. * 设置活动id
  14. * @param Integer $campaignId
  15. * 参数示例:<pre></pre>
  16. * 此参数必填 */
  17. public function setCampaignId( $campaignId) {
  18. $this->sdkStdResult["campaignId"] = $campaignId;
  19. }
  20. /**
  21. * @return 活动名称,长度不大于50个字符
  22. */
  23. public function getCampaignName() {
  24. $tempResult = $this->sdkStdResult["campaignName"];
  25. return $tempResult;
  26. }
  27. /**
  28. * 设置活动名称,长度不大于50个字符
  29. * @param String $campaignName
  30. * 参数示例:<pre></pre>
  31. * 此参数为可选参数
  32. * 默认值:<pre></pre>
  33. */
  34. public function setCampaignName( $campaignName) {
  35. $this->sdkStdResult["campaignName"] = $campaignName;
  36. }
  37. /**
  38. * @return 开始日期,格式:yyyy-MM-dd
  39. */
  40. public function getStartDay() {
  41. $tempResult = $this->sdkStdResult["startDay"];
  42. return $tempResult;
  43. }
  44. /**
  45. * 设置开始日期,格式:yyyy-MM-dd
  46. * @param String $startDay
  47. * 参数示例:<pre>2018-02-08</pre>
  48. * 此参数为可选参数
  49. * 默认值:<pre></pre>
  50. */
  51. public function setStartDay( $startDay) {
  52. $this->sdkStdResult["startDay"] = $startDay;
  53. }
  54. /**
  55. * @return 结束日期,格式:yyyy-MM-dd
  56. */
  57. public function getEndDay() {
  58. $tempResult = $this->sdkStdResult["endDay"];
  59. return $tempResult;
  60. }
  61. /**
  62. * 设置结束日期,格式:yyyy-MM-dd
  63. * @param String $endDay
  64. * 参数示例:<pre>2018-02-08</pre>
  65. * 此参数为可选参数
  66. * 默认值:<pre></pre>
  67. */
  68. public function setEndDay( $endDay) {
  69. $this->sdkStdResult["endDay"] = $endDay;
  70. }
  71. /**
  72. * @return 自定义字段,格式如:{"k1":"v1","k2":"v2"}
  73. */
  74. public function getCustomizeInfos() {
  75. $tempResult = $this->sdkStdResult["customizeInfos"];
  76. return $tempResult;
  77. }
  78. /**
  79. * 设置自定义字段,格式如:{"k1":"v1","k2":"v2"}
  80. * @param String $customizeInfos
  81. * 参数示例:<pre></pre>
  82. * 此参数为可选参数
  83. * 默认值:<pre></pre>
  84. */
  85. public function setCustomizeInfos( $customizeInfos) {
  86. $this->sdkStdResult["customizeInfos"] = $customizeInfos;
  87. }
  88. private $sdkStdResult=array();
  89. public function getSdkStdResult(){
  90. return $this->sdkStdResult;
  91. }
  92. }
  93. ?>