interface HostingServiceDeployment {
    error_message?: null | string;
    game_build_id?: null | string;
    hosting_release_id: string;
    hosting_service_id: string;
    id: string;
    image?: null | string;
    promoted_at?: null | string;
    public_url?: null | string;
    ready_at?: null | string;
    status: "ready" | "failed" | "active" | "inactive" | "queued" | "deploying";
    version: string;
}

Properties

error_message?: null | string
game_build_id?: null | string
hosting_release_id: string
hosting_service_id: string
id: string
image?: null | string
promoted_at?: null | string
public_url?: null | string
ready_at?: null | string
status: "ready" | "failed" | "active" | "inactive" | "queued" | "deploying"
version: string

Generated using TypeDoc