/src/main/java/com/tencentcloudapi/mongodb/v20180408/models/SetPasswordResponse.java

https://github.com/TencentCloud/tencentcloud-sdk-java · Java · 80 lines · 29 code · 11 blank · 40 comment · 0 complexity · a96eb36384082f26234942bb64ab28a8 MD5 · raw file

  1. /*
  2. * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. 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. package com.tencentcloudapi.mongodb.v20180408.models;
  17. import com.tencentcloudapi.common.AbstractModel;
  18. import com.google.gson.annotations.SerializedName;
  19. import com.google.gson.annotations.Expose;
  20. import java.util.HashMap;
  21. public class SetPasswordResponse extends AbstractModel{
  22. /**
  23. * 返回的异步任务ID
  24. */
  25. @SerializedName("FlowId")
  26. @Expose
  27. private Long FlowId;
  28. /**
  29. * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  30. */
  31. @SerializedName("RequestId")
  32. @Expose
  33. private String RequestId;
  34. /**
  35. * Get 返回的异步任务ID
  36. * @return FlowId 返回的异步任务ID
  37. */
  38. public Long getFlowId() {
  39. return this.FlowId;
  40. }
  41. /**
  42. * Set 返回的异步任务ID
  43. * @param FlowId 返回的异步任务ID
  44. */
  45. public void setFlowId(Long FlowId) {
  46. this.FlowId = FlowId;
  47. }
  48. /**
  49. * Get 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  50. * @return RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  51. */
  52. public String getRequestId() {
  53. return this.RequestId;
  54. }
  55. /**
  56. * Set 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  57. * @param RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  58. */
  59. public void setRequestId(String RequestId) {
  60. this.RequestId = RequestId;
  61. }
  62. /**
  63. * Internal implementation, normal users should not use it.
  64. */
  65. public void toMap(HashMap<String, String> map, String prefix) {
  66. this.setParamSimple(map, prefix + "FlowId", this.FlowId);
  67. this.setParamSimple(map, prefix + "RequestId", this.RequestId);
  68. }
  69. }