Use correct response type for the user response in list/create/update/enable/disableAccount commands.

This commit is contained in:
alena 2011-03-28 18:17:31 -07:00
parent 9e4e3f46bb
commit 7436654f4f
1 changed files with 1 additions and 1 deletions

View File

@ -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() {