Skip to content

Commit c9aae3b

Browse files
authored
Merge pull request #33 from serverscom/update-ssl-struct
add missing fields for SSLCertificate
2 parents a9567a2 + 7dc83d4 commit c9aae3b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/types.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ type Location struct {
2020
type SSLCertificate struct {
2121
ID string `json:"id"`
2222
Name string `json:"name"`
23+
Type string `json:"type"`
24+
Issuer *string `json:"issuer"`
25+
Subject string `json:"subject"`
26+
DomainNames []string `json:"domain_names"`
2327
Sha1Fingerprint string `json:"sha1_fingerprint"`
2428
Labels map[string]string `json:"labels"`
2529
Expires *time.Time `json:"expires_at"`

0 commit comments

Comments
 (0)