/** * PostFinance TypeScript SDK * * This library allows to interact with the PostFinance payment service. * * Copyright owner: Wallee AG * Website: https://www.postfinance.ch/en/private.html * 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; limit?: number; order?: SortingOrder; } export interface GetLabelDescriptorsGroupsRequest { after?: number; before?: number; expand?: Set; limit?: number; order?: SortingOrder; } export interface GetLabelDescriptorsGroupsIdRequest { id: number; expand?: Set; } export interface GetLabelDescriptorsGroupsSearchRequest { expand?: Set; limit?: number; offset?: number; order?: string; query?: string; } export interface GetLabelDescriptorsIdRequest { id: number; expand?: Set; } export interface GetLabelDescriptorsSearchRequest { expand?: Set; 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>; /** * List all label descriptors */ getLabelDescriptors(requestParameters?: GetLabelDescriptorsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * List all label descriptor groups */ getLabelDescriptorsGroupsRaw(requestParameters: GetLabelDescriptorsGroupsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * List all label descriptor groups */ getLabelDescriptorsGroups(requestParameters?: GetLabelDescriptorsGroupsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Retrieve a label descriptor group */ getLabelDescriptorsGroupsIdRaw(requestParameters: GetLabelDescriptorsGroupsIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Retrieve a label descriptor group */ getLabelDescriptorsGroupsId(requestParameters: GetLabelDescriptorsGroupsIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Search label descriptor groups */ getLabelDescriptorsGroupsSearchRaw(requestParameters: GetLabelDescriptorsGroupsSearchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Search label descriptor groups */ getLabelDescriptorsGroupsSearch(requestParameters?: GetLabelDescriptorsGroupsSearchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Retrieve a label descriptor */ getLabelDescriptorsIdRaw(requestParameters: GetLabelDescriptorsIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Retrieve a label descriptor */ getLabelDescriptorsId(requestParameters: GetLabelDescriptorsIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Search label descriptors */ getLabelDescriptorsSearchRaw(requestParameters: GetLabelDescriptorsSearchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Search label descriptors */ getLabelDescriptorsSearch(requestParameters?: GetLabelDescriptorsSearchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }