EarlyFraudWarning.php
37 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Stripe\Radar; |
| 4 | |
| 5 | /** |
| 6 | * Class EarlyFraudWarning |
| 7 | * |
| 8 | * @property string $id |
| 9 | * @property string $object |
| 10 | * @property bool $actionable |
| 11 | * @property string $charge |
| 12 | * @property int $created |
| 13 | * @property string $fraud_type |
| 14 | * @property bool $livemode |
| 15 | * |
| 16 | * @package Stripe\Radar |
| 17 | */ |
| 18 | class EarlyFraudWarning extends \Stripe\ApiResource |
| 19 | { |
| 20 | const OBJECT_NAME = "radar.early_fraud_warning"; |
| 21 | |
| 22 | use \Stripe\ApiOperations\All; |
| 23 | use \Stripe\ApiOperations\Retrieve; |
| 24 | |
| 25 | /** |
| 26 | * Possible string representations of an early fraud warning's fraud type. |
| 27 | * @link https://stripe.com/docs/api/early_fraud_warnings/object#early_fraud_warning_object-fraud_type |
| 28 | */ |
| 29 | const FRAUD_TYPE_CARD_NEVER_RECEIVED = 'card_never_received'; |
| 30 | const FRAUD_TYPE_FRAUDULENT_CARD_APPLICATION = 'fraudulent_card_application'; |
| 31 | const FRAUD_TYPE_MADE_WITH_COUNTERFEIT_CARD = 'made_with_counterfeit_card'; |
| 32 | const FRAUD_TYPE_MADE_WITH_LOST_CARD = 'made_with_lost_card'; |
| 33 | const FRAUD_TYPE_MADE_WITH_STOLEN_CARD = 'made_with_stolen_card'; |
| 34 | const FRAUD_TYPE_MISC = 'misc'; |
| 35 | const FRAUD_TYPE_UNAUTHORIZED_USE_OF_CARD = 'unauthorized_use_of_card'; |
| 36 | } |
| 37 |