com.aliyun.dingtalkimpaas_1_0.models.ReadMessageHeaders 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.dingtalkimpaas_1_0.models;
import com.aliyun.tea.*;
public class ReadMessageHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map commonHeaders;
@NameInMap("operationSource")
public String operationSource;
@NameInMap("x-acs-dingtalk-access-token")
public String xAcsDingtalkAccessToken;
public static ReadMessageHeaders build(java.util.Map map) throws Exception {
ReadMessageHeaders self = new ReadMessageHeaders();
return TeaModel.build(map, self);
}
public ReadMessageHeaders setCommonHeaders(java.util.Map commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map getCommonHeaders() {
return this.commonHeaders;
}
public ReadMessageHeaders setOperationSource(String operationSource) {
this.operationSource = operationSource;
return this;
}
public String getOperationSource() {
return this.operationSource;
}
public ReadMessageHeaders setXAcsDingtalkAccessToken(String xAcsDingtalkAccessToken) {
this.xAcsDingtalkAccessToken = xAcsDingtalkAccessToken;
return this;
}
public String getXAcsDingtalkAccessToken() {
return this.xAcsDingtalkAccessToken;
}
}