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

com.aliyun.agency20221216.models.ResendEmailResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class ResendEmailResponseBody extends TeaModel {
    /**
     * 

Result Code, Error code.
* Candidate Value:

*
    *
  • 200: OK
  • *
  • 1109: System error
  • *
  • 3058: Frequent sending, the limit is 10 emails in every 5 minutes.
  • *
  • 3057: InviteId is empty.
  • *
  • 3060: Can\"t find sending record of given InviteId.
  • *
  • 3061: Registration URL is expired, unable to resend.
  • *
* * example: *

200

*/ @NameInMap("Code") public String code; /** *

Result message

* * example: *

success

*/ @NameInMap("Message") public String message; /** *

Request ID, the unique request identifier generated by Alibaba Cloud.

* * example: *

9C14ADFE-DF0A-54D4-8BD5-45D0839246B4

*/ @NameInMap("RequestId") public String requestId; /** *

Candidate Value: True/False, which indicates whether the current API call itself is successful. It does not guarantee the success of subsequent business operations.

* * example: *

true

*/ @NameInMap("Success") public Boolean success; public static ResendEmailResponseBody build(java.util.Map map) throws Exception { ResendEmailResponseBody self = new ResendEmailResponseBody(); return TeaModel.build(map, self); } public ResendEmailResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public ResendEmailResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public ResendEmailResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ResendEmailResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy