Skip to content

Commit 00ee9d1

Browse files
committed
Generated 2014-07-14 for Bss
1 parent 2e8d690 commit 00ee9d1

10 files changed

+600
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?php
2+
3+
namespace Bss\Request\V20140714;
4+
5+
/**
6+
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
7+
*
8+
* Request of CreateOrder
9+
*
10+
* @method string getparamStr()
11+
*/
12+
class CreateOrderRequest extends \RpcAcsRequest
13+
{
14+
15+
/**
16+
* @var string
17+
*/
18+
protected $method = 'POST';
19+
20+
/**
21+
* Class constructor.
22+
*/
23+
public function __construct()
24+
{
25+
parent::__construct(
26+
'Bss',
27+
'2014-07-14',
28+
'CreateOrder',
29+
'bss'
30+
);
31+
}
32+
33+
/**
34+
* @param string $paramStr
35+
*
36+
* @return $this
37+
*/
38+
public function setparamStr($paramStr)
39+
{
40+
$this->requestParameters['paramStr'] = $paramStr;
41+
$this->queryParameters['paramStr'] = $paramStr;
42+
43+
return $this;
44+
}
45+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?php
2+
3+
namespace Bss\Request\V20140714;
4+
5+
/**
6+
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
7+
*
8+
* Request of DescribeCashDetail
9+
*
10+
*/
11+
class DescribeCashDetailRequest extends \RpcAcsRequest
12+
{
13+
14+
/**
15+
* @var string
16+
*/
17+
protected $requestScheme = 'https';
18+
19+
/**
20+
* @var string
21+
*/
22+
protected $method = 'POST';
23+
24+
/**
25+
* Class constructor.
26+
*/
27+
public function __construct()
28+
{
29+
parent::__construct(
30+
'Bss',
31+
'2014-07-14',
32+
'DescribeCashDetail',
33+
'bss'
34+
);
35+
}
36+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?php
2+
3+
namespace Bss\Request\V20140714;
4+
5+
/**
6+
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
7+
*
8+
* Request of DescribeCouponDetail
9+
*
10+
* @method string getCouponNumber()
11+
*/
12+
class DescribeCouponDetailRequest extends \RpcAcsRequest
13+
{
14+
15+
/**
16+
* @var string
17+
*/
18+
protected $requestScheme = 'https';
19+
20+
/**
21+
* Class constructor.
22+
*/
23+
public function __construct()
24+
{
25+
parent::__construct(
26+
'Bss',
27+
'2014-07-14',
28+
'DescribeCouponDetail',
29+
'bss'
30+
);
31+
}
32+
33+
/**
34+
* @param string $couponNumber
35+
*
36+
* @return $this
37+
*/
38+
public function setCouponNumber($couponNumber)
39+
{
40+
$this->requestParameters['CouponNumber'] = $couponNumber;
41+
$this->queryParameters['CouponNumber'] = $couponNumber;
42+
43+
return $this;
44+
}
45+
}
Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
<?php
2+
3+
namespace Bss\Request\V20140714;
4+
5+
/**
6+
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
7+
*
8+
* Request of DescribeCouponList
9+
*
10+
* @method string getStartDeliveryTime()
11+
* @method string getPageSize()
12+
* @method string getEndDeliveryTime()
13+
* @method string getPageNum()
14+
* @method string getStatus()
15+
*/
16+
class DescribeCouponListRequest extends \RpcAcsRequest
17+
{
18+
19+
/**
20+
* @var string
21+
*/
22+
protected $requestScheme = 'https';
23+
24+
/**
25+
* @var string
26+
*/
27+
protected $method = 'POST';
28+
29+
/**
30+
* Class constructor.
31+
*/
32+
public function __construct()
33+
{
34+
parent::__construct(
35+
'Bss',
36+
'2014-07-14',
37+
'DescribeCouponList',
38+
'bss'
39+
);
40+
}
41+
42+
/**
43+
* @param string $startDeliveryTime
44+
*
45+
* @return $this
46+
*/
47+
public function setStartDeliveryTime($startDeliveryTime)
48+
{
49+
$this->requestParameters['StartDeliveryTime'] = $startDeliveryTime;
50+
$this->queryParameters['StartDeliveryTime'] = $startDeliveryTime;
51+
52+
return $this;
53+
}
54+
55+
/**
56+
* @param string $pageSize
57+
*
58+
* @return $this
59+
*/
60+
public function setPageSize($pageSize)
61+
{
62+
$this->requestParameters['PageSize'] = $pageSize;
63+
$this->queryParameters['PageSize'] = $pageSize;
64+
65+
return $this;
66+
}
67+
68+
/**
69+
* @param string $endDeliveryTime
70+
*
71+
* @return $this
72+
*/
73+
public function setEndDeliveryTime($endDeliveryTime)
74+
{
75+
$this->requestParameters['EndDeliveryTime'] = $endDeliveryTime;
76+
$this->queryParameters['EndDeliveryTime'] = $endDeliveryTime;
77+
78+
return $this;
79+
}
80+
81+
/**
82+
* @param string $pageNum
83+
*
84+
* @return $this
85+
*/
86+
public function setPageNum($pageNum)
87+
{
88+
$this->requestParameters['PageNum'] = $pageNum;
89+
$this->queryParameters['PageNum'] = $pageNum;
90+
91+
return $this;
92+
}
93+
94+
/**
95+
* @param string $status
96+
*
97+
* @return $this
98+
*/
99+
public function setStatus($status)
100+
{
101+
$this->requestParameters['Status'] = $status;
102+
$this->queryParameters['Status'] = $status;
103+
104+
return $this;
105+
}
106+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?php
2+
3+
namespace Bss\Request\V20140714;
4+
5+
/**
6+
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
7+
*
8+
* Request of OpenCallback
9+
*
10+
* @method string getparamStr()
11+
*/
12+
class OpenCallbackRequest extends \RpcAcsRequest
13+
{
14+
15+
/**
16+
* @var string
17+
*/
18+
protected $method = 'POST';
19+
20+
/**
21+
* Class constructor.
22+
*/
23+
public function __construct()
24+
{
25+
parent::__construct(
26+
'Bss',
27+
'2014-07-14',
28+
'OpenCallback',
29+
'bss'
30+
);
31+
}
32+
33+
/**
34+
* @param string $paramStr
35+
*
36+
* @return $this
37+
*/
38+
public function setparamStr($paramStr)
39+
{
40+
$this->requestParameters['paramStr'] = $paramStr;
41+
$this->queryParameters['paramStr'] = $paramStr;
42+
43+
return $this;
44+
}
45+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?php
2+
3+
namespace Bss\Request\V20140714;
4+
5+
/**
6+
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
7+
*
8+
* Request of QueryForCssOrder
9+
*
10+
* @method string getparamStr()
11+
*/
12+
class QueryForCssOrderRequest extends \RpcAcsRequest
13+
{
14+
15+
/**
16+
* @var string
17+
*/
18+
protected $method = 'POST';
19+
20+
/**
21+
* Class constructor.
22+
*/
23+
public function __construct()
24+
{
25+
parent::__construct(
26+
'Bss',
27+
'2014-07-14',
28+
'QueryForCssOrder',
29+
'bss'
30+
);
31+
}
32+
33+
/**
34+
* @param string $paramStr
35+
*
36+
* @return $this
37+
*/
38+
public function setparamStr($paramStr)
39+
{
40+
$this->requestParameters['paramStr'] = $paramStr;
41+
$this->queryParameters['paramStr'] = $paramStr;
42+
43+
return $this;
44+
}
45+
}

0 commit comments

Comments
 (0)