smartlog-interfaces/ts/smartlog-interfaces.requests.ts

8 lines
222 B
TypeScript
Raw Normal View History

2019-10-22 14:14:22 +00:00
import { ILogPackageAuthenticated } from "./index";
export interface IRequest_SmartlogDestinationReceiver_Any_PostLogPackages {
method: 'postLogPackages';
request: {
logPackages: ILogPackageAuthenticated[];
};
}