apollo-kotlin
3.8.2
apollo-compiler
/
com.apollographql.apollo3.compiler.introspection
/
IntrospectionSchema
/
Schema
/
Type
/
Enum
Enum
@
JsonClass
(
generateAdapter
=
true
)
data
class
Enum
(
val
name
:
String
,
val
description
:
String
?
,
val
enumValues
:
List
<
IntrospectionSchema.Schema.Type.Enum.Value
>
)
:
IntrospectionSchema.Schema.Type
Content copied to clipboard
Types
Constructors
Properties
Constructors
Enum
Link copied to clipboard
fun
Enum
(
name
:
String
,
description
:
String
?
,
enumValues
:
List
<
IntrospectionSchema.Schema.Type.Enum.Value
>
)
Content copied to clipboard
Types
Value
Link copied to clipboard
@
JsonClass
(
generateAdapter
=
true
)
data
class
Value
(
val
name
:
String
,
val
description
:
String
?
,
val
isDeprecated
:
Boolean
=
false
,
val
deprecationReason
:
String
?
)
Content copied to clipboard
Properties
description
Link copied to clipboard
open
override
val
description
:
String
?
Content copied to clipboard
enum
Values
Link copied to clipboard
val
enumValues
:
List
<
IntrospectionSchema.Schema.Type.Enum.Value
>
Content copied to clipboard
name
Link copied to clipboard
open
override
val
name
:
String
Content copied to clipboard