All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.arms20190808.models.SetRetcodeShareStatusResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;

import com.aliyun.tea.*;

public class SetRetcodeShareStatusResponseBody extends TeaModel {
    /**
     * 

Indicates whether the call is successful. Valid values:

*
    *
  • true: The call is successful.
  • *
  • false: The call fails.
  • *
* * example: *

true

*/ @NameInMap("IsSuccess") public Boolean isSuccess; /** *

The ID of the request.

* * example: *

40B10E04-81E8-4643-970D-F1B38F2E****

*/ @NameInMap("RequestId") public String requestId; public static SetRetcodeShareStatusResponseBody build(java.util.Map map) throws Exception { SetRetcodeShareStatusResponseBody self = new SetRetcodeShareStatusResponseBody(); return TeaModel.build(map, self); } public SetRetcodeShareStatusResponseBody setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; return this; } public Boolean getIsSuccess() { return this.isSuccess; } public SetRetcodeShareStatusResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy