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