Kernel360 / F2_PLAY_BADMINTON_BE

kernel360 Final 프로젝트 백엔드 레포지토리입니다.
4 stars 3 forks source link

refactor: doublesMatch, singlesMatch Response 변경 #311

Closed I-migi closed 3 days ago

I-migi commented 3 days ago

PR에 대한 설명 🔍

 "league_id": 0,
    "match_generation_type": "FREE",
    "match_type": "SINGLES",
    "league_status": "ALL",
    "total_round": 0,
    "singles_match_response_list": [
      {
        "match_id": 0,
        "round_number": 0,
        "match_status": "NOT_STARTED",
        "participant1": {
          "member_token": "string",
          "name": "string",
          "image": "string",
          "participant_win_set_count": 0
        },
        "participant2": {
          "member_token": "string",
          "name": "string",
          "image": "string",
          "participant_win_set_count": 0
        },
        "winner_token": "string"
      }
    ],
    "doubles_match_response_list": [
      {
        "match_id": 0,
        "round_number": 0,
        "match_status": "NOT_STARTED",
        "team1": {
          "participant1": {
            "member_token": "string",
            "name": "string",
            "image": "string",
            "participant_win_set_count": 0
          },
          "participant2": {
            "member_token": "string",
            "name": "string",
            "image": "string",
            "participant_win_set_count": 0
          },
          "team1_win_set_count": 0
        },
        "team2": {
          "participant1": {
            "member_token": "string",
            "name": "string",
            "image": "string",
            "participant_win_set_count": 0
          },
          "participant2": {
            "member_token": "string",
            "name": "string",
            "image": "string",
            "participant_win_set_count": 0
          },
          "team1_win_set_count": 0
        },
        "winners_token": [
          "string"
        ]
      }
    ]
  },

response 변경