extclient.go 730 B

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