DescribeSynchronizationJobAlertResult.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Copyright 2009-2017 Alibaba Cloud All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef ALIBABACLOUD_DTS_MODEL_DESCRIBESYNCHRONIZATIONJOBALERTRESULT_H_
  17. #define ALIBABACLOUD_DTS_MODEL_DESCRIBESYNCHRONIZATIONJOBALERTRESULT_H_
  18. #include <string>
  19. #include <vector>
  20. #include <utility>
  21. #include <alibabacloud/core/ServiceResult.h>
  22. #include <alibabacloud/dts/DtsExport.h>
  23. namespace AlibabaCloud
  24. {
  25. namespace Dts
  26. {
  27. namespace Model
  28. {
  29. class ALIBABACLOUD_DTS_EXPORT DescribeSynchronizationJobAlertResult : public ServiceResult
  30. {
  31. public:
  32. DescribeSynchronizationJobAlertResult();
  33. explicit DescribeSynchronizationJobAlertResult(const std::string &payload);
  34. ~DescribeSynchronizationJobAlertResult();
  35. std::string getErrorAlertPhone()const;
  36. std::string getSynchronizationJobId()const;
  37. std::string getSynchronizationJobName()const;
  38. std::string getDelayAlertPhone()const;
  39. std::string getErrorAlertStatus()const;
  40. std::string getErrMessage()const;
  41. std::string getDelayAlertStatus()const;
  42. std::string getSuccess()const;
  43. std::string getDelayOverSeconds()const;
  44. std::string getSynchronizationDirection()const;
  45. std::string getErrCode()const;
  46. protected:
  47. void parse(const std::string &payload);
  48. private:
  49. std::string errorAlertPhone_;
  50. std::string synchronizationJobId_;
  51. std::string synchronizationJobName_;
  52. std::string delayAlertPhone_;
  53. std::string errorAlertStatus_;
  54. std::string errMessage_;
  55. std::string delayAlertStatus_;
  56. std::string success_;
  57. std::string delayOverSeconds_;
  58. std::string synchronizationDirection_;
  59. std::string errCode_;
  60. };
  61. }
  62. }
  63. }
  64. #endif // !ALIBABACLOUD_DTS_MODEL_DESCRIBESYNCHRONIZATIONJOBALERTRESULT_H_