v1StudioProjectsProjectIdChaptersChapterIdSnapshotsGet method
Future<Response<ChapterSnapshotsResponseModel> >
v1StudioProjectsProjectIdChaptersChapterIdSnapshotsGet({})
List Chapter Snapshots @param project_id The ID of the Studio project. @param chapter_id The ID of the chapter. @param xi-api-key Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.
Implementation
Future<chopper.Response<ChapterSnapshotsResponseModel>>
v1StudioProjectsProjectIdChaptersChapterIdSnapshotsGet({
required String? projectId,
required String? chapterId,
String? xiApiKey,
}) {
generatedMapping.putIfAbsent(
ChapterSnapshotsResponseModel,
() => ChapterSnapshotsResponseModel.fromJsonFactory,
);
return _v1StudioProjectsProjectIdChaptersChapterIdSnapshotsGet(
projectId: projectId,
chapterId: chapterId,
xiApiKey: xiApiKey?.toString(),
);
}