com.aliyun.dingtalkcarbon_1_0.models.GetPersonalCarbonInfoRequest 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.dingtalkcarbon_1_0.models;
import com.aliyun.tea.*;
public class GetPersonalCarbonInfoRequest extends TeaModel {
// 参数类型
@NameInMap("actionType")
public String actionType;
// 钉钉unionId
@NameInMap("unionId")
public String unionId;
public static GetPersonalCarbonInfoRequest build(java.util.Map map) throws Exception {
GetPersonalCarbonInfoRequest self = new GetPersonalCarbonInfoRequest();
return TeaModel.build(map, self);
}
public GetPersonalCarbonInfoRequest setActionType(String actionType) {
this.actionType = actionType;
return this;
}
public String getActionType() {
return this.actionType;
}
public GetPersonalCarbonInfoRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}