V1 Objects

  • Last updated Last updated:
  • Alerts​

    Alert​

    Code:
    Alert {
    caused_member_id: unsigned int,
    content_type: string,
    content_id: unsigned int,
    alert_type: string,
    alert_date: unsigned int,
    }

    Conversations​

    Conversation​

    Code:
    Conversation {
    conversation_id: unsigned int,
    title: string,
    creation_date: unsigned int,
    creator_id: unsigned int,
    last_message_date: unsigned int,
    last_read_date: unsigned int,
    open: bool,
    reply_count: unsigned int,
    recipient_ids: unsigned int[],
    }

    Reply​

    Code:
    Reply {
    message_id: unsigned int,
    message_date: unsigned int,
    author_id: unsigned int,
    message: string,
    }

    Members​

    Member​

    Code:
    Member {
    member_id: unsigned int,
    username: string,
    join_date: unsigned int,
    last_activity_date: optional unsigned int,
    banned: bool,
    suspended: bool,
    restricted: bool,
    disabled: bool,
    premium: bool,
    supreme: bool,
    ultimate: bool,
    discord_id: optional unsigned int,
    avatar_url: string,
    post_count: unsigned int,
    resource_count: unsigned int,
    purchase_count: unsigned int,
    feedback_positive: unsigned int,
    feedback_neutral: unsigned int,
    feedback_negative: unsigned int,
    }

    Ban​

    Code:
    Ban {
    member_id: unsigned int,
    banned_by_id: unsigned int,
    ban_date: unsigned int,
    reason: string,
    }

    ProfilePost​

    Code:
    ProfilePost {
    profile_post_id: unsigned int,
    author_id: unsigned int,
    post_date: unsigned int,
    message: string,
    comment_count: unsigned int,
    }

    Resources​

    BasicResource​

    Code:
     BasicResource {
    resource_id: unsigned int,
    author_id: usigned int,
    title: string,
    tag_line: string,
    price: floating point,
    currency: string,
    }

    Resource​

    Code:
    Resource {
    resource_id: unsigned int,
    author_id: unsigned int,
    title: string,
    tag_line: string,
    description: string,
    release_date: unsigned int,
    last_update_date: unsigned int,
    category_title: string,
    current_version_id: unsigned int,
    price: floating point,
    currency: string,
    purchase_count: unsigned int,
    download_count: unsigned int,
    review_count: unsigned int,
    review_average: floating point,
    }

    Version​

    Code:
    Version {
    version_id: unsigned int,
    update_id: unsigned int,
    name: string,
    release_date: unsigned int,
    download_count: unsigned int,
    }

    Update​

    Code:
    Update {
    update_id: unsigned int,
    title: string,
    message: string,
    update_date: unsigned int,
    }

    Review​

    Code:
    Review {
    review_id: unsigned int,
    reviewer_id: unsigned int,
    review_date: unsigned int,
    rating: unsigned int,
    message: string,
    response: string,
    }

    Purchase​

    Code:
    Purchase {
    purchase_id: unsigned int,
    purchaser_id: unsigned int,
    license_id: unsigned int,
    renewal: bool,
    status: string,
    price: floating point,
    currency: string,
    purchase_date: unsigned int,
    validation_date: unsigned int,
    }

    License​

    Code:
    License {
    license_id: unsigned int,
    purchaser_id: unsigned int,
    validated: bool,
    active: bool,
    permanent: bool,
    start_date: unsigned int,
    end_date: unsigned int,
    previous_end_date: unsigned int,
    }

    Download​

    Code:
    Download {
    download_id: unsigned int,
    version_id: unsigned int,
    downloader_id: unsigned int,
    download_date: unsigned int,
    }

    BatchChange​

    Code:
    Download {
    field: string,
    type: string,
    value: mixed,
    search: optional string,
    }

    BatchEdit​

    Code:
    BatchEdit {
    batch_id: unsigned int,
    created_at: unsigned int,
    completed_at: unsigned int,
    errors: map<string, array[string]> // A map of resource ids => an array of errors
    }

    Threads​

    BasicThread​

    Code:
    BasicThread {
    thread_id: unsigned int,
    title: string,
    reply_count: unsigned int,
    view_count: unsigned int,
    creation_date: unsigned int,
    last_message_date: unsigned int,
    }

    Thread​

    Code:
    Thread {
    thread_id: unsigned int,
    forum_name: string,
    title: string,
    reply_count: unsigned int,
    view_count: unsigned int,
    post_date: unsigned int,
    thread_type: string,
    thread_open: bool,
    last_post_date: unsigned int,
    }

    Reply​

    Code:
    Reply {
    reply_id: unsigned int,
    author_id: unsigned int,
    post_date: unsigned int,
    message: string,
    }
Top