Skip to content

Commit

Permalink
[FO-905] (모집) 지역 시군구 api response 변경 (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkyoungdeok authored Feb 9, 2024
1 parent b6facb5 commit 741430f
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,12 @@ import io.swagger.v3.oas.annotations.media.Schema

class LocationDto {
data class RetrieveRegionsResponse(
@Schema(description = "지역 (deprecated 예정)", example = "서울특별시")
val result: List<String>,

@Schema(description = "지역", example = "서울특별시")
val regions: List<String>,
)

data class RetrieveDistrictsResponse(
@Schema(description = "시군구 (deprecated 예정)", example = "강남구")
val result: List<String>,

@Schema(description = "시군구", example = "강남구")
val district: List<String>,
val districts: List<String>,
)
}

0 comments on commit 741430f

Please sign in to comment.