summaryrefslogtreecommitdiffstats
path: root/src/Objects/ChainCert.php
blob: 5a4ef59ffa0c70ab7ddd58fbf5bb5bb8fc79eb07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
namespace BjoernrDe\SSLLabsApi\Objects;

class ChainCert
{
	private $subject;
	private $label;
	private $notBefore;
	private $notAfter;
	private $issuerSubject;
	private $issuerLabel;
	private $sigAlg;
	private $issues;
	private $keyAlg;
	private $keySize;
	private $keyStrength;
	private $revocationStatus;
	private $crlRevocationStatus;
	private $raw;
}