File "RequestTelemetry.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/stripe/stripe-php/lib/RequestTelemetry.php
File size: 539 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
    }
}