certificates/acme/certificate.go

15 lines
272 B
Go
Raw Normal View History

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