WalletTemplateDto Data Type

The Class WalletTemplateDto.

Implemented Interfaces
Serializable
Properties
name data type constraints description
walletType BillingWalletTypeEnum   The wallet type.
id number   The id.
consumptionAlertSet boolean   The consumption alert set.
auditableField array of AuditableFieldDto  
fastRatingLevel number   The fast rating level.
code string required The code
lowBalanceLevel number   The low balance level.
rejectLevel number   Balance level at which further consumption should be rejected
description string   The description
rejectLevelEl string   Expression to determine reject Level
updatedCode string   The updated code.
lowBalanceLevelEl string   Expression to determine low Balance Level

Example

{
  "walletType" : "POSTPAID",
  "id" : 12345,
  "consumptionAlertSet" : true,
  "auditableField" : [ {
    "entityClass" : "...",
    "fieldName" : "...",
    "id" : 12345,
    "changeOrigin" : "...",
    "auditableField" : [ { }, { } ],
    "originName" : "...",
    "code" : "...",
    "previousState" : "...",
    "currentState" : "...",
    "description" : "...",
    "created" : "...",
    "updatedCode" : "...",
    "actor" : "..."
  }, {
    "entityClass" : "...",
    "fieldName" : "...",
    "id" : 12345,
    "changeOrigin" : "...",
    "auditableField" : [ { }, { } ],
    "originName" : "...",
    "code" : "...",
    "previousState" : "...",
    "currentState" : "...",
    "description" : "...",
    "created" : "...",
    "updatedCode" : "...",
    "actor" : "..."
  } ],
  "fastRatingLevel" : 12345,
  "code" : "...",
  "lowBalanceLevel" : 12345.0,
  "rejectLevel" : 12345.0,
  "description" : "...",
  "rejectLevelEl" : "...",
  "updatedCode" : "...",
  "lowBalanceLevelEl" : "..."
}