Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,53 +16,43 @@ public class FeeCheckRequestBody {

private String currency;

public String getAmount ()
{
public String getAmount() {
return amount;
}

public void setAmount (String amount)
{
public void setAmount(String amount) {
this.amount = amount;
}

public String getPBFPubKey ()
{
public String getPBFPubKey() {
return PBFPubKey;
}

public void setPBFPubKey (String PBFPubKey)
{
public void setPBFPubKey(String PBFPubKey) {
this.PBFPubKey = PBFPubKey;
}

public String getPtype ()
{
public String getPtype() {
return ptype;
}

public void setPtype (String ptype)
{
public void setPtype(String ptype) {
this.ptype = ptype;
}

public String getCard6 ()
{
public String getCard6() {
return card6;
}

public void setCard6 (String card6)
{
public void setCard6(String card6) {
this.card6 = card6;
}

public String getCurrency ()
{
public String getCurrency() {
return currency;
}

public void setCurrency (String currency)
{
public void setCurrency(String currency) {
this.currency = currency;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@

public class Meta {

String metavalue;
String metaname;

public Meta(String metaname, String metavalue) {
this.metaname = metaname;
this.metavalue = metavalue;
}

String metavalue;

public String getMetavalue() {
return metavalue;
}
Expand All @@ -28,6 +29,4 @@ public String getMetaname() {
public void setMetaname(String metaname) {
this.metaname = metaname;
}

String metaname;
}
Loading