You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/* generated using openapi-typescript-codegen -- do not edit */
|
|
|
|
/* istanbul ignore file */
|
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
import type { BaseResponse_boolean_ } from '../models/BaseResponse_boolean_';
|
|
|
|
import type { KnowThumbAddRequest } from '../models/KnowThumbAddRequest';
|
|
|
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
|
|
import { OpenAPI } from '../core/OpenAPI';
|
|
|
|
import { request as __request } from '../core/request';
|
|
|
|
export class SeKnowThumbControllerService {
|
|
|
|
/**
|
|
|
|
* doThumb
|
|
|
|
* @param knowThumbAddRequest knowThumbAddRequest
|
|
|
|
* @returns BaseResponse_boolean_ OK
|
|
|
|
* @returns any Created
|
|
|
|
* @throws ApiError
|
|
|
|
*/
|
|
|
|
public static doThumbUsingPost3(
|
|
|
|
knowThumbAddRequest: KnowThumbAddRequest,
|
|
|
|
): CancelablePromise<BaseResponse_boolean_ | any> {
|
|
|
|
return __request(OpenAPI, {
|
|
|
|
method: 'POST',
|
|
|
|
url: '/api/know_thumb/add',
|
|
|
|
body: knowThumbAddRequest,
|
|
|
|
errors: {
|
|
|
|
401: `Unauthorized`,
|
|
|
|
403: `Forbidden`,
|
|
|
|
404: `Not Found`,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|