Skip to content

Commit

Permalink
Remove old DefaultArgument
Browse files Browse the repository at this point in the history
  • Loading branch information
nomisRev committed Jun 10, 2024
1 parent feace36 commit 2909232
Showing 1 changed file with 1 addition and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,23 +149,7 @@ sealed interface Model {
val isRequired: Boolean,
val isNullable: Boolean,
val description: String?
) {
sealed interface DefaultArgument {
data class Enum(val enum: Model, val context: NamingContext, val value: String) :
DefaultArgument

data class Union(val union: NamingContext, val case: Model, val value: String) :
DefaultArgument

data class Double(val value: kotlin.Double) : DefaultArgument

data class Int(val value: kotlin.Int) : DefaultArgument

data class List(val value: kotlin.collections.List<DefaultArgument>) : DefaultArgument

data class Other(val value: String) : DefaultArgument
}
}
)
}

data class Union(
Expand Down

0 comments on commit 2909232

Please sign in to comment.