No Description

UmengBrandAddCampaignParam.class.php 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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 UmengBrandAddCampaignParam {
  5. /**
  6. * @return 活动名称,长度不大于50个字符
  7. */
  8. public function getCampaignName() {
  9. $tempResult = $this->sdkStdResult["campaignName"];
  10. return $tempResult;
  11. }
  12. /**
  13. * 设置活动名称,长度不大于50个字符
  14. * @param String $campaignName
  15. * 参数示例:<pre></pre>
  16. * 此参数必填 */
  17. public function setCampaignName( $campaignName) {
  18. $this->sdkStdResult["campaignName"] = $campaignName;
  19. }
  20. /**
  21. * @return 开始日期,格式:yyyy-MM-dd
  22. */
  23. public function getStartDay() {
  24. $tempResult = $this->sdkStdResult["startDay"];
  25. return $tempResult;
  26. }
  27. /**
  28. * 设置开始日期,格式:yyyy-MM-dd
  29. * @param String $startDay
  30. * 参数示例:<pre>2018-02-08</pre>
  31. * 此参数必填 */
  32. public function setStartDay( $startDay) {
  33. $this->sdkStdResult["startDay"] = $startDay;
  34. }
  35. /**
  36. * @return 结束日期,格式:yyyy-MM-dd
  37. */
  38. public function getEndDay() {
  39. $tempResult = $this->sdkStdResult["endDay"];
  40. return $tempResult;
  41. }
  42. /**
  43. * 设置结束日期,格式:yyyy-MM-dd
  44. * @param String $endDay
  45. * 参数示例:<pre>2018-02-08</pre>
  46. * 此参数必填 */
  47. public function setEndDay( $endDay) {
  48. $this->sdkStdResult["endDay"] = $endDay;
  49. }
  50. /**
  51. * @return 转化周期(1:触达后续15天 2:触达后续30天 3:触达后续60天)
  52. */
  53. public function getConvertType() {
  54. $tempResult = $this->sdkStdResult["convertType"];
  55. return $tempResult;
  56. }
  57. /**
  58. * 设置转化周期(1:触达后续15天 2:触达后续30天 3:触达后续60天)
  59. * @param Integer $convertType
  60. * 参数示例:<pre></pre>
  61. * 此参数为可选参数
  62. * 默认值:<pre></pre>
  63. */
  64. public function setConvertType( $convertType) {
  65. $this->sdkStdResult["convertType"] = $convertType;
  66. }
  67. /**
  68. * @return 地区匹配ip库(1:阿里IP库2:广协IP库)
  69. */
  70. public function getIpType() {
  71. $tempResult = $this->sdkStdResult["ipType"];
  72. return $tempResult;
  73. }
  74. /**
  75. * 设置地区匹配ip库(1:阿里IP库2:广协IP库)
  76. * @param Integer $ipType
  77. * 参数示例:<pre></pre>
  78. * 此参数为可选参数
  79. * 默认值:<pre></pre>
  80. */
  81. public function setIpType( $ipType) {
  82. $this->sdkStdResult["ipType"] = $ipType;
  83. }
  84. /**
  85. * @return 自定义字段,格式如:{"k1":"v1","k2":"v2"}
  86. */
  87. public function getCustomizeInfos() {
  88. $tempResult = $this->sdkStdResult["customizeInfos"];
  89. return $tempResult;
  90. }
  91. /**
  92. * 设置自定义字段,格式如:{"k1":"v1","k2":"v2"}
  93. * @param String $customizeInfos
  94. * 参数示例:<pre></pre>
  95. * 此参数为可选参数
  96. * 默认值:<pre></pre>
  97. */
  98. public function setCustomizeInfos( $customizeInfos) {
  99. $this->sdkStdResult["customizeInfos"] = $customizeInfos;
  100. }
  101. private $sdkStdResult=array();
  102. public function getSdkStdResult(){
  103. return $this->sdkStdResult;
  104. }
  105. }
  106. ?>