Module Cephalopod_models.Com_Atproto_Server_CreateAppPassword

lexicon "com.atproto.server.createAppPassword"

def main

type main_input = {
  1. name : string;
    (*

    A short name for the App Password, to help distinguish them.

    *)
  2. privileged : bool option;
    (*

    If an app password has 'privileged' access to possibly sensitive account state. Meant for use with trusted clients.

    *)
}
val show_main_input : main_input -> Ppx_deriving_runtime.string
val main_input_to_value : main_input -> Cephalopod_dasl.Value.t
val show_main_output : main_output -> Ppx_deriving_runtime.string
val main_output_of_value : main_output Cephalopod_dasl.Value.Util.conv
val main_output_to_value : main_output -> Cephalopod_dasl.Value.t
type main_error = [
  1. | `AccountTakedown
]
val show_main_error : main_error -> Ppx_deriving_runtime.string

Create an App Password.

def appPassword

type nonrec apppassword = Types.com_atproto_server_createapppassword_apppassword = {
  1. name : string;
  2. password : string;
  3. createdAt : string;
    (*

    format: "Datetime"

    *)
  4. privileged : bool option;
}