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

com.aliyun.pds20220301.models.CancelShareLinkRequest 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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy