InputField

@JsonClass(generateAdapter = true)
data class InputField(    val name: String,     val description: String?,     val isDeprecated: Boolean = false,     val deprecationReason: String?,     val type: IntrospectionSchema.Schema.TypeRef,     val defaultValue: Any?)

Constructors

Link copied to clipboard
fun InputField(    name: String,     description: String?,     isDeprecated: Boolean = false,     deprecationReason: String?,     type: IntrospectionSchema.Schema.TypeRef,     defaultValue: Any?)

Properties

Link copied to clipboard
val defaultValue: Any?
Link copied to clipboard
val deprecationReason: String?
Link copied to clipboard
val description: String?
Link copied to clipboard
val isDeprecated: Boolean = false
Link copied to clipboard
val name: String
Link copied to clipboard
val type: IntrospectionSchema.Schema.TypeRef