smartlog-interfaces/ts/smartlog-interfaces.requests.ts
2020-06-04 15:12:36 +00:00

9 lines
223 B
TypeScript

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