2023-04-03 11:40:56 +00:00
|
|
|
import { ICheckCollection } from '../data/checkcollection.js';
|
2022-07-16 15:45:10 +00:00
|
|
|
import * as plugins from '../ul-interfaces.plugins.js';
|
2019-11-30 16:25:24 +00:00
|
|
|
|
2022-07-19 13:52:49 +00:00
|
|
|
export interface IRequest_CheckExchange
|
2021-09-26 14:11:41 +00:00
|
|
|
extends plugins.typedRequestInterfaces.implementsTR<
|
|
|
|
plugins.typedRequestInterfaces.ITypedRequest,
|
2022-07-19 13:52:49 +00:00
|
|
|
IRequest_CheckExchange
|
2021-09-26 14:11:41 +00:00
|
|
|
> {
|
2022-07-19 13:52:49 +00:00
|
|
|
method: 'check';
|
2019-11-30 16:25:24 +00:00
|
|
|
request: {
|
2023-04-03 11:40:56 +00:00
|
|
|
checkCollection: ICheckCollection;
|
2019-11-30 16:25:24 +00:00
|
|
|
};
|
|
|
|
response: {
|
2023-04-03 11:40:56 +00:00
|
|
|
checkCollection: ICheckCollection;
|
2022-07-19 13:52:49 +00:00
|
|
|
}
|
2021-03-08 17:30:04 +00:00
|
|
|
}
|