v1ProjectsAddPost method
Future<Response<AddProjectResponseModel> >
v1ProjectsAddPost({
- String? xiApiKey,
- required BodyAddProjectV1ProjectsAddPost body,
Add 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
@deprecated
Future<chopper.Response<AddProjectResponseModel>> v1ProjectsAddPost({
String? xiApiKey,
required BodyAddProjectV1ProjectsAddPost body,
}) {
generatedMapping.putIfAbsent(
AddProjectResponseModel,
() => AddProjectResponseModel.fromJsonFactory,
);
return _v1ProjectsAddPost(xiApiKey: xiApiKey?.toString(), body: body);
}