wallee
Version:
TypeScript/JavaScript client for wallee
126 lines (113 loc) • 5.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 { LabelDescriptor, LabelDescriptorGroup, LabelDescriptorGroupListResponse, LabelDescriptorGroupSearchResponse, LabelDescriptorListResponse, LabelDescriptorSearchResponse, SortingOrder } from '../models/index';
export interface GetLabelDescriptorsRequest {
after?: number;
before?: number;
expand?: Set<string>;
limit?: number;
order?: SortingOrder;
}
export interface GetLabelDescriptorsGroupsRequest {
after?: number;
before?: number;
expand?: Set<string>;
limit?: number;
order?: SortingOrder;
}
export interface GetLabelDescriptorsGroupsIdRequest {
id: number;
expand?: Set<string>;
}
export interface GetLabelDescriptorsGroupsSearchRequest {
expand?: Set<string>;
limit?: number;
offset?: number;
order?: string;
query?: string;
}
export interface GetLabelDescriptorsIdRequest {
id: number;
expand?: Set<string>;
}
export interface GetLabelDescriptorsSearchRequest {
expand?: Set<string>;
limit?: number;
offset?: number;
order?: string;
query?: string;
}
/**
*
*/
export declare class LabelDescriptorsService extends runtime.BaseAPI {
constructor(configuration: runtime.Configuration);
/**
* List all label descriptors
*/
getLabelDescriptorsRaw(requestParameters: GetLabelDescriptorsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<LabelDescriptorListResponse>>;
/**
* List all label descriptors
*/
getLabelDescriptors(requestParameters?: GetLabelDescriptorsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<LabelDescriptorListResponse>;
/**
* List all label descriptor groups
*/
getLabelDescriptorsGroupsRaw(requestParameters: GetLabelDescriptorsGroupsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<LabelDescriptorGroupListResponse>>;
/**
* List all label descriptor groups
*/
getLabelDescriptorsGroups(requestParameters?: GetLabelDescriptorsGroupsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<LabelDescriptorGroupListResponse>;
/**
* Retrieve a label descriptor group
*/
getLabelDescriptorsGroupsIdRaw(requestParameters: GetLabelDescriptorsGroupsIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<LabelDescriptorGroup>>;
/**
* Retrieve a label descriptor group
*/
getLabelDescriptorsGroupsId(requestParameters: GetLabelDescriptorsGroupsIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<LabelDescriptorGroup>;
/**
* Search label descriptor groups
*/
getLabelDescriptorsGroupsSearchRaw(requestParameters: GetLabelDescriptorsGroupsSearchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<LabelDescriptorGroupSearchResponse>>;
/**
* Search label descriptor groups
*/
getLabelDescriptorsGroupsSearch(requestParameters?: GetLabelDescriptorsGroupsSearchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<LabelDescriptorGroupSearchResponse>;
/**
* Retrieve a label descriptor
*/
getLabelDescriptorsIdRaw(requestParameters: GetLabelDescriptorsIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<LabelDescriptor>>;
/**
* Retrieve a label descriptor
*/
getLabelDescriptorsId(requestParameters: GetLabelDescriptorsIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<LabelDescriptor>;
/**
* Search label descriptors
*/
getLabelDescriptorsSearchRaw(requestParameters: GetLabelDescriptorsSearchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<LabelDescriptorSearchResponse>>;
/**
* Search label descriptors
*/
getLabelDescriptorsSearch(requestParameters?: GetLabelDescriptorsSearchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<LabelDescriptorSearchResponse>;
}