[Postman 공용 아이디]
MemberUpdateRequestDto{
"name" : String,
"password" : String,
"nickname" : String, // 2 ~ 30 자 제한
"link" : String,
"email" : String,
"description" : String,
"feature" : String
}
CommonResponseDto{
"status": "SUCCESS", //FAIL
"message": "성공적으로 생성했습니다."
"data": {
"roomId": Long,
"managerId": String,
"title": String,
"description": String,
"url": String,
"roomImage": String
"capacity": integer,
"isLocked": boolean,
"password": String, // null 가능
"constraint": String, // VIDEOONMICOFF, VIDEOON, MICOFF, FREE 중 한개
"createdAt": LocalDateTime
"keywords": {
"id": Long,
"name" : String
}
}
CommonResponseDto{
"status": "FAIL", //Fail
"message": "Internal Server Error", //이런 식으로 스프링에서 에러 뜨면 나오는 그거...
"data": {
"code": "AD100", //우리 커스텀 에러 코드
"message": "구체적인 에러 메시지"
}
}