interface DiscordMediaImportResponse {
    attachments: DiscordMediaImportAttachmentResult[];
    duplicate_count: number;
    failed_count: number;
    imported_count: number;
    updates: {
        id: string;
        media_count: number;
        schedule_for_social: false;
        scheduled_status: "pending";
        title?: null | string;
    }[];
}

Properties

duplicate_count: number
failed_count: number
imported_count: number
updates: {
    id: string;
    media_count: number;
    schedule_for_social: false;
    scheduled_status: "pending";
    title?: null | string;
}[]

Type declaration

  • id: string
  • media_count: number
  • schedule_for_social: false
  • scheduled_status: "pending"
  • Optional title?: null | string

Generated using TypeDoc