This commit is contained in:
AZ
2016-12-29 10:24:41 +01:00
parent fd67bb797e
commit 6f94c90edd
3 changed files with 17 additions and 15 deletions
@@ -11,15 +11,15 @@ import java.util.List;
*/
public class GetTransferResponse {
private List<Transfer> transfers = new ArrayList<>();
private Bundle[] transfers;
public static GetTransferResponse create(Bundle[] transfers) {
GetTransferResponse res = new GetTransferResponse();
//res.transfers = transfers;
res.transfers = transfers;
return res;
}
public List<Transfer> getTransfers() {
public Bundle[] getTransfers() {
return transfers;
}
}