extclient.go 736 B

12345678910111213
  1. package models
  2. type ExtClient struct {
  3. ClientID string `json:"clientid" bson:"clientid"`
  4. Description string `json:"description" bson:"description"`
  5. PrivateKey string `json:"privatekey" bson:"privatekey"`
  6. PublicKey string `json:"publickey" bson:"publickey"`
  7. Network string `json:"network" bson:"network"`
  8. Address string `json:"address" bson:"address"`
  9. LastModified int64 `json:"lastmodified" bson:"lastmodified"`
  10. IngressGatewayID string `json:"ingressgatewayid" bson:"ingressgatewayid"`
  11. IngressGatewayEndpoint string `json:"ingressgatewayendpoint" bson:"ingressgatewayendpoint"`
  12. }