-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathUserKey.php
63 lines (56 loc) · 1.07 KB
/
UserKey.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php declare(strict_types=1);
namespace MyENA\RGW\Models;
use MyENA\RGW\AbstractModel;
use OpenApi\Annotations as OA;
/**
* @OA\Schema(
* schema="RGWUserKey",
* type="object",
* @OA\Property(
* property="user",
* type="string"
* ),
* @OA\Property(
* property="access_key",
* type="string"
* ),
* @OA\Property(
* property="secret_key",
* type="string"
* )
* )
*/
/**
* Class UserKey
* @package MyENA\RGW\Models
*/
class UserKey extends AbstractModel
{
/** @var string */
protected $user = '';
/** @var string */
protected $accessKey = '';
/** @var string */
protected $secretKey = '';
/**
* @return string
*/
public function getUser(): string
{
return $this->user;
}
/**
* @return string
*/
public function getAccessKey(): string
{
return $this->accessKey;
}
/**
* @return string
*/
public function getSecretKey(): string
{
return $this->secretKey;
}
}