import { HalResource } from 'hal-types';
export interface ISecuredOperationDescriptors extends HalResource {
    name: string;
    description: string;
    id: number;
    systemCode: string;
    creationTime: string;
    _links: {
        self: {
            href: string;
        };
        securedOperationDescriptors: {
            href: string;
        };
        mathParameters: {
            href: string;
        };
        scheduleRequests: {
            href: string;
        };
    };
}
