v1ProjectsProjectIdChaptersChapterIdPatch method

  1. @deprecated
Future<Response<EditChapterResponseModel>> v1ProjectsProjectIdChaptersChapterIdPatch({
  1. required String? projectId,
  2. required String? chapterId,
  3. String? xiApiKey,
  4. required BodyEditChapterV1ProjectsProjectIdChaptersChapterIdPatch? body,
})

Edit Chapter @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

@deprecated
Future<chopper.Response<EditChapterResponseModel>>
v1ProjectsProjectIdChaptersChapterIdPatch({
  required String? projectId,
  required String? chapterId,
  String? xiApiKey,
  required BodyEditChapterV1ProjectsProjectIdChaptersChapterIdPatch? body,
}) {
  generatedMapping.putIfAbsent(
    EditChapterResponseModel,
    () => EditChapterResponseModel.fromJsonFactory,
  );

  return _v1ProjectsProjectIdChaptersChapterIdPatch(
    projectId: projectId,
    chapterId: chapterId,
    xiApiKey: xiApiKey?.toString(),
    body: body,
  );
}