put이나 post같은 api 호출이 성공했을때 response값이 없다면 status code는 204라고 한다.
How to handle empty response using Alamofire and Combine?
하지만 Alamofire는 empty response일 경우 error로 처리하므로
다음과 같은 protocol을 사용해야한다.
이렇게 EmptyResponse
protocol을 체택하는 Decodable 구조체를 만들면 된다.
REST-API-empty-responses-return-HTTP-200-instead-of-HTTP-204
Alamofire/Protocols/EmptyResponse