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

com.aliyun.dingtalkcalendar_1_0.models.ListInstancesRequest 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.dingtalkcalendar_1_0.models;

import com.aliyun.tea.*;

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

100

*/ @NameInMap("maxAttendees") public Integer maxAttendees; @NameInMap("maxResults") public Integer maxResults; @NameInMap("nextToken") public String nextToken; /** *

Use the UTC time format: yyyy-MM-ddTHH:mmZ

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

Use the UTC time format: yyyy-MM-ddTHH:mmZ

*/ @NameInMap("timeMin") public String timeMin; public static ListInstancesRequest build(java.util.Map map) throws Exception { ListInstancesRequest self = new ListInstancesRequest(); return TeaModel.build(map, self); } public ListInstancesRequest setMaxAttendees(Integer maxAttendees) { this.maxAttendees = maxAttendees; return this; } public Integer getMaxAttendees() { return this.maxAttendees; } public ListInstancesRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public ListInstancesRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListInstancesRequest setTimeMax(String timeMax) { this.timeMax = timeMax; return this; } public String getTimeMax() { return this.timeMax; } public ListInstancesRequest setTimeMin(String timeMin) { this.timeMin = timeMin; return this; } public String getTimeMin() { return this.timeMin; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy