# give/4.15.4/vendor/stripe/stripe-php/lib/RequestTelemetry.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.15.4. 27 lines.

- Page: https://pluginprobe.com/plugins/give/4.15.4/code/vendor/stripe/stripe-php/lib/RequestTelemetry.php
- Raw: https://pluginprobe.com/plugins/give/4.15.4/raw/vendor/stripe/stripe-php/lib/RequestTelemetry.php
- Modified: 2021-09-27T12:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.15.4/code/vendor/stripe/stripe-php/lib/RequestTelemetry.php#L10-L20`.

```php
<?php

namespace Stripe;

/**
 * Class RequestTelemetry.
 *
 * Tracks client request telemetry
 */
class RequestTelemetry
{
    public $requestId;
    public $requestDuration;

    /**
     * Initialize a new telemetry object.
     *
     * @param string $requestId the request's request ID
     * @param int $requestDuration the request's duration in milliseconds
     */
    public function __construct($requestId, $requestDuration)
    {
        $this->requestId = $requestId;
        $this->requestDuration = $requestDuration;
    }
}

```
