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

com.aliyun.dingtalkdevicemng_1_0.models.ListInspectInfoRequest 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.dingtalkdevicemng_1_0.models;

import com.aliyun.tea.*;

public class ListInspectInfoRequest extends TeaModel {
    @NameInMap("deviceUuid")
    public java.util.List deviceUuid;

    /**
     * example:
     * 

1

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

10

*/ @NameInMap("pageSize") public Integer pageSize; /** * example: *

inspect

*/ @NameInMap("type") public String type; public static ListInspectInfoRequest build(java.util.Map map) throws Exception { ListInspectInfoRequest self = new ListInspectInfoRequest(); return TeaModel.build(map, self); } public ListInspectInfoRequest setDeviceUuid(java.util.List deviceUuid) { this.deviceUuid = deviceUuid; return this; } public java.util.List getDeviceUuid() { return this.deviceUuid; } public ListInspectInfoRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListInspectInfoRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListInspectInfoRequest setType(String type) { this.type = type; return this; } public String getType() { return this.type; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy