Skip to content

Commit

Permalink
Merge pull request #25 from alipay/feature-250205
Browse files Browse the repository at this point in the history
支付、查询、支付结果通知新增卡相关信息字段
  • Loading branch information
ScottWryyyyy authored Feb 20, 2025
2 parents c75d0c0 + f9e9d54 commit 573b6ea
Show file tree
Hide file tree
Showing 5 changed files with 173 additions and 2 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.4.2 - 2025-02-05
* [#25](https://github.com/alipay/global-open-sdk-php/pull/25) feature-250205
- 支付、查询、支付结果通知新增卡相关信息字段

## 1.4.1 - 2025-01-06
* [#24](https://github.com/alipay/global-open-sdk-php/pull/24) feature-250106
- 订阅支付新增“更新接口”
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
```
Language:PHP
PHP version:5.6.40+
Releass ^1.4.1
Releass ^1.4.2
Copyright:Ant financial services group
```

Expand Down
2 changes: 1 addition & 1 deletion init.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
require __DIR__ . '/request/subscription/AlipaySubscriptionUpdateRequest.php';
require __DIR__ . '/request/subscription/AlipaySubscriptionChangeRequest.php';
require __DIR__ . '/request/subscription/AlipaySubscriptionCreateRequest.php';
require __DIR__ . '/request/subscription/AlipaySubscriptionUpdateRequest.php';
require __DIR__ . '/request/subscription/AlipaySubscriptionCancelRequest.php';

//user
require __DIR__ . '/request/users/AlipayInitAuthenticationRequest.php';
Expand Down
73 changes: 73 additions & 0 deletions model/Goods.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,79 @@ class Goods
public $goodsQuantity;
public $goodsSkuName;

public $goodsUrl;
public $deliveryMethodType;

public $goodsImageUrl;
public $priceId;

/**
* @return mixed
*/
public function getGoodsUrl()
{
return $this->goodsUrl;
}

/**
* @param mixed $goodsUrl
*/
public function setGoodsUrl($goodsUrl): void
{
$this->goodsUrl = $goodsUrl;
}

/**
* @return mixed
*/
public function getDeliveryMethodType()
{
return $this->deliveryMethodType;
}

/**
* @param mixed $deliveryMethodType
*/
public function setDeliveryMethodType($deliveryMethodType): void
{
$this->deliveryMethodType = $deliveryMethodType;
}

/**
* @return mixed
*/
public function getGoodsImageUrl()
{
return $this->goodsImageUrl;
}

/**
* @param mixed $goodsImageUrl
*/
public function setGoodsImageUrl($goodsImageUrl): void
{
$this->goodsImageUrl = $goodsImageUrl;
}

/**
* @return mixed
*/
public function getPriceId()
{
return $this->priceId;
}

/**
* @param mixed $priceId
*/
public function setPriceId($priceId): void
{
$this->priceId = $priceId;
}




/**
* @return String
*/
Expand Down
94 changes: 94 additions & 0 deletions model/PaymentResultInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,100 @@ class PaymentResultInfo

public $creditPayPlan;

public $cardholderName;

public $cardBin;

public $lastFour;

public $expiryMonth;

public $expiryYear;



/**
* @return mixed
*/
public function getCardholderName()
{
return $this->cardholderName;
}

/**
* @param mixed $cardholderName
*/
public function setCardholderName($cardholderName): void
{
$this->cardholderName = $cardholderName;
}

/**
* @return mixed
*/
public function getCardBin()
{
return $this->cardBin;
}

/**
* @param mixed $cardBin
*/
public function setCardBin($cardBin): void
{
$this->cardBin = $cardBin;
}

/**
* @return mixed
*/
public function getLastFour()
{
return $this->lastFour;
}

/**
* @param mixed $lastFour
*/
public function setLastFour($lastFour): void
{
$this->lastFour = $lastFour;
}

/**
* @return mixed
*/
public function getExpiryMonth()
{
return $this->expiryMonth;
}

/**
* @param mixed $expiryMonth
*/
public function setExpiryMonth($expiryMonth): void
{
$this->expiryMonth = $expiryMonth;
}

/**
* @return mixed
*/
public function getExpiryYear()
{
return $this->expiryYear;
}

/**
* @param mixed $expiryYear
*/
public function setExpiryYear($expiryYear): void
{
$this->expiryYear = $expiryYear;
}



/**
* @return mixed
*/
Expand Down

0 comments on commit 573b6ea

Please # to comment.