Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bitgetlimited
GitHub Repository: bitgetlimited/v3-bitget-api-sdk
Path: blob/master/bitget-php-sdk-api/src/model/ws/WsLoginReq.php
742 views
1
<?php
2
3
4
namespace bitget\model\ws;
5
6
7
class WsLoginReq
8
{
9
var string $apiKey;
10
var string $passphrase;
11
var string $timestamp;
12
var string $sign;
13
14
/**
15
* WsLoginReq constructor.
16
* @param string $apiKey
17
* @param string $passphrase
18
* @param string $timestamp
19
* @param string $sign
20
*/
21
public function __construct(string $apiKey, string $passphrase, string $timestamp, string $sign)
22
{
23
$this->apiKey = $apiKey;
24
$this->passphrase = $passphrase;
25
$this->timestamp = $timestamp;
26
$this->sign = $sign;
27
}
28
29
30
}
31