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

com.aliyun.dingtalkyida_1_0.models.GetInstanceIdListResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetInstanceIdListResponseBody extends TeaModel {
    @NameInMap("data")
    public java.util.List data;

    /**
     * example:
     * 

1

*/ @NameInMap("pageNumber") public Long pageNumber; /** * example: *

100

*/ @NameInMap("totalCount") public Long totalCount; public static GetInstanceIdListResponseBody build(java.util.Map map) throws Exception { GetInstanceIdListResponseBody self = new GetInstanceIdListResponseBody(); return TeaModel.build(map, self); } public GetInstanceIdListResponseBody setData(java.util.List data) { this.data = data; return this; } public java.util.List getData() { return this.data; } public GetInstanceIdListResponseBody setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public GetInstanceIdListResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy