0byt3m1n1
Path:
/
home
/
kassiope
/
www
/
vendor
/
stripe
/
stripe-php
/
lib
/
Issuing
/
[
Home
]
File: Dispute.php
<?php namespace Stripe\Issuing; /** * As a <a href="https://stripe.com/docs/issuing">card issuer</a>, you can <a * href="https://stripe.com/docs/issuing/purchases/disputes">dispute</a> * transactions that you do not recognize, suspect to be fraudulent, or have some * other issue. * * Related guide: <a * href="https://stripe.com/docs/issuing/purchases/disputes">Disputing * Transactions</a> * * @property string $id Unique identifier for the object. * @property string $object String representing the object's type. Objects of the same type share the same value. * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode. */ class Dispute extends \Stripe\ApiResource { const OBJECT_NAME = 'issuing.dispute'; use \Stripe\ApiOperations\All; use \Stripe\ApiOperations\Create; use \Stripe\ApiOperations\Retrieve; use \Stripe\ApiOperations\Update; }