Skip to content

Dialog update #169

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

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
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