v1StudioProjectsProjectIdSnapshotsGet method

Future<Response<ProjectSnapshotsResponseModel>> v1StudioProjectsProjectIdSnapshotsGet({
  1. required String? projectId,
  2. String? xiApiKey,
})

List Studio Project Snapshots @param project_id The ID of the Studio project. @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<ProjectSnapshotsResponseModel>>
v1StudioProjectsProjectIdSnapshotsGet({
  required String? projectId,
  String? xiApiKey,
}) {
  generatedMapping.putIfAbsent(
    ProjectSnapshotsResponseModel,
    () => ProjectSnapshotsResponseModel.fromJsonFactory,
  );

  return _v1StudioProjectsProjectIdSnapshotsGet(
    projectId: projectId,
    xiApiKey: xiApiKey?.toString(),
  );
}