-
Notifications
You must be signed in to change notification settings - Fork 18
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
Anschutz1927
committed
Jul 31, 2018
1 parent
237d20b
commit 6538699
Showing
25 changed files
with
1,288 additions
and
13 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
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
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
54 changes: 54 additions & 0 deletions
54
app/src/main/java/io/multy/model/entities/EosAccountPriceRequest.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,54 @@ | ||
/* | ||
* Copyright 2018 Idealnaya rabota LLC | ||
* Licensed under Multy.io license. | ||
* See LICENSE for details | ||
*/ | ||
|
||
package io.multy.model.entities; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* Created by [email protected] on 31.07.18. | ||
*/ | ||
public class EosAccountPriceRequest { | ||
|
||
@SerializedName("ram") | ||
private int ram; | ||
@SerializedName("cpu") | ||
private double cpu; | ||
@SerializedName("net") | ||
private double net; | ||
|
||
public EosAccountPriceRequest() { } | ||
|
||
public EosAccountPriceRequest(int ram, double cpu, double net) { | ||
this.ram = ram; | ||
this.cpu = cpu; | ||
this.net = net; | ||
} | ||
|
||
public int getRam() { | ||
return ram; | ||
} | ||
|
||
public void setRam(int ram) { | ||
this.ram = ram; | ||
} | ||
|
||
public double getCpu() { | ||
return cpu; | ||
} | ||
|
||
public void setCpu(double cpu) { | ||
this.cpu = cpu; | ||
} | ||
|
||
public double getNet() { | ||
return net; | ||
} | ||
|
||
public void setNet(double net) { | ||
this.net = net; | ||
} | ||
} |
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
Oops, something went wrong.