Skip to content
This repository has been archived by the owner on Feb 8, 2023. It is now read-only.

Commit

Permalink
add file
Browse files Browse the repository at this point in the history
  • Loading branch information
atptro authored and wenzuochao committed Feb 15, 2020
1 parent 9fc5617 commit 7fe1d3e
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccp.ossclient.models;

import com.aliyun.tea.*;

public class SharePermissionPolicy extends TeaModel {
@NameInMap("file_path")
public String filePath;

@NameInMap("permission_inheritable")
public boolean permissionInheritable;

@NameInMap("permission_list")
public String[] permissionList;

@NameInMap("permission_type")
public String permissionType;

public static SharePermissionPolicy build(java.util.Map<String, ?> map) throws Exception {
SharePermissionPolicy self = new SharePermissionPolicy();
return TeaModel.build(map, self);
}

}

0 comments on commit 7fe1d3e

Please sign in to comment.