IdFilterInput

data class IdFilterInput(val ne: String? = null, val eq: String? = null, val le: String? = null, val lt: String? = null, val ge: String? = null, val gt: String? = null, val contains: String? = null, val notContains: String? = null, val between: ArrayList<String>? = null, val beginsWith: String? = null)

Input object containing the information required to filter by id.

Constructors

Link copied to clipboard
constructor(ne: String? = null, eq: String? = null, le: String? = null, lt: String? = null, ge: String? = null, gt: String? = null, contains: String? = null, notContains: String? = null, between: ArrayList<String>? = null, beginsWith: String? = null)

Properties

Link copied to clipboard
val beginsWith: String? = null
Link copied to clipboard
val between: ArrayList<String>? = null
Link copied to clipboard
val contains: String? = null
Link copied to clipboard
val eq: String? = null
Link copied to clipboard
val ge: String? = null
Link copied to clipboard
val gt: String? = null
Link copied to clipboard
val le: String? = null
Link copied to clipboard
val lt: String? = null
Link copied to clipboard
val ne: String? = null
Link copied to clipboard
val notContains: String? = null