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

com.aliyun.ice20201109.models.DescribeNotifyConfigResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class DescribeNotifyConfigResponseBody extends TeaModel {
    /**
     * example:
     * 

http://customer.com/callback

*/ @NameInMap("CallbackUrl") public String callbackUrl; /** * example: *

true

*/ @NameInMap("EnableNotify") public Boolean enableNotify; /** * example: *

agent_start,agent_stop,error

*/ @NameInMap("EventTypes") public String eventTypes; /** * example: *

7B117AF5-2A16-412C-B127-FA6175ED1AD0

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

eyJhcHBpZCI6ICIxMjM0MTIzNxxxxx

*/ @NameInMap("Token") public String token; public static DescribeNotifyConfigResponseBody build(java.util.Map map) throws Exception { DescribeNotifyConfigResponseBody self = new DescribeNotifyConfigResponseBody(); return TeaModel.build(map, self); } public DescribeNotifyConfigResponseBody setCallbackUrl(String callbackUrl) { this.callbackUrl = callbackUrl; return this; } public String getCallbackUrl() { return this.callbackUrl; } public DescribeNotifyConfigResponseBody setEnableNotify(Boolean enableNotify) { this.enableNotify = enableNotify; return this; } public Boolean getEnableNotify() { return this.enableNotify; } public DescribeNotifyConfigResponseBody setEventTypes(String eventTypes) { this.eventTypes = eventTypes; return this; } public String getEventTypes() { return this.eventTypes; } public DescribeNotifyConfigResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeNotifyConfigResponseBody setToken(String token) { this.token = token; return this; } public String getToken() { return this.token; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy