toInput

@ApolloDeprecatedSince(version = ApolloDeprecatedSince.Version.v3_0_0)
@JvmName(name = "-toInputOrAbsent")
fun <T> T.toInput(): Optional<T>

Deprecated

toInput() is a helper function to help migrating to 3.x and will be removed in a future version

Replace with

Optional.presentIfNotNull(this)

@ApolloDeprecatedSince(version = ApolloDeprecatedSince.Version.v3_0_0)
@JvmName(name = "-toInput")
fun <T : Any> T.toInput(): Optional<T>

Deprecated

toInput() is a helper function to help migrating to 3.x and will be removed in a future version

Replace with

Optional.Present(this)