2022-07-13 14:23:48 +02:00
|
|
|
//
|
|
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
|
|
//
|
|
|
|
// @dart=2.12
|
|
|
|
|
|
|
|
// ignore_for_file: unused_element, unused_import
|
|
|
|
// ignore_for_file: always_put_required_named_parameters_first
|
|
|
|
// ignore_for_file: constant_identifier_names
|
|
|
|
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
|
|
|
|
part of openapi.api;
|
|
|
|
|
|
|
|
|
|
|
|
class AlbumApi {
|
|
|
|
AlbumApi([ApiClient? apiClient]) : apiClient = apiClient ?? defaultApiClient;
|
|
|
|
|
|
|
|
final ApiClient apiClient;
|
|
|
|
|
2023-05-24 16:30:13 +02:00
|
|
|
/// Performs an HTTP 'PUT /album/{id}/assets' operation and returns the [Response].
|
2022-07-13 14:23:48 +02:00
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
2022-07-13 14:23:48 +02:00
|
|
|
///
|
|
|
|
/// * [AddAssetsDto] addAssetsDto (required):
|
2023-02-24 18:01:10 +02:00
|
|
|
///
|
|
|
|
/// * [String] key:
|
2023-05-24 16:30:13 +02:00
|
|
|
Future<Response> addAssetsToAlbumWithHttpInfo(String id, AddAssetsDto addAssetsDto, { String? key, }) async {
|
2022-07-13 14:23:48 +02:00
|
|
|
// ignore: prefer_const_declarations
|
2023-05-24 16:30:13 +02:00
|
|
|
final path = r'/album/{id}/assets'
|
|
|
|
.replaceAll('{id}', id);
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
// ignore: prefer_final_locals
|
|
|
|
Object? postBody = addAssetsDto;
|
|
|
|
|
|
|
|
final queryParams = <QueryParam>[];
|
|
|
|
final headerParams = <String, String>{};
|
|
|
|
final formParams = <String, String>{};
|
|
|
|
|
2023-02-24 18:01:10 +02:00
|
|
|
if (key != null) {
|
|
|
|
queryParams.addAll(_queryParams('', 'key', key));
|
|
|
|
}
|
|
|
|
|
2022-07-13 14:23:48 +02:00
|
|
|
const contentTypes = <String>['application/json'];
|
|
|
|
|
|
|
|
|
|
|
|
return apiClient.invokeAPI(
|
|
|
|
path,
|
|
|
|
'PUT',
|
|
|
|
queryParams,
|
|
|
|
postBody,
|
|
|
|
headerParams,
|
|
|
|
formParams,
|
|
|
|
contentTypes.isEmpty ? null : contentTypes.first,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
2022-07-13 14:23:48 +02:00
|
|
|
///
|
|
|
|
/// * [AddAssetsDto] addAssetsDto (required):
|
2023-02-24 18:01:10 +02:00
|
|
|
///
|
|
|
|
/// * [String] key:
|
2023-05-24 16:30:13 +02:00
|
|
|
Future<AddAssetsResponseDto?> addAssetsToAlbum(String id, AddAssetsDto addAssetsDto, { String? key, }) async {
|
|
|
|
final response = await addAssetsToAlbumWithHttpInfo(id, addAssetsDto, key: key, );
|
2022-07-13 14:23:48 +02:00
|
|
|
if (response.statusCode >= HttpStatus.badRequest) {
|
|
|
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
|
|
|
}
|
|
|
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
|
|
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
|
|
|
// FormatException when trying to decode an empty string.
|
|
|
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
2022-10-28 21:54:09 +02:00
|
|
|
return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AddAssetsResponseDto',) as AddAssetsResponseDto;
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-05-24 16:30:13 +02:00
|
|
|
/// Performs an HTTP 'PUT /album/{id}/users' operation and returns the [Response].
|
2022-07-13 14:23:48 +02:00
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
2022-07-13 14:23:48 +02:00
|
|
|
///
|
|
|
|
/// * [AddUsersDto] addUsersDto (required):
|
2023-05-24 16:30:13 +02:00
|
|
|
Future<Response> addUsersToAlbumWithHttpInfo(String id, AddUsersDto addUsersDto,) async {
|
2022-07-13 14:23:48 +02:00
|
|
|
// ignore: prefer_const_declarations
|
2023-05-24 16:30:13 +02:00
|
|
|
final path = r'/album/{id}/users'
|
|
|
|
.replaceAll('{id}', id);
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
// ignore: prefer_final_locals
|
|
|
|
Object? postBody = addUsersDto;
|
|
|
|
|
|
|
|
final queryParams = <QueryParam>[];
|
|
|
|
final headerParams = <String, String>{};
|
|
|
|
final formParams = <String, String>{};
|
|
|
|
|
|
|
|
const contentTypes = <String>['application/json'];
|
|
|
|
|
|
|
|
|
|
|
|
return apiClient.invokeAPI(
|
|
|
|
path,
|
|
|
|
'PUT',
|
|
|
|
queryParams,
|
|
|
|
postBody,
|
|
|
|
headerParams,
|
|
|
|
formParams,
|
|
|
|
contentTypes.isEmpty ? null : contentTypes.first,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
2022-07-13 14:23:48 +02:00
|
|
|
///
|
|
|
|
/// * [AddUsersDto] addUsersDto (required):
|
2023-05-24 16:30:13 +02:00
|
|
|
Future<AlbumResponseDto?> addUsersToAlbum(String id, AddUsersDto addUsersDto,) async {
|
|
|
|
final response = await addUsersToAlbumWithHttpInfo(id, addUsersDto,);
|
2022-07-13 14:23:48 +02:00
|
|
|
if (response.statusCode >= HttpStatus.badRequest) {
|
|
|
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
|
|
|
}
|
|
|
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
|
|
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
|
|
|
// FormatException when trying to decode an empty string.
|
|
|
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
|
|
|
return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AlbumResponseDto',) as AlbumResponseDto;
|
|
|
|
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-04-18 18:26:04 +02:00
|
|
|
/// Performs an HTTP 'POST /album' operation and returns the [Response].
|
2022-07-13 14:23:48 +02:00
|
|
|
/// Parameters:
|
|
|
|
///
|
|
|
|
/// * [CreateAlbumDto] createAlbumDto (required):
|
|
|
|
Future<Response> createAlbumWithHttpInfo(CreateAlbumDto createAlbumDto,) async {
|
|
|
|
// ignore: prefer_const_declarations
|
|
|
|
final path = r'/album';
|
|
|
|
|
|
|
|
// ignore: prefer_final_locals
|
|
|
|
Object? postBody = createAlbumDto;
|
|
|
|
|
|
|
|
final queryParams = <QueryParam>[];
|
|
|
|
final headerParams = <String, String>{};
|
|
|
|
final formParams = <String, String>{};
|
|
|
|
|
|
|
|
const contentTypes = <String>['application/json'];
|
|
|
|
|
|
|
|
|
|
|
|
return apiClient.invokeAPI(
|
|
|
|
path,
|
|
|
|
'POST',
|
|
|
|
queryParams,
|
|
|
|
postBody,
|
|
|
|
headerParams,
|
|
|
|
formParams,
|
|
|
|
contentTypes.isEmpty ? null : contentTypes.first,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parameters:
|
|
|
|
///
|
|
|
|
/// * [CreateAlbumDto] createAlbumDto (required):
|
|
|
|
Future<AlbumResponseDto?> createAlbum(CreateAlbumDto createAlbumDto,) async {
|
|
|
|
final response = await createAlbumWithHttpInfo(createAlbumDto,);
|
|
|
|
if (response.statusCode >= HttpStatus.badRequest) {
|
|
|
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
|
|
|
}
|
|
|
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
|
|
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
|
|
|
// FormatException when trying to decode an empty string.
|
|
|
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
|
|
|
return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AlbumResponseDto',) as AlbumResponseDto;
|
|
|
|
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-05-24 16:30:13 +02:00
|
|
|
/// Performs an HTTP 'DELETE /album/{id}' operation and returns the [Response].
|
2022-07-13 14:23:48 +02:00
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
|
|
|
Future<Response> deleteAlbumWithHttpInfo(String id,) async {
|
2022-07-13 14:23:48 +02:00
|
|
|
// ignore: prefer_const_declarations
|
2023-05-24 16:30:13 +02:00
|
|
|
final path = r'/album/{id}'
|
|
|
|
.replaceAll('{id}', id);
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
// ignore: prefer_final_locals
|
|
|
|
Object? postBody;
|
|
|
|
|
|
|
|
final queryParams = <QueryParam>[];
|
|
|
|
final headerParams = <String, String>{};
|
|
|
|
final formParams = <String, String>{};
|
|
|
|
|
|
|
|
const contentTypes = <String>[];
|
|
|
|
|
|
|
|
|
|
|
|
return apiClient.invokeAPI(
|
|
|
|
path,
|
|
|
|
'DELETE',
|
|
|
|
queryParams,
|
|
|
|
postBody,
|
|
|
|
headerParams,
|
|
|
|
formParams,
|
|
|
|
contentTypes.isEmpty ? null : contentTypes.first,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
|
|
|
Future<void> deleteAlbum(String id,) async {
|
|
|
|
final response = await deleteAlbumWithHttpInfo(id,);
|
2022-07-13 14:23:48 +02:00
|
|
|
if (response.statusCode >= HttpStatus.badRequest) {
|
|
|
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-16 17:48:48 +02:00
|
|
|
/// Performs an HTTP 'GET /album/count' operation and returns the [Response].
|
|
|
|
Future<Response> getAlbumCountWithHttpInfo() async {
|
2022-09-07 22:16:18 +02:00
|
|
|
// ignore: prefer_const_declarations
|
2023-06-16 17:48:48 +02:00
|
|
|
final path = r'/album/count';
|
2022-09-07 22:16:18 +02:00
|
|
|
|
|
|
|
// ignore: prefer_final_locals
|
|
|
|
Object? postBody;
|
|
|
|
|
|
|
|
final queryParams = <QueryParam>[];
|
|
|
|
final headerParams = <String, String>{};
|
|
|
|
final formParams = <String, String>{};
|
|
|
|
|
|
|
|
const contentTypes = <String>[];
|
|
|
|
|
|
|
|
|
|
|
|
return apiClient.invokeAPI(
|
|
|
|
path,
|
|
|
|
'GET',
|
|
|
|
queryParams,
|
|
|
|
postBody,
|
|
|
|
headerParams,
|
|
|
|
formParams,
|
|
|
|
contentTypes.isEmpty ? null : contentTypes.first,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-06-16 17:48:48 +02:00
|
|
|
Future<AlbumCountResponseDto?> getAlbumCount() async {
|
|
|
|
final response = await getAlbumCountWithHttpInfo();
|
2022-09-07 22:16:18 +02:00
|
|
|
if (response.statusCode >= HttpStatus.badRequest) {
|
|
|
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
|
|
|
}
|
|
|
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
|
|
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
|
|
|
// FormatException when trying to decode an empty string.
|
|
|
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
|
|
|
return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AlbumCountResponseDto',) as AlbumCountResponseDto;
|
|
|
|
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-05-24 16:30:13 +02:00
|
|
|
/// Performs an HTTP 'GET /album/{id}' operation and returns the [Response].
|
2022-07-13 14:23:48 +02:00
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
2023-02-24 18:01:10 +02:00
|
|
|
///
|
|
|
|
/// * [String] key:
|
2023-05-24 16:30:13 +02:00
|
|
|
Future<Response> getAlbumInfoWithHttpInfo(String id, { String? key, }) async {
|
2022-07-13 14:23:48 +02:00
|
|
|
// ignore: prefer_const_declarations
|
2023-05-24 16:30:13 +02:00
|
|
|
final path = r'/album/{id}'
|
|
|
|
.replaceAll('{id}', id);
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
// ignore: prefer_final_locals
|
|
|
|
Object? postBody;
|
|
|
|
|
|
|
|
final queryParams = <QueryParam>[];
|
|
|
|
final headerParams = <String, String>{};
|
|
|
|
final formParams = <String, String>{};
|
|
|
|
|
2023-02-24 18:01:10 +02:00
|
|
|
if (key != null) {
|
|
|
|
queryParams.addAll(_queryParams('', 'key', key));
|
|
|
|
}
|
|
|
|
|
2022-07-13 14:23:48 +02:00
|
|
|
const contentTypes = <String>[];
|
|
|
|
|
|
|
|
|
|
|
|
return apiClient.invokeAPI(
|
|
|
|
path,
|
|
|
|
'GET',
|
|
|
|
queryParams,
|
|
|
|
postBody,
|
|
|
|
headerParams,
|
|
|
|
formParams,
|
|
|
|
contentTypes.isEmpty ? null : contentTypes.first,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
2023-02-24 18:01:10 +02:00
|
|
|
///
|
|
|
|
/// * [String] key:
|
2023-05-24 16:30:13 +02:00
|
|
|
Future<AlbumResponseDto?> getAlbumInfo(String id, { String? key, }) async {
|
|
|
|
final response = await getAlbumInfoWithHttpInfo(id, key: key, );
|
2022-07-13 14:23:48 +02:00
|
|
|
if (response.statusCode >= HttpStatus.badRequest) {
|
|
|
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
|
|
|
}
|
|
|
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
|
|
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
|
|
|
// FormatException when trying to decode an empty string.
|
|
|
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
|
|
|
return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AlbumResponseDto',) as AlbumResponseDto;
|
|
|
|
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-04-18 18:26:04 +02:00
|
|
|
/// Performs an HTTP 'GET /album' operation and returns the [Response].
|
2022-07-13 14:23:48 +02:00
|
|
|
/// Parameters:
|
|
|
|
///
|
|
|
|
/// * [bool] shared:
|
2022-09-05 15:50:20 +02:00
|
|
|
///
|
|
|
|
/// * [String] assetId:
|
|
|
|
/// Only returns albums that contain the asset Ignores the shared parameter undefined: get all albums
|
|
|
|
Future<Response> getAllAlbumsWithHttpInfo({ bool? shared, String? assetId, }) async {
|
2022-07-13 14:23:48 +02:00
|
|
|
// ignore: prefer_const_declarations
|
|
|
|
final path = r'/album';
|
|
|
|
|
|
|
|
// ignore: prefer_final_locals
|
|
|
|
Object? postBody;
|
|
|
|
|
|
|
|
final queryParams = <QueryParam>[];
|
|
|
|
final headerParams = <String, String>{};
|
|
|
|
final formParams = <String, String>{};
|
|
|
|
|
|
|
|
if (shared != null) {
|
|
|
|
queryParams.addAll(_queryParams('', 'shared', shared));
|
|
|
|
}
|
2022-09-05 15:50:20 +02:00
|
|
|
if (assetId != null) {
|
|
|
|
queryParams.addAll(_queryParams('', 'assetId', assetId));
|
|
|
|
}
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
const contentTypes = <String>[];
|
|
|
|
|
|
|
|
|
|
|
|
return apiClient.invokeAPI(
|
|
|
|
path,
|
|
|
|
'GET',
|
|
|
|
queryParams,
|
|
|
|
postBody,
|
|
|
|
headerParams,
|
|
|
|
formParams,
|
|
|
|
contentTypes.isEmpty ? null : contentTypes.first,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parameters:
|
|
|
|
///
|
|
|
|
/// * [bool] shared:
|
2022-09-05 15:50:20 +02:00
|
|
|
///
|
|
|
|
/// * [String] assetId:
|
|
|
|
/// Only returns albums that contain the asset Ignores the shared parameter undefined: get all albums
|
|
|
|
Future<List<AlbumResponseDto>?> getAllAlbums({ bool? shared, String? assetId, }) async {
|
|
|
|
final response = await getAllAlbumsWithHttpInfo( shared: shared, assetId: assetId, );
|
2022-07-13 14:23:48 +02:00
|
|
|
if (response.statusCode >= HttpStatus.badRequest) {
|
|
|
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
|
|
|
}
|
|
|
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
|
|
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
|
|
|
// FormatException when trying to decode an empty string.
|
|
|
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
|
|
|
final responseBody = await _decodeBodyBytes(response);
|
|
|
|
return (await apiClient.deserializeAsync(responseBody, 'List<AlbumResponseDto>') as List)
|
|
|
|
.cast<AlbumResponseDto>()
|
|
|
|
.toList();
|
|
|
|
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-05-24 16:30:13 +02:00
|
|
|
/// Performs an HTTP 'DELETE /album/{id}/assets' operation and returns the [Response].
|
2022-07-13 14:23:48 +02:00
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
2022-07-13 14:23:48 +02:00
|
|
|
///
|
|
|
|
/// * [RemoveAssetsDto] removeAssetsDto (required):
|
2023-05-24 16:30:13 +02:00
|
|
|
Future<Response> removeAssetFromAlbumWithHttpInfo(String id, RemoveAssetsDto removeAssetsDto,) async {
|
2022-07-13 14:23:48 +02:00
|
|
|
// ignore: prefer_const_declarations
|
2023-05-24 16:30:13 +02:00
|
|
|
final path = r'/album/{id}/assets'
|
|
|
|
.replaceAll('{id}', id);
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
// ignore: prefer_final_locals
|
|
|
|
Object? postBody = removeAssetsDto;
|
|
|
|
|
|
|
|
final queryParams = <QueryParam>[];
|
|
|
|
final headerParams = <String, String>{};
|
|
|
|
final formParams = <String, String>{};
|
|
|
|
|
|
|
|
const contentTypes = <String>['application/json'];
|
|
|
|
|
|
|
|
|
|
|
|
return apiClient.invokeAPI(
|
|
|
|
path,
|
|
|
|
'DELETE',
|
|
|
|
queryParams,
|
|
|
|
postBody,
|
|
|
|
headerParams,
|
|
|
|
formParams,
|
|
|
|
contentTypes.isEmpty ? null : contentTypes.first,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
2022-07-13 14:23:48 +02:00
|
|
|
///
|
|
|
|
/// * [RemoveAssetsDto] removeAssetsDto (required):
|
2023-05-24 16:30:13 +02:00
|
|
|
Future<AlbumResponseDto?> removeAssetFromAlbum(String id, RemoveAssetsDto removeAssetsDto,) async {
|
|
|
|
final response = await removeAssetFromAlbumWithHttpInfo(id, removeAssetsDto,);
|
2022-07-13 14:23:48 +02:00
|
|
|
if (response.statusCode >= HttpStatus.badRequest) {
|
|
|
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
|
|
|
}
|
2022-07-24 06:23:14 +02:00
|
|
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
|
|
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
|
|
|
// FormatException when trying to decode an empty string.
|
|
|
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
|
|
|
return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AlbumResponseDto',) as AlbumResponseDto;
|
|
|
|
|
|
|
|
}
|
|
|
|
return null;
|
2022-07-13 14:23:48 +02:00
|
|
|
}
|
|
|
|
|
2023-05-24 16:30:13 +02:00
|
|
|
/// Performs an HTTP 'DELETE /album/{id}/user/{userId}' operation and returns the [Response].
|
2022-07-13 14:23:48 +02:00
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
2022-07-13 14:23:48 +02:00
|
|
|
///
|
|
|
|
/// * [String] userId (required):
|
2023-05-24 16:30:13 +02:00
|
|
|
Future<Response> removeUserFromAlbumWithHttpInfo(String id, String userId,) async {
|
2022-07-13 14:23:48 +02:00
|
|
|
// ignore: prefer_const_declarations
|
2023-05-24 16:30:13 +02:00
|
|
|
final path = r'/album/{id}/user/{userId}'
|
|
|
|
.replaceAll('{id}', id)
|
2022-07-13 14:23:48 +02:00
|
|
|
.replaceAll('{userId}', userId);
|
|
|
|
|
|
|
|
// ignore: prefer_final_locals
|
|
|
|
Object? postBody;
|
|
|
|
|
|
|
|
final queryParams = <QueryParam>[];
|
|
|
|
final headerParams = <String, String>{};
|
|
|
|
final formParams = <String, String>{};
|
|
|
|
|
|
|
|
const contentTypes = <String>[];
|
|
|
|
|
|
|
|
|
|
|
|
return apiClient.invokeAPI(
|
|
|
|
path,
|
|
|
|
'DELETE',
|
|
|
|
queryParams,
|
|
|
|
postBody,
|
|
|
|
headerParams,
|
|
|
|
formParams,
|
|
|
|
contentTypes.isEmpty ? null : contentTypes.first,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
2022-07-13 14:23:48 +02:00
|
|
|
///
|
|
|
|
/// * [String] userId (required):
|
2023-05-24 16:30:13 +02:00
|
|
|
Future<void> removeUserFromAlbum(String id, String userId,) async {
|
|
|
|
final response = await removeUserFromAlbumWithHttpInfo(id, userId,);
|
2022-07-13 14:23:48 +02:00
|
|
|
if (response.statusCode >= HttpStatus.badRequest) {
|
|
|
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-24 16:30:13 +02:00
|
|
|
/// Performs an HTTP 'PATCH /album/{id}' operation and returns the [Response].
|
2022-07-13 14:23:48 +02:00
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
2022-07-13 14:23:48 +02:00
|
|
|
///
|
|
|
|
/// * [UpdateAlbumDto] updateAlbumDto (required):
|
2023-05-24 16:30:13 +02:00
|
|
|
Future<Response> updateAlbumInfoWithHttpInfo(String id, UpdateAlbumDto updateAlbumDto,) async {
|
2022-07-13 14:23:48 +02:00
|
|
|
// ignore: prefer_const_declarations
|
2023-05-24 16:30:13 +02:00
|
|
|
final path = r'/album/{id}'
|
|
|
|
.replaceAll('{id}', id);
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
// ignore: prefer_final_locals
|
|
|
|
Object? postBody = updateAlbumDto;
|
|
|
|
|
|
|
|
final queryParams = <QueryParam>[];
|
|
|
|
final headerParams = <String, String>{};
|
|
|
|
final formParams = <String, String>{};
|
|
|
|
|
|
|
|
const contentTypes = <String>['application/json'];
|
|
|
|
|
|
|
|
|
|
|
|
return apiClient.invokeAPI(
|
|
|
|
path,
|
|
|
|
'PATCH',
|
|
|
|
queryParams,
|
|
|
|
postBody,
|
|
|
|
headerParams,
|
|
|
|
formParams,
|
|
|
|
contentTypes.isEmpty ? null : contentTypes.first,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parameters:
|
|
|
|
///
|
2023-05-24 16:30:13 +02:00
|
|
|
/// * [String] id (required):
|
2022-07-13 14:23:48 +02:00
|
|
|
///
|
|
|
|
/// * [UpdateAlbumDto] updateAlbumDto (required):
|
2023-05-24 16:30:13 +02:00
|
|
|
Future<AlbumResponseDto?> updateAlbumInfo(String id, UpdateAlbumDto updateAlbumDto,) async {
|
|
|
|
final response = await updateAlbumInfoWithHttpInfo(id, updateAlbumDto,);
|
2022-07-13 14:23:48 +02:00
|
|
|
if (response.statusCode >= HttpStatus.badRequest) {
|
|
|
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
|
|
|
}
|
|
|
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
|
|
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
|
|
|
// FormatException when trying to decode an empty string.
|
|
|
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
|
|
|
return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AlbumResponseDto',) as AlbumResponseDto;
|
|
|
|
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|