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

commonMain.com.atproto.server.createAppPassword.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 name A short name for the App Password, to help distinguish them.
 * @param privileged If an app password has 'privileged' access to possibly sensitive account state.
 * Meant for use with trusted clients.
 */
@Serializable
public data class CreateAppPasswordRequest(
  /**
   * A short name for the App Password, to help distinguish them.
   */
  public val name: String,
  /**
   * If an app password has 'privileged' access to possibly sensitive account state. Meant for use
   * with trusted clients.
   */
  public val privileged: Boolean? = null,
)

public typealias CreateAppPasswordResponse = CreateAppPasswordAppPassword




© 2015 - 2024 Weber Informatics LLC | Privacy Policy