interface CreateGameReviewRequest {
    acquisition_type?: "purchased" | "free_to_play" | "free_copy" | "promotional_key" | "beta_key" | "demo" | "external_verified";
    audience?: string;
    body: string;
    change_reason?: string;
    current_version_review?: boolean;
    early_access?: boolean;
    game_version?: string;
    language?: string;
    liked?: string;
    main_negative_reason?: "other" | "bugs_crashes" | "bad_performance" | "not_enough_content" | "misleading_marketing" | "price_value" | "monetization" | "community_toxicity" | "developer_business_decision" | "localization" | "server_network" | "gameplay_design" | "not_my_type";
    needs_work?: string;
    platform?: string;
    ratings?: GameReviewRatings;
    received_for_free?: boolean;
    recommendation: GameReviewRecommendation;
    review_type?: "first_impression" | "full_review" | "bug_performance_warning" | "early_access_feedback" | "multiplayer_community_feedback" | "monetization_pricing_feedback" | "changed_opinion_after_update";
    title: string;
}

Properties

acquisition_type?: "purchased" | "free_to_play" | "free_copy" | "promotional_key" | "beta_key" | "demo" | "external_verified"
audience?: string
body: string
change_reason?: string
current_version_review?: boolean
early_access?: boolean
game_version?: string
language?: string
liked?: string
main_negative_reason?: "other" | "bugs_crashes" | "bad_performance" | "not_enough_content" | "misleading_marketing" | "price_value" | "monetization" | "community_toxicity" | "developer_business_decision" | "localization" | "server_network" | "gameplay_design" | "not_my_type"
needs_work?: string
platform?: string
received_for_free?: boolean
recommendation: GameReviewRecommendation
review_type?: "first_impression" | "full_review" | "bug_performance_warning" | "early_access_feedback" | "multiplayer_community_feedback" | "monetization_pricing_feedback" | "changed_opinion_after_update"
title: string

Generated using TypeDoc