Skip to content

Commit 1f10453

Browse files
A: src/V3/Ecommerce/.../ValidateCancel/*
1 parent 830b7fd commit 1f10453

3 files changed

Lines changed: 40 additions & 0 deletions

File tree

src/V3/Ecommerce/Account/ApplyCancelWithdraw.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use GuzzleHttp\Promise\PromiseInterface;
77

88
/**
9+
* @property-read ApplyCancelWithdraw\ValidateCancel $validateCancel
910
* @property-read ApplyCancelWithdraw\OutRequestNo $outRequestNo
1011
* @property-read ApplyCancelWithdraw\ApplymentId $applymentId
1112
* @property-read ApplyCancelWithdraw\Confirm $confirm
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php declare(strict_types=1);/* Generated file. DO NOT EDIT! */
2+
3+
namespace WeChatPay\OpenAPI\V3\Ecommerce\Account\ApplyCancelWithdraw;
4+
5+
/**
6+
* @property-read ValidateCancel\_sub_mchid_ $_sub_mchid_
7+
*/
8+
interface ValidateCancel
9+
{
10+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?php declare(strict_types=1);/* Generated file. DO NOT EDIT! */
2+
3+
namespace WeChatPay\OpenAPI\V3\Ecommerce\Account\ApplyCancelWithdraw\ValidateCancel;
4+
5+
use Psr\Http\Message\ResponseInterface;
6+
use GuzzleHttp\Promise\PromiseInterface;
7+
8+
/**
9+
*/
10+
interface _sub_mchid_
11+
{
12+
/**
13+
* 商户注销资格校验(同步模式)
14+
* @param array<string,mixed> $options
15+
* @link https://wechatpay.im/openapi/v3/ecommerce/account/apply-cancel-withdraw/validate-cancel/%7Bsub_mchid%7D
16+
*/
17+
public function get(array $options = [
18+
'sub_mchid' => '1900000109',
19+
]): ResponseInterface;
20+
21+
/**
22+
* 商户注销资格校验(异步模式)
23+
* @param array<string,mixed> $options
24+
* @link https://wechatpay.im/openapi/v3/ecommerce/account/apply-cancel-withdraw/validate-cancel/%7Bsub_mchid%7D
25+
*/
26+
public function getAsync(array $options = [
27+
'sub_mchid' => '1900000109',
28+
]): PromiseInterface;
29+
}

0 commit comments

Comments
 (0)