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

com.aliyun.dingtalkdatacenter_1_0.models.GetAdministrativePenaltiesResponseBody 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.dingtalkdatacenter_1_0.models;

import com.aliyun.tea.*;

public class GetAdministrativePenaltiesResponseBody extends TeaModel {
    /**
     * example:
     * 

[ { "DATE_COL": "xx", "NUMBER": "xx", "ILLEGAL_TYPE": "xx", "DEPARTMENT": "xx", "PUBLIC_DATE": "xx", "CONTENT": "xx", "BASED_ON":"xx", "DESCRIPTION":"xx" } ]

*/ @NameInMap("data") public String data; @NameInMap("total") public Long total; public static GetAdministrativePenaltiesResponseBody build(java.util.Map map) throws Exception { GetAdministrativePenaltiesResponseBody self = new GetAdministrativePenaltiesResponseBody(); return TeaModel.build(map, self); } public GetAdministrativePenaltiesResponseBody setData(String data) { this.data = data; return this; } public String getData() { return this.data; } public GetAdministrativePenaltiesResponseBody setTotal(Long total) { this.total = total; return this; } public Long getTotal() { return this.total; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy