Skip to content

Commit

Permalink
Add new pop api.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Nov 20, 2019
1 parent 27f6ded commit 0eb85d5
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 27 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 1.7.168 - 2019-11-20
- Add new pop api.


## 1.7.167 - 2019-11-20
- Supported ecsDemand CreateDemand, ModifyDemand, DeleteDemand API.
- Modify ecsDemand DescribesDemands API.
Expand Down
86 changes: 60 additions & 26 deletions src/Dypnsapi/V20170525/DypnsapiApiResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
use AlibabaCloud\Client\Resolver\ApiResolver;

/**
* @method GetMobile getMobile(array $options = [])
* @method CreateVerifyScheme createVerifyScheme(array $options = [])
* @method VerifyMobile verifyMobile(array $options = [])
* @method DeleteVerifyScheme deleteVerifyScheme(array $options = [])
* @method DescribeVerifyScheme describeVerifyScheme(array $options = [])
* @method GetMobile getMobile(array $options = [])
* @method TwiceTelVerify twiceTelVerify(array $options = [])
* @method VerifyMobile verifyMobile(array $options = [])
*/
class DypnsapiApiResolver extends ApiResolver
{
Expand All @@ -29,25 +31,6 @@ class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
public $serviceCode = 'dypnsapi';
}

/**
* @method string getResourceOwnerId()
* @method $this withResourceOwnerId($value)
* @method string getResourceOwnerAccount()
* @method $this withResourceOwnerAccount($value)
* @method string getAccessToken()
* @method $this withAccessToken($value)
* @method string getOwnerId()
* @method $this withOwnerId($value)
* @method string getOutId()
* @method $this withOutId($value)
*/
class GetMobile extends Rpc
{

/** @var string */
public $scheme = 'https';
}

/**
* @method string getResourceOwnerId()
* @method $this withResourceOwnerId($value)
Expand Down Expand Up @@ -75,18 +58,48 @@ class CreateVerifyScheme extends Rpc
/**
* @method string getResourceOwnerId()
* @method $this withResourceOwnerId($value)
* @method string getPhoneNumber()
* @method $this withPhoneNumber($value)
* @method string getAccessCode()
* @method $this withAccessCode($value)
* @method string getResourceOwnerAccount()
* @method $this withResourceOwnerAccount($value)
* @method string getOwnerId()
* @method $this withOwnerId($value)
* @method string getSchemeCode()
* @method $this withSchemeCode($value)
* @method string getCustomerId()
* @method $this withCustomerId($value)
*/
class DeleteVerifyScheme extends Rpc
{
}

/**
* @method string getResourceOwnerId()
* @method $this withResourceOwnerId($value)
* @method string getResourceOwnerAccount()
* @method $this withResourceOwnerAccount($value)
* @method string getOwnerId()
* @method $this withOwnerId($value)
* @method string getSchemeCode()
* @method $this withSchemeCode($value)
* @method string getCustomerId()
* @method $this withCustomerId($value)
*/
class DescribeVerifyScheme extends Rpc
{
}

/**
* @method string getResourceOwnerId()
* @method $this withResourceOwnerId($value)
* @method string getResourceOwnerAccount()
* @method $this withResourceOwnerAccount($value)
* @method string getAccessToken()
* @method $this withAccessToken($value)
* @method string getOwnerId()
* @method $this withOwnerId($value)
* @method string getOutId()
* @method $this withOutId($value)
*/
class VerifyMobile extends Rpc
class GetMobile extends Rpc
{

/** @var string */
Expand All @@ -108,3 +121,24 @@ class VerifyMobile extends Rpc
class TwiceTelVerify extends Rpc
{
}

/**
* @method string getResourceOwnerId()
* @method $this withResourceOwnerId($value)
* @method string getPhoneNumber()
* @method $this withPhoneNumber($value)
* @method string getAccessCode()
* @method $this withAccessCode($value)
* @method string getResourceOwnerAccount()
* @method $this withResourceOwnerAccount($value)
* @method string getOwnerId()
* @method $this withOwnerId($value)
* @method string getOutId()
* @method $this withOutId($value)
*/
class VerifyMobile extends Rpc
{

/** @var string */
public $scheme = 'https';
}
2 changes: 1 addition & 1 deletion src/Release.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Release
/**
* Version of the SDK
*/
const VERSION = '1.7.167';
const VERSION = '1.7.168';

/**
* @param Event $event
Expand Down

0 comments on commit 0eb85d5

Please sign in to comment.