Interface AutomatchPreferences

interface AutomatchPreferences {
    handicap: {
        condition: AutomatchCondition;
        value: "enabled" | "disabled";
    };
    lower_rank_diff: number;
    rules: {
        condition: AutomatchCondition;
        value: "chinese" | "aga" | "japanese" | "korean" | "ing" | "nz";
    };
    size_speed_options: {
        size: Size;
        speed: Speed;
        system: "fischer" | "byoyomi";
    }[];
    timestamp?: number;
    upper_rank_diff: number;
    uuid: string;
}

Properties

handicap: {
    condition: AutomatchCondition;
    value: "enabled" | "disabled";
}

Type declaration

lower_rank_diff: number
rules: {
    condition: AutomatchCondition;
    value: "chinese" | "aga" | "japanese" | "korean" | "ing" | "nz";
}

Type declaration

  • condition: AutomatchCondition
  • value: "chinese" | "aga" | "japanese" | "korean" | "ing" | "nz"
size_speed_options: {
    size: Size;
    speed: Speed;
    system: "fischer" | "byoyomi";
}[]

Type declaration

  • size: Size
  • speed: Speed
  • system: "fischer" | "byoyomi"
timestamp?: number
upper_rank_diff: number
uuid: string