-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCertificate.php
62 lines (53 loc) · 1.09 KB
/
Certificate.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
<?php
class Certificate
{
/**
* @var string $CertificateID
*/
protected $CertificateID = null;
/**
* @var BinaryData $Certificate
*/
protected $Certificate = null;
/**
* @param string $CertificateID
* @param BinaryData $Certificate
*/
public function __construct($CertificateID, $Certificate)
{
$this->CertificateID = $CertificateID;
$this->Certificate = $Certificate;
}
/**
* @return string
*/
public function getCertificateID()
{
return $this->CertificateID;
}
/**
* @param string $CertificateID
* @return Certificate
*/
public function setCertificateID($CertificateID)
{
$this->CertificateID = $CertificateID;
return $this;
}
/**
* @return BinaryData
*/
public function getCertificate()
{
return $this->Certificate;
}
/**
* @param BinaryData $Certificate
* @return Certificate
*/
public function setCertificate($Certificate)
{
$this->Certificate = $Certificate;
return $this;
}
}