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

com.aliyun.dingtalkdoc_2_0.models.ListStarsRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_2_0.models;

import com.aliyun.tea.*;

public class ListStarsRequest extends TeaModel {
    @NameInMap("option")
    public ListStarsRequestOption option;

    /**
     * 

This parameter is required.

* * example: *

union_id

*/ @NameInMap("operatorId") public String operatorId; public static ListStarsRequest build(java.util.Map map) throws Exception { ListStarsRequest self = new ListStarsRequest(); return TeaModel.build(map, self); } public ListStarsRequest setOption(ListStarsRequestOption option) { this.option = option; return this; } public ListStarsRequestOption getOption() { return this.option; } public ListStarsRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } public static class ListStarsRequestOption extends TeaModel { @NameInMap("contentTypeList") public java.util.List contentTypeList; @NameInMap("filterDocTypes") public java.util.List filterDocTypes; /** * example: *

true

*/ @NameInMap("listV2") public Boolean listV2; /** * example: *

20

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

next_token

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

ASC

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

createTime

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

true

*/ @NameInMap("withDentryCreatorInfo") public Boolean withDentryCreatorInfo; /** * example: *

true

*/ @NameInMap("withDentryModifierInfo") public Boolean withDentryModifierInfo; /** * example: *

true

*/ @NameInMap("withDentryPermissionRole") public Boolean withDentryPermissionRole; /** * example: *

true

*/ @NameInMap("withSpaceDetail") public Boolean withSpaceDetail; /** * example: *

true

*/ @NameInMap("withSpacePermissionRole") public Boolean withSpacePermissionRole; /** * example: *

true

*/ @NameInMap("withTeamDetail") public Boolean withTeamDetail; public static ListStarsRequestOption build(java.util.Map map) throws Exception { ListStarsRequestOption self = new ListStarsRequestOption(); return TeaModel.build(map, self); } public ListStarsRequestOption setContentTypeList(java.util.List contentTypeList) { this.contentTypeList = contentTypeList; return this; } public java.util.List getContentTypeList() { return this.contentTypeList; } public ListStarsRequestOption setFilterDocTypes(java.util.List filterDocTypes) { this.filterDocTypes = filterDocTypes; return this; } public java.util.List getFilterDocTypes() { return this.filterDocTypes; } public ListStarsRequestOption setListV2(Boolean listV2) { this.listV2 = listV2; return this; } public Boolean getListV2() { return this.listV2; } public ListStarsRequestOption setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public ListStarsRequestOption setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListStarsRequestOption setOrder(String order) { this.order = order; return this; } public String getOrder() { return this.order; } public ListStarsRequestOption setOrderBy(String orderBy) { this.orderBy = orderBy; return this; } public String getOrderBy() { return this.orderBy; } public ListStarsRequestOption setWithDentryCreatorInfo(Boolean withDentryCreatorInfo) { this.withDentryCreatorInfo = withDentryCreatorInfo; return this; } public Boolean getWithDentryCreatorInfo() { return this.withDentryCreatorInfo; } public ListStarsRequestOption setWithDentryModifierInfo(Boolean withDentryModifierInfo) { this.withDentryModifierInfo = withDentryModifierInfo; return this; } public Boolean getWithDentryModifierInfo() { return this.withDentryModifierInfo; } public ListStarsRequestOption setWithDentryPermissionRole(Boolean withDentryPermissionRole) { this.withDentryPermissionRole = withDentryPermissionRole; return this; } public Boolean getWithDentryPermissionRole() { return this.withDentryPermissionRole; } public ListStarsRequestOption setWithSpaceDetail(Boolean withSpaceDetail) { this.withSpaceDetail = withSpaceDetail; return this; } public Boolean getWithSpaceDetail() { return this.withSpaceDetail; } public ListStarsRequestOption setWithSpacePermissionRole(Boolean withSpacePermissionRole) { this.withSpacePermissionRole = withSpacePermissionRole; return this; } public Boolean getWithSpacePermissionRole() { return this.withSpacePermissionRole; } public ListStarsRequestOption setWithTeamDetail(Boolean withTeamDetail) { this.withTeamDetail = withTeamDetail; return this; } public Boolean getWithTeamDetail() { return this.withTeamDetail; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy