ProjectsApi class

Constructors

ProjectsApi([ApiClient? apiClient])

Properties

apiClient ApiClient
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
projectsCreate(ProjectCreate projectCreate) Future<Project?>
Add a new project. Change details later via PUT or PATCH.
projectsCreateWithHttpInfo(ProjectCreate projectCreate) Future<Response>
Add a new project. Change details later via PUT or PATCH.
projectsDestroy(String id) Future<void>
Remove a project. Only members with role OWNER can do this.
projectsDestroyWithHttpInfo(String id) Future<Response>
Remove a project. Only members with role OWNER can do this.
projectsImageDestroy(String id) Future<void>
Delete an image.
projectsImageDestroyWithHttpInfo(String id) Future<Response>
Delete an image.
projectsImageUpdate(String contentDisposition, String id, {MultipartFile? body}) Future<FileUpload?>
Upload an image. Max size 30MB. Filename is required!
projectsImageUpdateWithHttpInfo(String contentDisposition, String id, {MultipartFile? body}) Future<Response>
Upload an image. Max size 30MB. Filename is required!
projectsList() Future<List<Project>?>
Lists all projects the user is a member of.
projectsListWithHttpInfo() Future<Response>
Lists all projects the user is a member of.
projectsPartialUpdate(String id, {PatchedProjectUpdate? patchedProjectUpdate}) Future<ProjectUpdate?>
Change as subset of project details.
projectsPartialUpdateWithHttpInfo(String id, {PatchedProjectUpdate? patchedProjectUpdate}) Future<Response>
Change as subset of project details.
projectsRetrieve(String id) Future<Project?>
Details of a single project.
projectsRetrieveWithHttpInfo(String id) Future<Response>
Details of a single project.
projectsUpdate(String id, ProjectUpdate projectUpdate) Future<ProjectUpdate?>
Change project and settings.
projectsUpdateWithHttpInfo(String id, ProjectUpdate projectUpdate) Future<Response>
Change project and settings.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited