오디오 콘텐츠 업로드 - 미리듣기 시간 설정 추가

This commit is contained in:
2023-09-22 17:00:50 +09:00
parent 8896233d78
commit 5970a9a5b6
2 changed files with 71 additions and 1 deletions

View File

@@ -10,5 +10,7 @@ data class CreateAudioContentRequest(
val isGeneratePreview: Boolean = true,
val isCommentAvailable: Boolean = false,
val type: AudioContentType = AudioContentType.INDIVIDUAL,
val childIds: List<Long>? = null
val childIds: List<Long>? = null,
val previewStartTime: String? = null,
val previewEndTime: String? = null
)