v1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdGet method

Future<Response<ChapterSnapshotExtendedResponseModel>> v1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdGet({
  1. required String? projectId,
  2. required String? chapterId,
  3. required String? chapterSnapshotId,
  4. String? xiApiKey,
})

Get Chapter Snapshot @param project_id The ID of the Studio project. @param chapter_id The ID of the chapter. @param chapter_snapshot_id The ID of the chapter snapshot. @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<ChapterSnapshotExtendedResponseModel>>
v1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdGet({
  required String? projectId,
  required String? chapterId,
  required String? chapterSnapshotId,
  String? xiApiKey,
}) {
  generatedMapping.putIfAbsent(
    ChapterSnapshotExtendedResponseModel,
    () => ChapterSnapshotExtendedResponseModel.fromJsonFactory,
  );

  return _v1StudioProjectsProjectIdChaptersChapterIdSnapshotsChapterSnapshotIdGet(
    projectId: projectId,
    chapterId: chapterId,
    chapterSnapshotId: chapterSnapshotId,
    xiApiKey: xiApiKey?.toString(),
  );
}