All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkcarbon_1_0.models.GetPersonalCarbonInfoRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy