new module:models/UpdateCustomerAccountRequest(account_number)
This class subject to change without prior notice, Please dont use this class directly.
Constructs a newUpdateCustomerAccountRequest
.
Parameters:
Name | Type | Description |
---|---|---|
account_number |
String | The number or reference that a customer uses to identify the customer's account. |
Members
-
static, readonly StatusEnum :String
-
Allowed values for the
status
property.Properties:
Name Type Description active
String value: "active"
inactive
String value: "inactive"
incollections
String value: "incollections"
inbankruptcy
String value: "inbankruptcy"
-
inner account_holder_name :String
-
The name as specified on the account.
-
inner account_number :String
-
The number or reference that a customer uses to identify the customer's account.
-
inner address :module:models/AddressVo
-
-
inner current_balance :String
-
The current balance on the customer's account with the biller.
-
inner current_statement_balance :String
-
The balance on the customer’s account with the biller as reported on the last statement.
-
inner custom_fields :Object.<String, String>
-
The additional information or meta-information that EBPP can accept, maintain and transmit back to the client.
-
inner customer_account_reference :String
-
The unique identifier in the client system for the customer account.
-
inner minimum_payment_due :String
-
The minimum payment amount, as specified by the biller, that needs to be made against the customer’s account.
-
inner nickname :String
-
The nickname by which a customer might want to identify the account.
-
inner past_amount_due :String
-
The amount that is due from the past bills/statements on the customer’s account with the biller.
-
inner payment_due_date :String
-
The date by which the customer needs to clear the dues against the customer's account with the biller. It must be in ISO8601 full-date format, namely, YYYY-MM-DD.
-
inner statement_date :String
-
The date on which the biller generates the statement for the customer's account. It must be in ISO8601 full-date format, namely, YYYY-MM-DD.
-
inner status :module:models/UpdateCustomerAccountRequest.StatusEnum
-
The status of the customer's account in EBPP.
Methods
-
static constructFromObject(data, obj) → {module:models/UpdateCustomerAccountRequest}
-
Constructs a
UpdateCustomerAccountRequest
from a plain JavaScript object, optionally creating a new instance. Copies all relevant properties fromdata
toobj
if supplied or a new instance if not.Parameters:
Name Type Description data
Object The plain JavaScript object bearing properties of interest.
obj
module:models/UpdateCustomerAccountRequest Optional instance to populate.
Returns:
module:models/UpdateCustomerAccountRequest -The populated
UpdateCustomerAccountRequest
instance.