v1ConvaiSettingsGet method

Future<Response<GetConvAISettingsResponseModel>> v1ConvaiSettingsGet({
  1. String? xiApiKey,
})

Get Convai 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<GetConvAISettingsResponseModel>> v1ConvaiSettingsGet({
  String? xiApiKey,
}) {
  generatedMapping.putIfAbsent(
    GetConvAISettingsResponseModel,
    () => GetConvAISettingsResponseModel.fromJsonFactory,
  );

  return _v1ConvaiSettingsGet(xiApiKey: xiApiKey?.toString());
}