Module Cephalopod_models.Chat_Bsky_Actor_Defs

lexicon "chat.bsky.actor.defs"

def profileViewBasic

type nonrec profileviewbasic = Types.chat_bsky_actor_defs_profileviewbasic = {
  1. did : string;
    (*

    format: "Did"

    *)
  2. handle : string;
    (*

    format: "Handle"

    *)
  3. displayName : string option;
    (*

    maximum length: 640

    *)
  4. avatar : string option;
    (*

    format: "Uri"

    *)
  5. associated : Types.app_bsky_actor_defs_profileassociated option;
  6. viewer : Types.app_bsky_actor_defs_viewerstate option;
  7. labels : Types.com_atproto_label_defs_label list option;
  8. chatDisabled : bool option;
    (*

    Set to true when the actor cannot actively participate in conversations

    *)
  9. verification : Types.app_bsky_actor_defs_verificationstate option;
}