Module Cephalopod_models.App_Bsky_Graph_Listitem

lexicon "app.bsky.graph.listitem"

def main

type main = {
  1. subject : string;
    (*

    The account which is included on the list. format: "Did"

    *)
  2. list : string;
    (*

    Reference (AT-URI) to the list record (app.bsky.graph.list). format: "AtUri"

    *)
  3. createdAt : string;
    (*

    format: "Datetime"

    *)
}

Record representing an account's inclusion on a specific list. The AppView will ignore duplicate listitem records.

val make_main : subject:string -> list:string -> createdAt:string -> main
val main_to_value : main -> Cephalopod_dasl.Value.t