commonMain.xyz.mcxross.kaptos.generated.inputs.bigint_comparison_exp.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kaptos Show documentation
Show all versions of kaptos Show documentation
Multiplatform SDK for integrating with the Aptos blockchain
The newest version!
package xyz.mcxross.kaptos.generated.inputs
import kotlin.Boolean
import kotlin.Long
import kotlin.collections.List
import kotlinx.serialization.Serializable
import xyz.mcxross.graphql.client.Generated
/**
* Boolean expression to compare columns of type "bigint". All fields are combined with logical
* 'AND'.
*/
@Generated
@Serializable
public data class bigint_comparison_exp(
public val _eq: Long? = null,
public val _gt: Long? = null,
public val _gte: Long? = null,
public val _in: List? = null,
public val _is_null: Boolean? = null,
public val _lt: Long? = null,
public val _lte: Long? = null,
public val _neq: Long? = null,
public val _nin: List? = null,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy