mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-10 01:10:27 +08:00
19 lines
305 B
Protocol Buffer
19 lines
305 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/model_acme_provider.proto";
|
|
|
|
message ACMEProviderAccount {
|
|
int64 id = 1;
|
|
string name = 2;
|
|
bool isOn = 3;
|
|
string providerCode = 4;
|
|
string eabKid = 5;
|
|
string eabKey = 6;
|
|
string error = 7;
|
|
|
|
ACMEProvider acmeProvider = 30;
|
|
}
|