mirror of
https://github.com/itflow-org/itflow
synced 2026-03-13 01:04:50 +00:00
Bump stripe-php from 19.0.0 to 19.4.1
This commit is contained in:
@@ -7,7 +7,7 @@ namespace Stripe\Terminal;
|
||||
/**
|
||||
* A Reader represents a physical device for accepting payment details.
|
||||
*
|
||||
* Related guide: <a href="https://stripe.com/docs/terminal/payments/connect-reader">Connecting to a reader</a>
|
||||
* Related guide: <a href="https://docs.stripe.com/terminal/payments/connect-reader">Connecting to a reader</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.
|
||||
@@ -16,10 +16,10 @@ namespace Stripe\Terminal;
|
||||
* @property string $device_type Device type of the reader.
|
||||
* @property null|string $ip_address The local IP address of the reader.
|
||||
* @property string $label Custom label given to the reader for easier identification.
|
||||
* @property null|int $last_seen_at The last time this reader reported to Stripe backend.
|
||||
* @property null|int $last_seen_at The last time this reader reported to Stripe backend. Timestamp is measured in milliseconds since the Unix epoch. Unlike most other Stripe timestamp fields which use seconds, this field uses milliseconds.
|
||||
* @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.
|
||||
* @property null|Location|string $location The location identifier of the reader.
|
||||
* @property \Stripe\StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
|
||||
* @property \Stripe\StripeObject $metadata Set of <a href="https://docs.stripe.com/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
|
||||
* @property string $serial_number Serial number of the reader.
|
||||
* @property null|string $status The networking status of the reader. We do not recommend using this field in flows that may block taking payments.
|
||||
*/
|
||||
@@ -34,9 +34,11 @@ class Reader extends \Stripe\ApiResource
|
||||
const DEVICE_TYPE_BBPOS_WISEPOS_E = 'bbpos_wisepos_e';
|
||||
const DEVICE_TYPE_MOBILE_PHONE_READER = 'mobile_phone_reader';
|
||||
const DEVICE_TYPE_SIMULATED_STRIPE_S700 = 'simulated_stripe_s700';
|
||||
const DEVICE_TYPE_SIMULATED_STRIPE_S710 = 'simulated_stripe_s710';
|
||||
const DEVICE_TYPE_SIMULATED_WISEPOS_E = 'simulated_wisepos_e';
|
||||
const DEVICE_TYPE_STRIPE_M2 = 'stripe_m2';
|
||||
const DEVICE_TYPE_STRIPE_S700 = 'stripe_s700';
|
||||
const DEVICE_TYPE_STRIPE_S710 = 'stripe_s710';
|
||||
const DEVICE_TYPE_VERIFONE_P400 = 'verifone_P400';
|
||||
|
||||
const STATUS_OFFLINE = 'offline';
|
||||
|
||||
Reference in New Issue
Block a user