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

com.aliyun.pds20220301.models.SearchSimilarImageClustersRequest Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;

import com.aliyun.tea.*;

public class SearchSimilarImageClustersRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

1

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

image/resize,m_fill,h_128,w_128,limit_0/format,jpg

*/ @NameInMap("image_thumbnail_process") @Deprecated public String imageThumbnailProcess; /** * example: *

50

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

YWRzX3VzZXJfcHJvZmlsZV9je1bnQh***

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

desc

*/ @NameInMap("order") public String order; public static SearchSimilarImageClustersRequest build(java.util.Map map) throws Exception { SearchSimilarImageClustersRequest self = new SearchSimilarImageClustersRequest(); return TeaModel.build(map, self); } public SearchSimilarImageClustersRequest setDriveId(String driveId) { this.driveId = driveId; return this; } public String getDriveId() { return this.driveId; } public SearchSimilarImageClustersRequest setImageThumbnailProcess(String imageThumbnailProcess) { this.imageThumbnailProcess = imageThumbnailProcess; return this; } public String getImageThumbnailProcess() { return this.imageThumbnailProcess; } public SearchSimilarImageClustersRequest setLimit(Long limit) { this.limit = limit; return this; } public Long getLimit() { return this.limit; } public SearchSimilarImageClustersRequest setMarker(String marker) { this.marker = marker; return this; } public String getMarker() { return this.marker; } public SearchSimilarImageClustersRequest setOrder(String order) { this.order = order; return this; } public String getOrder() { return this.order; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy