v1ConvaiSettingsDashboardPatch method

Future<Response<GetConvAIDashboardSettingsResponseModel>> v1ConvaiSettingsDashboardPatch({
  1. String? xiApiKey,
  2. required PatchConvAIDashboardSettingsRequest? body,
})

Update Convai Dashboard Settings @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<GetConvAIDashboardSettingsResponseModel>>
v1ConvaiSettingsDashboardPatch({
  String? xiApiKey,
  required PatchConvAIDashboardSettingsRequest? body,
}) {
  generatedMapping.putIfAbsent(
    GetConvAIDashboardSettingsResponseModel,
    () => GetConvAIDashboardSettingsResponseModel.fromJsonFactory,
  );

  return _v1ConvaiSettingsDashboardPatch(
    xiApiKey: xiApiKey?.toString(),
    body: body,
  );
}