All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.atproto.server.updateEmail.kt Maven / Gradle / Ivy

The newest version!
@file:Suppress("DEPRECATION")

package com.atproto.server

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlinx.serialization.Serializable

/**
 * @param token Requires a token from com.atproto.sever.requestEmailUpdate if the account's email
 * has been confirmed.
 */
@Serializable
public data class UpdateEmailRequest(
  public val email: String,
  public val emailAuthFactor: Boolean? = null,
  /**
   * Requires a token from com.atproto.sever.requestEmailUpdate if the account's email has been
   * confirmed.
   */
  public val token: String? = null,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy