interface HostingRelease {
    checksum?: null | string;
    entry_point: string;
    error_message?: null | string;
    game_build_id?: null | string;
    hosting_site_id: string;
    id: string;
    promoted_at?: null | string;
    service_deployments?: HostingServiceDeployment[];
    size_bytes: number;
    source_type: "upload" | "cli" | "game_build" | "service_stack";
    status: "uploading" | "processing" | "ready" | "failed" | "active" | "inactive";
    version: string;
}

Properties

checksum?: null | string
entry_point: string
error_message?: null | string
game_build_id?: null | string
hosting_site_id: string
id: string
promoted_at?: null | string
service_deployments?: HostingServiceDeployment[]
size_bytes: number
source_type: "upload" | "cli" | "game_build" | "service_stack"
status: "uploading" | "processing" | "ready" | "failed" | "active" | "inactive"
version: string

Generated using TypeDoc