Module Cephalopod_models.App_Bsky_Feed_DescribeFeedGenerator

lexicon "app.bsky.feed.describeFeedGenerator"

def main

type main_output = {
  1. did : string;
    (*

    format: "Did"

    *)
  2. feeds : Types.app_bsky_feed_describefeedgenerator_feed list;
}
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
val main : (unit, main_output, unit) Base.query

Get information about a feed generator, including policies and offered feed URIs. Does not require auth; implemented by Feed Generator services (not App View).

def feed

type nonrec feed = Types.app_bsky_feed_describefeedgenerator_feed = {
  1. uri : string;
    (*

    format: "AtUri"

    *)
}