smartlog-interfaces/ts/smartlog-interfaces.requests.ts
2019-10-22 16:14:22 +02:00

8 lines
222 B
TypeScript

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