Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

transfer field in Size, type changed to Double #123

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/java/com/myjeeva/digitalocean/pojo/Size.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class Size extends Base {
@SerializedName("disk")
private Integer diskSize;

private Long transfer;
private Double transfer;

@SerializedName("price_monthly")
private BigDecimal priceMonthly;
Expand Down Expand Up @@ -112,12 +112,12 @@ public void setDiskSize(Integer diskSize) {
}

/** @return the transfer */
public Long getTransfer() {
public Double getTransfer() {
return transfer;
}

/** @param transfer the transfer to set */
public void setTransfer(Long transfer) {
public void setTransfer(Double transfer) {
this.transfer = transfer;
}

Expand Down