/**========================================================================================================================== * EARN * ========================================================================================================================== */ export interface GetStructuredProductListReq { status: string; type?: string; page?: number; limit?: number; } export interface GetStructuredProductOrdersReq { from?: number; to?: number; page?: number; limit?: number; } /** Request params for POST /earn/dual/orders */ export interface PlaceDualInvestmentOrderParams { plan_id: string; /** Subscription amount. Mutually exclusive with copies. */ amount: string; /** Units. Mutually exclusive with amount. */ copies?: string; /** Custom order info, must start with t- */ text?: string; }