-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
42 changed files
with
3,292 additions
and
384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
2021-06-15 Version: 1.0.6 | ||
- AMP Version Change. | ||
|
||
2021-04-28 Version: 1.0.5 | ||
- AMP Version Change. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 89 additions & 0 deletions
89
...0171214/src/main/java/com/aliyun/bssopenapi20171214/models/AddAccountRelationRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
// This file is auto-generated, don't edit it. Thanks. | ||
package com.aliyun.bssopenapi20171214.models; | ||
|
||
import com.aliyun.tea.*; | ||
|
||
public class AddAccountRelationRequest extends TeaModel { | ||
@NameInMap("RelationType") | ||
public String relationType; | ||
|
||
@NameInMap("ParentUserId") | ||
public Long parentUserId; | ||
|
||
@NameInMap("ChildNick") | ||
public String childNick; | ||
|
||
@NameInMap("ChildUserId") | ||
public Long childUserId; | ||
|
||
@NameInMap("RequestId") | ||
public String requestId; | ||
|
||
@NameInMap("PermissionCodes") | ||
public java.util.List<String> permissionCodes; | ||
|
||
@NameInMap("RoleCodes") | ||
public java.util.List<String> roleCodes; | ||
|
||
public static AddAccountRelationRequest build(java.util.Map<String, ?> map) throws Exception { | ||
AddAccountRelationRequest self = new AddAccountRelationRequest(); | ||
return TeaModel.build(map, self); | ||
} | ||
|
||
public AddAccountRelationRequest setRelationType(String relationType) { | ||
this.relationType = relationType; | ||
return this; | ||
} | ||
public String getRelationType() { | ||
return this.relationType; | ||
} | ||
|
||
public AddAccountRelationRequest setParentUserId(Long parentUserId) { | ||
this.parentUserId = parentUserId; | ||
return this; | ||
} | ||
public Long getParentUserId() { | ||
return this.parentUserId; | ||
} | ||
|
||
public AddAccountRelationRequest setChildNick(String childNick) { | ||
this.childNick = childNick; | ||
return this; | ||
} | ||
public String getChildNick() { | ||
return this.childNick; | ||
} | ||
|
||
public AddAccountRelationRequest setChildUserId(Long childUserId) { | ||
this.childUserId = childUserId; | ||
return this; | ||
} | ||
public Long getChildUserId() { | ||
return this.childUserId; | ||
} | ||
|
||
public AddAccountRelationRequest setRequestId(String requestId) { | ||
this.requestId = requestId; | ||
return this; | ||
} | ||
public String getRequestId() { | ||
return this.requestId; | ||
} | ||
|
||
public AddAccountRelationRequest setPermissionCodes(java.util.List<String> permissionCodes) { | ||
this.permissionCodes = permissionCodes; | ||
return this; | ||
} | ||
public java.util.List<String> getPermissionCodes() { | ||
return this.permissionCodes; | ||
} | ||
|
||
public AddAccountRelationRequest setRoleCodes(java.util.List<String> roleCodes) { | ||
this.roleCodes = roleCodes; | ||
return this; | ||
} | ||
public java.util.List<String> getRoleCodes() { | ||
return this.roleCodes; | ||
} | ||
|
||
} |
36 changes: 36 additions & 0 deletions
36
...171214/src/main/java/com/aliyun/bssopenapi20171214/models/AddAccountRelationResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// This file is auto-generated, don't edit it. Thanks. | ||
package com.aliyun.bssopenapi20171214.models; | ||
|
||
import com.aliyun.tea.*; | ||
|
||
public class AddAccountRelationResponse extends TeaModel { | ||
@NameInMap("headers") | ||
@Validation(required = true) | ||
public java.util.Map<String, String> headers; | ||
|
||
@NameInMap("body") | ||
@Validation(required = true) | ||
public AddAccountRelationResponseBody body; | ||
|
||
public static AddAccountRelationResponse build(java.util.Map<String, ?> map) throws Exception { | ||
AddAccountRelationResponse self = new AddAccountRelationResponse(); | ||
return TeaModel.build(map, self); | ||
} | ||
|
||
public AddAccountRelationResponse setHeaders(java.util.Map<String, String> headers) { | ||
this.headers = headers; | ||
return this; | ||
} | ||
public java.util.Map<String, String> getHeaders() { | ||
return this.headers; | ||
} | ||
|
||
public AddAccountRelationResponse setBody(AddAccountRelationResponseBody body) { | ||
this.body = body; | ||
return this; | ||
} | ||
public AddAccountRelationResponseBody getBody() { | ||
return this.body; | ||
} | ||
|
||
} |
Oops, something went wrong.