public class RepayLoan extends Object
| Modifier and Type | Field and Description |
|---|---|
static String |
SERIALIZED_NAME_ORDER_ID |
static String |
SERIALIZED_NAME_REPAID_ALL |
static String |
SERIALIZED_NAME_REPAY_AMOUNT |
| Constructor and Description |
|---|
RepayLoan() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
Long |
getOrderId()
Order ID
|
Boolean |
getRepaidAll()
Repayment method, set to `true` for full repayment, and `false` for partial repayment; When set to false for partial repayment, the repay_amount parameter cannot be greater than the remaining amount to be repaid by the user.
|
String |
getRepayAmount()
Repayment amount, it is mandatory when making partial repayments
|
int |
hashCode() |
RepayLoan |
orderId(Long orderId) |
RepayLoan |
repaidAll(Boolean repaidAll) |
RepayLoan |
repayAmount(String repayAmount) |
void |
setOrderId(Long orderId) |
void |
setRepaidAll(Boolean repaidAll) |
void |
setRepayAmount(String repayAmount) |
String |
toString() |
public static final String SERIALIZED_NAME_ORDER_ID
public static final String SERIALIZED_NAME_REPAY_AMOUNT
public static final String SERIALIZED_NAME_REPAID_ALL
public Long getOrderId()
public void setOrderId(Long orderId)
public String getRepayAmount()
public void setRepayAmount(String repayAmount)
public Boolean getRepaidAll()
public void setRepaidAll(Boolean repaidAll)
Copyright © 2023. All rights reserved.