smartlog-interfaces/ts/smartlog-interfaces.requests.ts
2022-03-07 20:26:59 +01:00

10 lines
239 B
TypeScript

import { ILogPackageAuthenticated } from './index';
export interface IRequest_SmartlogDestinationReceiver_Any_PostLogPackages {
method: 'postLogPackages';
request: {
logPackages: ILogPackageAuthenticated[];
};
response: {};
}