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

com.aliyun.dingtalkexclusive_1_0.models.GetTrustDeviceListRequest 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.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

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

1721718854814

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

1721718854814

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

1721718854814

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

1721718854814

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

xx:xx:xx:xx:xx:xx

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

1

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

500

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

Android

*/ @NameInMap("platform") public String platform; @NameInMap("status") public Integer status; @NameInMap("userIds") public java.util.List userIds; public static GetTrustDeviceListRequest build(java.util.Map map) throws Exception { GetTrustDeviceListRequest self = new GetTrustDeviceListRequest(); return TeaModel.build(map, self); } public GetTrustDeviceListRequest setGmtCreateEnd(Long gmtCreateEnd) { this.gmtCreateEnd = gmtCreateEnd; return this; } public Long getGmtCreateEnd() { return this.gmtCreateEnd; } public GetTrustDeviceListRequest setGmtCreateStart(Long gmtCreateStart) { this.gmtCreateStart = gmtCreateStart; return this; } public Long getGmtCreateStart() { return this.gmtCreateStart; } public GetTrustDeviceListRequest setGmtModifiedEnd(Long gmtModifiedEnd) { this.gmtModifiedEnd = gmtModifiedEnd; return this; } public Long getGmtModifiedEnd() { return this.gmtModifiedEnd; } public GetTrustDeviceListRequest setGmtModifiedStart(Long gmtModifiedStart) { this.gmtModifiedStart = gmtModifiedStart; return this; } public Long getGmtModifiedStart() { return this.gmtModifiedStart; } public GetTrustDeviceListRequest setMacAddress(String macAddress) { this.macAddress = macAddress; return this; } public String getMacAddress() { return this.macAddress; } public GetTrustDeviceListRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public GetTrustDeviceListRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public GetTrustDeviceListRequest setPlatform(String platform) { this.platform = platform; return this; } public String getPlatform() { return this.platform; } public GetTrustDeviceListRequest setStatus(Integer status) { this.status = status; return this; } public Integer getStatus() { return this.status; } public GetTrustDeviceListRequest setUserIds(java.util.List userIds) { this.userIds = userIds; return this; } public java.util.List getUserIds() { return this.userIds; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy