mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-18 18:29:58 +00:00
13 lines
322 B
Go
13 lines
322 B
Go
package apisix
|
|
|
|
type UpdateSSLRequest struct {
|
|
ID string `json:"-"`
|
|
Cert *string `json:"cert,omitempty"`
|
|
Key *string `json:"key,omitempty"`
|
|
SNIs *[]string `json:"snis,omitempty"`
|
|
Type *string `json:"type,omitempty"`
|
|
Status *int32 `json:"status,omitempty"`
|
|
}
|
|
|
|
type UpdateSSLResponse struct{}
|