Initial Commit

This commit is contained in:
David Stone
2024-11-30 18:24:12 -07:00
commit e8f7955c1c
5432 changed files with 1397750 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<?php
namespace WP_Ultimo\Dependencies\Stripe;
/**
* Class OAuthErrorObject.
*
* @property string $error
* @property string $error_description
*/
class OAuthErrorObject extends StripeObject
{
/**
* Refreshes this object using the provided values.
*
* @param array $values
* @param null|array|string|Util\RequestOptions $opts
* @param bool $partial defaults to false
*/
public function refreshFrom($values, $opts, $partial = \false)
{
// Unlike most other API resources, the API will omit attributes in
// error objects when they have a null value. We manually set default
// values here to facilitate generic error handling.
$values = \array_merge(['error' => null, 'error_description' => null], $values);
parent::refreshFrom($values, $opts, $partial);
}
}