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

com.aliyun.dingtalkorg_culture_1_0.models.DeductionPointBatchResponseBody 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.dingtalkorg_culture_1_0.models;

import com.aliyun.tea.*;

public class DeductionPointBatchResponseBody extends TeaModel {
    @NameInMap("result")
    public DeductionPointBatchResponseBodyResult result;

    /**
     * 

This parameter is required.

* * example: *

true

*/ @NameInMap("success") public Boolean success; public static DeductionPointBatchResponseBody build(java.util.Map map) throws Exception { DeductionPointBatchResponseBody self = new DeductionPointBatchResponseBody(); return TeaModel.build(map, self); } public DeductionPointBatchResponseBody setResult(DeductionPointBatchResponseBodyResult result) { this.result = result; return this; } public DeductionPointBatchResponseBodyResult getResult() { return this.result; } public DeductionPointBatchResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } public static class DeductionPointBatchResponseBodyResultOpenPointInvokeResultDTOS extends TeaModel { /** * example: *

banliang#-20005

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

This parameter is required.

* * example: *

Fail

*/ @NameInMap("invokeStatus") public String invokeStatus; /** * example: *

freeze already settle

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

This parameter is required.

* * example: *

34345435345

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

This parameter is required.

* * example: *

01274411491620908910

*/ @NameInMap("userId") public String userId; public static DeductionPointBatchResponseBodyResultOpenPointInvokeResultDTOS build(java.util.Map map) throws Exception { DeductionPointBatchResponseBodyResultOpenPointInvokeResultDTOS self = new DeductionPointBatchResponseBodyResultOpenPointInvokeResultDTOS(); return TeaModel.build(map, self); } public DeductionPointBatchResponseBodyResultOpenPointInvokeResultDTOS setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public DeductionPointBatchResponseBodyResultOpenPointInvokeResultDTOS setInvokeStatus(String invokeStatus) { this.invokeStatus = invokeStatus; return this; } public String getInvokeStatus() { return this.invokeStatus; } public DeductionPointBatchResponseBodyResultOpenPointInvokeResultDTOS setMsg(String msg) { this.msg = msg; return this; } public String getMsg() { return this.msg; } public DeductionPointBatchResponseBodyResultOpenPointInvokeResultDTOS setOutId(String outId) { this.outId = outId; return this; } public String getOutId() { return this.outId; } public DeductionPointBatchResponseBodyResultOpenPointInvokeResultDTOS setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } public static class DeductionPointBatchResponseBodyResult extends TeaModel { @NameInMap("openPointInvokeResultDTOS") public java.util.List openPointInvokeResultDTOS; public static DeductionPointBatchResponseBodyResult build(java.util.Map map) throws Exception { DeductionPointBatchResponseBodyResult self = new DeductionPointBatchResponseBodyResult(); return TeaModel.build(map, self); } public DeductionPointBatchResponseBodyResult setOpenPointInvokeResultDTOS(java.util.List openPointInvokeResultDTOS) { this.openPointInvokeResultDTOS = openPointInvokeResultDTOS; return this; } public java.util.List getOpenPointInvokeResultDTOS() { return this.openPointInvokeResultDTOS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy