import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { MarketInstance } from './Markets'; import { OrderInstance } from './Orders'; import { OrderCopyInstance } from './OrderCopies'; export interface OrderSubscriptionAttributes { number: string; status: string; frequency: string; activate_by_source_order: boolean; customer_email: string; starts_at: string; expires_at: string; next_run_at: string; occurrencies: number; errors_count: number; succeeded_on_last_run: boolean; options: any; _activate: boolean; _deactivate: boolean; _cancel: boolean; } export interface OrderSubscriptionRelationships { market: MarketInstance; source_order: OrderInstance; order_copies: OrderCopyInstance[]; orders: OrderInstance[]; } export declare type OrderSubscriptionInstance = ConcreteResourceInstance; export declare const OrderSubscriptionsConfig: ResourceConfig; export declare const OrderSubscriptions: Resource; //# sourceMappingURL=OrderSubscriptions.d.ts.map