@moontaiworks/fanbox-dl - v1.0.0
    Preparing search index...

    Interface FilePost

    interface FilePost {
        body: FilePostBody;
        type: "file";
        commentCount: number;
        creatorId: string;
        excerpt: string;
        feeRequired: number;
        hasAdultContent: boolean;
        id: string;
        isCommentingRestricted: boolean;
        isLiked: boolean;
        isPinned: boolean;
        isRestricted: boolean;
        likeCount: number;
        publishedDatetime: string;
        tags: string[];
        title: string;
        updatedDatetime: string;
        user: FanboxUser;
        coverImageUrl: string | null;
        imageForShare: string | null;
        nextPost: NeighboringPost | null;
        prevPost: NeighboringPost | null;
    }

    Hierarchy

    • PostBase
      • FilePost
    Index

    Properties

    type: "file"
    commentCount: number
    creatorId: string
    excerpt: string
    feeRequired: number
    hasAdultContent: boolean
    id: string
    isCommentingRestricted: boolean
    isLiked: boolean
    isPinned: boolean
    isRestricted: boolean
    likeCount: number
    publishedDatetime: string
    tags: string[]
    title: string
    updatedDatetime: string
    coverImageUrl: string | null
    imageForShare: string | null
    nextPost: NeighboringPost | null
    prevPost: NeighboringPost | null