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

com.aliyun.dingtalkedu_1_0.models.ProvidePointRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;

import com.aliyun.tea.*;

public class ProvidePointRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

action01

*/ @NameInMap("actionCode") public String actionCode; /** *

This parameter is required.

* * example: *

biz01

*/ @NameInMap("bizId") public String bizId; /** *

This parameter is required.

* * example: *

personal

*/ @NameInMap("pointType") public String pointType; public static ProvidePointRequest build(java.util.Map map) throws Exception { ProvidePointRequest self = new ProvidePointRequest(); return TeaModel.build(map, self); } public ProvidePointRequest setActionCode(String actionCode) { this.actionCode = actionCode; return this; } public String getActionCode() { return this.actionCode; } public ProvidePointRequest setBizId(String bizId) { this.bizId = bizId; return this; } public String getBizId() { return this.bizId; } public ProvidePointRequest setPointType(String pointType) { this.pointType = pointType; return this; } public String getPointType() { return this.pointType; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy