public PaymentRequest AddCurrency(string value) { if (Amount == null) { Amount = new RxpAmount().AddCurrency(value); } else { Amount.AddCurrency(value); } return(this); }