interface DiscordMediaSearchParams {
    author_type?: DiscordMediaAuthorType;
    channel_id?: string;
    cursor?: string;
    date_from?: string;
    date_to?: string;
    include_imported?: boolean;
    include_nsfw?: boolean;
    include_unsupported?: boolean;
    media_type?: DiscordMediaType;
    search?: string;
    search_scope?: "content" | "filename";
    sort_order?: "asc" | "desc";
}

Properties

channel_id?: string
cursor?: string
date_from?: string
date_to?: string
include_imported?: boolean
include_nsfw?: boolean
include_unsupported?: boolean
media_type?: DiscordMediaType
search?: string
search_scope?: "content" | "filename"
sort_order?: "asc" | "desc"

Generated using TypeDoc