certificates/acme/certificate.go

15 lines
272 B
Go
Raw Normal View History

2019-05-27 00:41:10 +00:00
package acme
import (
"crypto/x509"
)
2021-02-28 18:09:06 +00:00
// Certificate options with which to create and store a cert object.
type Certificate struct {
ID string
2019-05-27 00:41:10 +00:00
AccountID string
OrderID string
Leaf *x509.Certificate
Intermediates []*x509.Certificate
}