AlertDto

data class AlertDto(name: AlertDto.Name?, count: Int?, list: List<UserReceiptDto>?)

Parameters

name
  • @param count * @param list

Constructors

AlertDto
Link copied to clipboard
fun AlertDto(name: AlertDto.Name? = null, count: Int? = null, list: List<UserReceiptDto>? = null)
  • @param count * @param list

Types

Name
Link copied to clipboard
enum Name : Enum<AlertDto.Name>
Values: PENDING_VALIDATION,RECENTLY_ADDED,DUPLICATE

Properties

count
Link copied to clipboard
@SerializedName(value = count)
val count: Int? = null
list
Link copied to clipboard
@SerializedName(value = list)
val list: List<UserReceiptDto>? = null
name
Link copied to clipboard
@SerializedName(value = name)
val name: AlertDto.Name? = null
  • @param count * @param list