import { Billing } from './Billing';
import { Customer } from './Customer';
import { Resource } from './Resource';
import { Route } from './Route';
/** Description of a service */
export interface Service {
    /** Billing information */
    billing: Billing;
    /** Customer information */
    customer: Customer;
    /** Parent service ID */
    parentServiceId?: number;
    /** Resource */
    resource: Resource;
    /** Route */
    route?: Route;
    /** Service ID */
    serviceId: number;
    /** Service tags */
    tags: string[];
}
//# sourceMappingURL=Service.d.ts.map