mirror of
https://github.com/Andrewcpu/elevenlabs-api.git
synced 2026-05-06 03:00:23 -04:00
10 lines
345 B
Java
10 lines
345 B
Java
package net.andrewcpu.elevenlabs.requests.projects;
|
|
|
|
import net.andrewcpu.elevenlabs.requests.PostRequest;
|
|
|
|
public class PostConvertChapterRequest extends PostRequest<String> {
|
|
public PostConvertChapterRequest(String projectId, String chapterId) {
|
|
super("v1/projects/" + projectId + "/chapters/" + chapterId + "/convert", String.class);
|
|
}
|
|
}
|