|
11 | 11 | * @method PushExtraTradeDetail pushExtraTradeDetail(array $options = [])
|
12 | 12 | * @method PushFaultEvent pushFaultEvent(array $options = [])
|
13 | 13 | * @method PushTradeDetail pushTradeDetail(array $options = [])
|
| 14 | + * @method QueryPromotion queryPromotion(array $options = []) |
14 | 15 | * @method RegistDevice registDevice(array $options = [])
|
| 16 | + * @method ScanCodeNotification scanCodeNotification(array $options = []) |
15 | 17 | */
|
16 | 18 | class UniMktApiResolver extends ApiResolver
|
17 | 19 | {
|
@@ -614,6 +616,54 @@ public function withTradePrice($value)
|
614 | 616 | }
|
615 | 617 | }
|
616 | 618 |
|
| 619 | +/** |
| 620 | + * @method string getExtra() |
| 621 | + * @method string getAlipayOpenId() |
| 622 | + * @method string getChannelId() |
| 623 | + */ |
| 624 | +class QueryPromotion extends Rpc |
| 625 | +{ |
| 626 | + |
| 627 | + /** |
| 628 | + * @param string $value |
| 629 | + * |
| 630 | + * @return $this |
| 631 | + */ |
| 632 | + public function withExtra($value) |
| 633 | + { |
| 634 | + $this->data['Extra'] = $value; |
| 635 | + $this->options['form_params']['Extra'] = $value; |
| 636 | + |
| 637 | + return $this; |
| 638 | + } |
| 639 | + |
| 640 | + /** |
| 641 | + * @param string $value |
| 642 | + * |
| 643 | + * @return $this |
| 644 | + */ |
| 645 | + public function withAlipayOpenId($value) |
| 646 | + { |
| 647 | + $this->data['AlipayOpenId'] = $value; |
| 648 | + $this->options['form_params']['AlipayOpenId'] = $value; |
| 649 | + |
| 650 | + return $this; |
| 651 | + } |
| 652 | + |
| 653 | + /** |
| 654 | + * @param string $value |
| 655 | + * |
| 656 | + * @return $this |
| 657 | + */ |
| 658 | + public function withChannelId($value) |
| 659 | + { |
| 660 | + $this->data['ChannelId'] = $value; |
| 661 | + $this->options['form_params']['ChannelId'] = $value; |
| 662 | + |
| 663 | + return $this; |
| 664 | + } |
| 665 | +} |
| 666 | + |
617 | 667 | /**
|
618 | 668 | * @method string getFirstScene()
|
619 | 669 | * @method string getDetailAddr()
|
@@ -801,3 +851,59 @@ public function withOuterCode($value)
|
801 | 851 | return $this;
|
802 | 852 | }
|
803 | 853 | }
|
| 854 | + |
| 855 | +/** |
| 856 | + * @method string getRealCostAmount() |
| 857 | + * @method $this withRealCostAmount($value) |
| 858 | + * @method string getSalePrice() |
| 859 | + * @method $this withSalePrice($value) |
| 860 | + * @method string getCommodityId() |
| 861 | + * @method $this withCommodityId($value) |
| 862 | + * @method string getHolderId() |
| 863 | + * @method $this withHolderId($value) |
| 864 | + * @method string getDeviceType() |
| 865 | + * @method $this withDeviceType($value) |
| 866 | + * @method string getDeviceCode() |
| 867 | + * @method $this withDeviceCode($value) |
| 868 | + * @method string getApplyPrice() |
| 869 | + * @method $this withApplyPrice($value) |
| 870 | + * @method string getTaskId() |
| 871 | + * @method $this withTaskId($value) |
| 872 | + * @method string getOuterCode() |
| 873 | + * @method $this withOuterCode($value) |
| 874 | + * @method string getQueryStr() |
| 875 | + * @method $this withQueryStr($value) |
| 876 | + * @method string getPhase() |
| 877 | + * @method $this withPhase($value) |
| 878 | + * @method string getBizResult() |
| 879 | + * @method $this withBizResult($value) |
| 880 | + * @method string getTaskType() |
| 881 | + * @method $this withTaskType($value) |
| 882 | + * @method string getBrandUserId() |
| 883 | + * @method $this withBrandUserId($value) |
| 884 | + * @method string getSex() |
| 885 | + * @method $this withSex($value) |
| 886 | + * @method string getCostDetail() |
| 887 | + * @method $this withCostDetail($value) |
| 888 | + * @method string getProxyUserId() |
| 889 | + * @method $this withProxyUserId($value) |
| 890 | + * @method string getAlipayOpenId() |
| 891 | + * @method $this withAlipayOpenId($value) |
| 892 | + * @method string getBizType() |
| 893 | + * @method $this withBizType($value) |
| 894 | + * @method string getBrandNick() |
| 895 | + * @method $this withBrandNick($value) |
| 896 | + * @method string getV() |
| 897 | + * @method $this withV($value) |
| 898 | + * @method string getChargeTag() |
| 899 | + * @method $this withChargeTag($value) |
| 900 | + * @method string getAge() |
| 901 | + * @method $this withAge($value) |
| 902 | + * @method string getChannelId() |
| 903 | + * @method $this withChannelId($value) |
| 904 | + * @method string getCid() |
| 905 | + * @method $this withCid($value) |
| 906 | + */ |
| 907 | +class ScanCodeNotification extends Rpc |
| 908 | +{ |
| 909 | +} |
0 commit comments