mirror of https://github.com/apache/cloudstack.git
Use correct response type for the user response in list/create/update/enable/disableAccount commands.
This commit is contained in:
parent
9e4e3f46bb
commit
7436654f4f
|
|
@ -102,7 +102,7 @@ public class AccountResponse extends BaseResponse {
|
|||
@SerializedName(ApiConstants.IS_CLEANUP_REQUIRED) @Param(description="true if the account requires cleanup")
|
||||
private Boolean cleanupRequired;
|
||||
|
||||
@SerializedName("user") @Param(description="the list of users associated with account", responseObject = NicResponse.class)
|
||||
@SerializedName("user") @Param(description="the list of users associated with account", responseObject = UserResponse.class)
|
||||
private List<UserResponse> users;
|
||||
|
||||
public Long getId() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue