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

com.aliyun.ccp.ccpclient.models.ListShareRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccp.ccpclient.models;

import com.aliyun.tea.*;

/**
 * list share request
 */
public class ListShareRequest extends TeaModel {
    @NameInMap("creator")
    public String creator;

    @NameInMap("drive_id")
    @Validation(pattern = "[0-9]+")
    public String driveId;

    @NameInMap("limit")
    @Validation(required = true)
    public Integer limit;

    @NameInMap("marker")
    public String marker;

    @NameInMap("owner")
    public String owner;

    @NameInMap("share_file_path")
    public String shareFilePath;

    public static ListShareRequest build(java.util.Map map) throws Exception {
        ListShareRequest self = new ListShareRequest();
        return TeaModel.build(map, self);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy