com.aliyun.pds20220301.models.CancelShareLinkRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pds20220301 Show documentation
Show all versions of pds20220301 Show documentation
Alibaba Cloud pds (20220301) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;
import com.aliyun.tea.*;
public class CancelShareLinkRequest extends TeaModel {
/**
* The share ID.
*/
@NameInMap("share_id")
public String shareId;
public static CancelShareLinkRequest build(java.util.Map map) throws Exception {
CancelShareLinkRequest self = new CancelShareLinkRequest();
return TeaModel.build(map, self);
}
public CancelShareLinkRequest setShareId(String shareId) {
this.shareId = shareId;
return this;
}
public String getShareId() {
return this.shareId;
}
}