com.aliyun.eventbridge.models.DeleteEventStreamingResponse 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
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eventbridge.models;
import com.aliyun.tea.*;
/**
* The response of delete event streaming
*/
public class DeleteEventStreamingResponse extends TeaModel {
@NameInMap("RequestId")
@Validation(required = true)
public String requestId;
@NameInMap("ResourceOwnerAccountId")
@Validation(required = true)
public String resourceOwnerAccountId;
public static DeleteEventStreamingResponse build(java.util.Map map) {
DeleteEventStreamingResponse self = new DeleteEventStreamingResponse();
return TeaModel.build(map, self);
}
public DeleteEventStreamingResponse setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteEventStreamingResponse setResourceOwnerAccountId(String resourceOwnerAccountId) {
this.resourceOwnerAccountId = resourceOwnerAccountId;
return this;
}
public String getResourceOwnerAccountId() {
return this.resourceOwnerAccountId;
}
}