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

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

The 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 RollbackDeductPointRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

biz01

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

This parameter is required.

* * example: *

personal

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy