response.go 495 B

1234567891011121314151617181920212223
  1. package scm_sdk
  2. type (
  3. msgResponse struct {
  4. Success bool `json:"success"`
  5. ErrCode uint32 `json:"errCode"`
  6. Msg string `json:"msg"`
  7. }
  8. GetCurrentConfigurationResponse struct {
  9. msgResponse
  10. Info *ConfigurationInfo `json:"info"`
  11. }
  12. ConfigurationInfo struct {
  13. Namespace string `json:"namespace"`
  14. Name string `json:"name"`
  15. Tag string `json:"tag"`
  16. Describe string `json:"describe"`
  17. Content string `json:"content"`
  18. IsCurrent bool `json:"isCurrent"`
  19. }
  20. )