mirror of
https://github.com/certimate-go/certimate.git
synced 2026-09-03 06:23:54 +08:00
14 lines
463 B
Go
14 lines
463 B
Go
package kong
|
|
|
|
type Certificate struct {
|
|
Id *string `json:"id,omitempty"`
|
|
Cert *string `json:"cert,omitempty"`
|
|
CertAlt *string `json:"cert_alt,omitempty"`
|
|
Key *string `json:"key,omitempty"`
|
|
KeyAlt *string `json:"key_alt,omitempty"`
|
|
SNIs []*string `json:"snis,omitempty"`
|
|
Tags []*string `json:"tags,omitempty"`
|
|
CreatedAt *int64 `json:"created_at,omitempty"`
|
|
UpdatedAt *int64 `json:"updated_at,omitempty"`
|
|
}
|