com.aliyun.dingtalkcrm_1_0.models.GetOfficialAccountOTOMessageResultRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcrm_1_0.models;
import com.aliyun.tea.*;
public class GetOfficialAccountOTOMessageResultRequest extends TeaModel {
@NameInMap("accountId")
public String accountId;
// 推送ID
@NameInMap("openPushId")
public String openPushId;
public static GetOfficialAccountOTOMessageResultRequest build(java.util.Map map) throws Exception {
GetOfficialAccountOTOMessageResultRequest self = new GetOfficialAccountOTOMessageResultRequest();
return TeaModel.build(map, self);
}
public GetOfficialAccountOTOMessageResultRequest setAccountId(String accountId) {
this.accountId = accountId;
return this;
}
public String getAccountId() {
return this.accountId;
}
public GetOfficialAccountOTOMessageResultRequest setOpenPushId(String openPushId) {
this.openPushId = openPushId;
return this;
}
public String getOpenPushId() {
return this.openPushId;
}
}