Interface

@JsonClass(generateAdapter = true)
data class Interface(    val name: String,     val description: String?,     val kind: String,     val fields: List<IntrospectionSchema.Schema.Field>?,     val interfaces: List<IntrospectionSchema.Schema.TypeRef>?,     val possibleTypes: List<IntrospectionSchema.Schema.TypeRef>?) : IntrospectionSchema.Schema.Type

Constructors

Link copied to clipboard
fun Interface(    name: String,     description: String?,     kind: String,     fields: List<IntrospectionSchema.Schema.Field>?,     interfaces: List<IntrospectionSchema.Schema.TypeRef>?,     possibleTypes: List<IntrospectionSchema.Schema.TypeRef>?)

Properties

Link copied to clipboard
open override val description: String?
Link copied to clipboard
val fields: List<IntrospectionSchema.Schema.Field>?
Link copied to clipboard
val interfaces: List<IntrospectionSchema.Schema.TypeRef>?
Link copied to clipboard
val kind: String
Link copied to clipboard
open override val name: String
Link copied to clipboard
val possibleTypes: List<IntrospectionSchema.Schema.TypeRef>?