com.aliyun.eventbridge.models.TestEventPatternResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eventbridge-client Show documentation
Show all versions of eventbridge-client Show documentation
Alibaba Cloud eventbridge SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eventbridge.models;
import com.aliyun.tea.*;
/**
* The response of testEventPattern
*/
public class TestEventPatternResponse extends TeaModel {
@NameInMap("RequestId")
@Validation(required = true)
public String requestId;
@NameInMap("ResourceOwnerAccountId")
@Validation(required = true)
public String resourceOwnerAccountId;
@NameInMap("Result")
@Validation(required = true)
public Boolean result;
public static TestEventPatternResponse build(java.util.Map map) {
TestEventPatternResponse self = new TestEventPatternResponse();
return TeaModel.build(map, self);
}
public TestEventPatternResponse setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public TestEventPatternResponse setResourceOwnerAccountId(String resourceOwnerAccountId) {
this.resourceOwnerAccountId = resourceOwnerAccountId;
return this;
}
public String getResourceOwnerAccountId() {
return this.resourceOwnerAccountId;
}
public TestEventPatternResponse setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
}