pub struct GetFundsParams {
pub symbol: Option<String>,
pub figi: Option<String>,
pub isin: Option<String>,
pub cusip: Option<String>,
pub cik: Option<String>,
pub exchange: Option<String>,
pub country: Option<String>,
pub format: Option<String>,
pub delimiter: Option<String>,
pub show_plan: Option<bool>,
pub page: Option<i64>,
pub outputsize: Option<i64>,
}Expand description
struct for passing parameters to the method get_funds
Fields§
§symbol: Option<String>The ticker symbol of an instrument for which data is requested
figi: Option<String>Filter by financial instrument global identifier (FIGI)
isin: Option<String>Filter by international securities identification number (ISIN)
cusip: Option<String>The CUSIP of an instrument for which data is requested. CUSIP access is activating in the <a href="https://twelvedata.com/account/add-ons">Add-ons section
cik: Option<String>The CIK of an instrument for which data is requested
exchange: Option<String>Filter by exchange name
country: Option<String>Filter by country name or alpha code, e.g., United States or US
format: Option<String>The format of the response data
delimiter: Option<String>The separator used in the CSV response data
show_plan: Option<bool>Adds info on which plan symbol is available
page: Option<i64>Page number of the results to fetch
outputsize: Option<i64>Determines the number of data points returned in the output
Implementations§
Source§impl GetFundsParams
impl GetFundsParams
Sourcepub fn builder() -> GetFundsParamsBuilder
pub fn builder() -> GetFundsParamsBuilder
Create a new builder for this parameter struct
Trait Implementations§
Source§impl Clone for GetFundsParams
impl Clone for GetFundsParams
Source§fn clone(&self) -> GetFundsParams
fn clone(&self) -> GetFundsParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more