GetUserPlainArgs

data class GetUserPlainArgs(val email: String? = null, val name: String? = null) : ConvertibleToJava<GetUserPlainArgs>

A collection of arguments for invoking getUser.

Constructors

Link copied to clipboard
constructor(email: String? = null, name: String? = null)

Properties

Link copied to clipboard
val email: String? = null

The email of the user The data source expects exactly one of these fields, you can't set both.

Link copied to clipboard
val name: String? = null

The name of the user

Functions

Link copied to clipboard
open override fun toJava(): GetUserPlainArgs