-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: create request dto for sumone recap api
- Loading branch information
1 parent
6241417
commit b1958d0
Showing
3 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...er/dto/response/SumoneBulkUrlRequest.java → ...ler/dto/request/SumoneBulkUrlRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...service/src/main/java/kr/mafoo/photo/controller/dto/request/SumoneRecapCreateRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package kr.mafoo.photo.controller.dto.request; | ||
|
||
import io.swagger.v3.oas.annotations.media.ArraySchema; | ||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import java.util.List; | ||
|
||
@Schema(description = "리캡 비디오 생성 요청") | ||
public record SumoneRecapCreateRequest( | ||
@ArraySchema( | ||
schema = @Schema(description = "파일 URL 목록"), | ||
arraySchema = @Schema(example = "[\"file_url_1\", \"file_url_2\", \"file_url_3\"]") | ||
) | ||
List<String> fileUrls | ||
) { | ||
} |