wallee
Version:
TypeScript/JavaScript client for wallee
110 lines (99 loc) • 4.05 kB
TypeScript
/**
* Wallee AG TypeScript SDK
*
* This library allows to interact with the Wallee AG payment service.
*
* Copyright owner: Wallee AG
* Website: https://en.wallee.com
* Developer email: ecosystem-team@wallee.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import * as runtime from '../runtime';
import type { ManualTask, ManualTaskListResponse, ManualTaskSearchResponse, SortingOrder } from '../models/index';
export interface GetManualTasksRequest {
space: number;
after?: number;
before?: number;
expand?: Set<string>;
limit?: number;
order?: SortingOrder;
}
export interface GetManualTasksIdRequest {
id: number;
space: number;
expand?: Set<string>;
}
export interface GetManualTasksIdNotificationRequest {
id: number;
space: number;
}
export interface GetManualTasksSearchRequest {
space: number;
expand?: Set<string>;
limit?: number;
offset?: number;
order?: string;
query?: string;
}
export interface PostManualTasksIdActionActionIdRequest {
id: number;
actionId: number;
space: number;
}
/**
*
*/
export declare class ManualTasksService extends runtime.BaseAPI {
constructor(configuration: runtime.Configuration);
/**
* List all manual tasks
*/
getManualTasksRaw(requestParameters: GetManualTasksRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ManualTaskListResponse>>;
/**
* List all manual tasks
*/
getManualTasks(requestParameters: GetManualTasksRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ManualTaskListResponse>;
/**
* Retrieve a manual task
*/
getManualTasksIdRaw(requestParameters: GetManualTasksIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ManualTask>>;
/**
* Retrieve a manual task
*/
getManualTasksId(requestParameters: GetManualTasksIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ManualTask>;
/**
* Retrieve a manual task\'s notification message
*/
getManualTasksIdNotificationRaw(requestParameters: GetManualTasksIdNotificationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<string>>;
/**
* Retrieve a manual task\'s notification message
*/
getManualTasksIdNotification(requestParameters: GetManualTasksIdNotificationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<string>;
/**
* Search manual tasks
*/
getManualTasksSearchRaw(requestParameters: GetManualTasksSearchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ManualTaskSearchResponse>>;
/**
* Search manual tasks
*/
getManualTasksSearch(requestParameters: GetManualTasksSearchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ManualTaskSearchResponse>;
/**
* Process a manual task\'s action
*/
postManualTasksIdActionActionIdRaw(requestParameters: PostManualTasksIdActionActionIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
/**
* Process a manual task\'s action
*/
postManualTasksIdActionActionId(requestParameters: PostManualTasksIdActionActionIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
}