market

package
v0.0.0-...-ce8ff45 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 21, 2024 License: MIT Imports: 21 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedAssetMainTypeEnumValues = []AssetMainType{
	"BOND",
	"EQUITY",
	"FOREX",
	"FUTURE",
	"FUTURE_OPTION",
	"INDEX",
	"MUTUAL_FUND",
	"OPTION",
}

All allowed values of AssetMainType enum

View Source
var AllowedContractTypeEnumValues = []ContractType{
	"P",
	"C",
}

All allowed values of ContractType enum

View Source
var AllowedDivFreqEnumValues = []DivFreq{
	1,
	2,
	3,
	4,
	6,
	11,
	12,
}

All allowed values of DivFreq enum

View Source
var AllowedEquityAssetSubTypeEnumValues = []EquityAssetSubType{
	"COE",
	"PRF",
	"ADR",
	"GDR",
	"CEF",
	"ETF",
	"ETN",
	"UIT",
	"WAR",
	"RGT",
	"null",
}

All allowed values of EquityAssetSubType enum

View Source
var AllowedExerciseTypeEnumValues = []ExerciseType{
	"A",
	"E",
}

All allowed values of ExerciseType enum

View Source
var AllowedExpirationTypeEnumValues = []ExpirationType{
	"M",
	"Q",
	"S",
	"W",
}

All allowed values of ExpirationType enum

View Source
var AllowedFundStrategyEnumValues = []FundStrategy{
	"A",
	"L",
	"P",
	"Q",
	"S",
	"null",
}

All allowed values of FundStrategy enum

View Source
var AllowedMutualFundAssetSubTypeEnumValues = []MutualFundAssetSubType{
	"OEF",
	"CEF",
	"MMF",
	"null",
}

All allowed values of MutualFundAssetSubType enum

View Source
var AllowedQuoteTypeEnumValues = []QuoteType{
	"NBBO",
	"NFL",
	"null",
}

All allowed values of QuoteType enum

View Source
var AllowedSettlementTypeEnumValues = []SettlementType{
	"A",
	"P",
}

All allowed values of SettlementType enum

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	InstrumentsAPI *InstrumentsAPIService

	MarketHoursAPI *MarketHoursAPIService

	MoversAPI *MoversAPIService

	OptionChainsAPI *OptionChainsAPIService

	OptionExpirationChainAPI *OptionExpirationChainAPIService

	PriceHistoryAPI *PriceHistoryAPIService

	QuotesAPI *QuotesAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Market Data API v1.0.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiGetChainRequest

type ApiGetChainRequest struct {
	ApiService *OptionChainsAPIService
	// contains filtered or unexported fields
}

func (ApiGetChainRequest) ContractType

func (r ApiGetChainRequest) ContractType(contractType string) ApiGetChainRequest

Contract Type

func (ApiGetChainRequest) DaysToExpiration

func (r ApiGetChainRequest) DaysToExpiration(daysToExpiration int32) ApiGetChainRequest

Number of days to expiration

func (ApiGetChainRequest) Entitlement

func (r ApiGetChainRequest) Entitlement(entitlement string) ApiGetChainRequest

Applicable only if its retail token, entitlement of client PP-PayingPro, NP-NonPro and PN-NonPayingPro

func (ApiGetChainRequest) Execute

func (r ApiGetChainRequest) Execute() (*OptionChain, *http.Response, error)

func (ApiGetChainRequest) ExpMonth

func (r ApiGetChainRequest) ExpMonth(expMonth string) ApiGetChainRequest

Expiration month

func (ApiGetChainRequest) FromDate

func (r ApiGetChainRequest) FromDate(fromDate string) ApiGetChainRequest

From date(pattern: yyyy-MM-dd)

func (ApiGetChainRequest) IncludeUnderlyingQuote

func (r ApiGetChainRequest) IncludeUnderlyingQuote(includeUnderlyingQuote bool) ApiGetChainRequest

Underlying quotes to be included

func (ApiGetChainRequest) InterestRate

func (r ApiGetChainRequest) InterestRate(interestRate float64) ApiGetChainRequest

Interest rate

func (ApiGetChainRequest) Interval

func (r ApiGetChainRequest) Interval(interval float64) ApiGetChainRequest

Interval

func (ApiGetChainRequest) OptionType

func (r ApiGetChainRequest) OptionType(optionType string) ApiGetChainRequest

Option Type

func (ApiGetChainRequest) Range_

func (r ApiGetChainRequest) Range_(range_ string) ApiGetChainRequest

Range(ITM/NTM/OTM etc.)

func (ApiGetChainRequest) Strategy

func (r ApiGetChainRequest) Strategy(strategy string) ApiGetChainRequest

Optionchain strategy

func (ApiGetChainRequest) Strike

Strike Price

func (ApiGetChainRequest) StrikeCount

func (r ApiGetChainRequest) StrikeCount(strikeCount int32) ApiGetChainRequest

Strike Count

func (ApiGetChainRequest) Symbol

func (r ApiGetChainRequest) Symbol(symbol string) ApiGetChainRequest

Enter one symbol

func (ApiGetChainRequest) ToDate

func (r ApiGetChainRequest) ToDate(toDate string) ApiGetChainRequest

To date (pattern: yyyy-MM-dd)

func (ApiGetChainRequest) UnderlyingPrice

func (r ApiGetChainRequest) UnderlyingPrice(underlyingPrice float64) ApiGetChainRequest

Underlying price

func (ApiGetChainRequest) Volatility

func (r ApiGetChainRequest) Volatility(volatility float64) ApiGetChainRequest

Historical volatility

type ApiGetExpirationChainRequest

type ApiGetExpirationChainRequest struct {
	ApiService *OptionExpirationChainAPIService
	// contains filtered or unexported fields
}

func (ApiGetExpirationChainRequest) Execute

func (ApiGetExpirationChainRequest) Symbol

Enter one symbol

type ApiGetInstrumentsByCusipRequest

type ApiGetInstrumentsByCusipRequest struct {
	ApiService *InstrumentsAPIService
	// contains filtered or unexported fields
}

func (ApiGetInstrumentsByCusipRequest) Execute

type ApiGetInstrumentsRequest

type ApiGetInstrumentsRequest struct {
	ApiService *InstrumentsAPIService
	// contains filtered or unexported fields
}

func (ApiGetInstrumentsRequest) Execute

func (ApiGetInstrumentsRequest) Projection

func (r ApiGetInstrumentsRequest) Projection(projection string) ApiGetInstrumentsRequest

search by

func (ApiGetInstrumentsRequest) Symbol

symbol of a security

type ApiGetMarketHourRequest

type ApiGetMarketHourRequest struct {
	ApiService *MarketHoursAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarketHourRequest) Date

Valid date range is from currentdate to 1 year from today. It will default to current day if not entered. Date format:YYYY-MM-DD

func (ApiGetMarketHourRequest) Execute

func (r ApiGetMarketHourRequest) Execute() (*map[string]map[string]Hours, *http.Response, error)

type ApiGetMarketHoursRequest

type ApiGetMarketHoursRequest struct {
	ApiService *MarketHoursAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarketHoursRequest) Date

Valid date range is from currentdate to 1 year from today. It will default to current day if not entered. Date format:YYYY-MM-DD

func (ApiGetMarketHoursRequest) Execute

func (r ApiGetMarketHoursRequest) Execute() (*map[string]map[string]Hours, *http.Response, error)

func (ApiGetMarketHoursRequest) Markets

List of markets

type ApiGetMoversRequest

type ApiGetMoversRequest struct {
	ApiService *MoversAPIService
	// contains filtered or unexported fields
}

func (ApiGetMoversRequest) Execute

func (ApiGetMoversRequest) Frequency

func (r ApiGetMoversRequest) Frequency(frequency int32) ApiGetMoversRequest

To return movers with the specified directions of up or down

func (ApiGetMoversRequest) Sort

Sort by a particular attribute

type ApiGetPriceHistoryRequest

type ApiGetPriceHistoryRequest struct {
	ApiService *PriceHistoryAPIService
	// contains filtered or unexported fields
}

func (ApiGetPriceHistoryRequest) EndDate

The end date, Time in milliseconds since the UNIX epoch eg 1451624400000<br> If not specified, the endDate will default to the market close of previous business day.

func (ApiGetPriceHistoryRequest) Execute

func (ApiGetPriceHistoryRequest) Frequency

The time frequency duration<br><br> If the frequencyType is <br> • <b>minute</b> - valid values are 1, 5, 10, 15, 30<br> • <b>daily</b> - valid value is 1<br> • <b>weekly</b> - valid value is 1<br> • <b>monthly</b> - valid value is 1<br><br> If frequency is not specified, default value is <b>1</b><br>

func (ApiGetPriceHistoryRequest) FrequencyType

func (r ApiGetPriceHistoryRequest) FrequencyType(frequencyType string) ApiGetPriceHistoryRequest

The time frequencyType<br><br> If the periodType is <br> • <b>day</b> - valid value is minute<br> • <b>month</b> - valid values are daily, weekly<br> • <b>year</b> - valid values are daily, weekly, monthly<br> • <b>ytd</b> - valid values are daily, weekly<br><br> If frequencyType is not specified, default value depends on the periodType<br> • <b>day</b> - defaulted to minute.<br> • <b>month</b> - defaulted to weekly.<br> • <b>year</b> - defaulted to monthly.<br> • <b>ytd</b> - defaulted to weekly.<br>

func (ApiGetPriceHistoryRequest) NeedExtendedHoursData

func (r ApiGetPriceHistoryRequest) NeedExtendedHoursData(needExtendedHoursData bool) ApiGetPriceHistoryRequest

Need extended hours data

func (ApiGetPriceHistoryRequest) NeedPreviousClose

func (r ApiGetPriceHistoryRequest) NeedPreviousClose(needPreviousClose bool) ApiGetPriceHistoryRequest

Need previous close price/date

func (ApiGetPriceHistoryRequest) Period

The number of chart period types.<br><br> If the periodType is <br> • <b>day</b> - valid values are 1, 2, 3, 4, 5, 10<br> • <b>month</b> - valid values are 1, 2, 3, 6<br> • <b>year</b> - valid values are 1, 2, 3, 5, 10, 15, 20<br> • <b>ytd</b> - valid values are 1<br><br> If the period is not specified and the periodType is<br> • <b>day</b> - default period is 10.<br> • <b>month</b> - default period is 1.<br> • <b>year</b> - default period is 1.<br> • <b>ytd</b> - default period is 1.<br>

func (ApiGetPriceHistoryRequest) PeriodType

The chart period being requested.

func (ApiGetPriceHistoryRequest) StartDate

The start date, Time in milliseconds since the UNIX epoch eg 1451624400000<br>If not specified startDate will be (endDate - period) excluding weekends and holidays.

func (ApiGetPriceHistoryRequest) Symbol

The Equity symbol used to look up price history

type ApiGetQuoteRequest

type ApiGetQuoteRequest struct {
	ApiService *QuotesAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuoteRequest) Execute

func (ApiGetQuoteRequest) Fields

func (r ApiGetQuoteRequest) Fields(fields string) ApiGetQuoteRequest

Request for subset of data by passing coma separated list of root nodes, possible root nodes are quote, fundamental, extended, reference, regular. Sending `quote, fundamental` in request will return quote and fundamental data in response. Dont send this attribute for full response.

type ApiGetQuotesRequest

type ApiGetQuotesRequest struct {
	ApiService *QuotesAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuotesRequest) Execute

func (ApiGetQuotesRequest) Fields

Request for subset of data by passing coma separated list of root nodes, possible root nodes are quote, fundamental, extended, reference, regular. Sending `quote, fundamental` in request will return quote and fundamental data in response. Dont send this attribute for full response.

func (ApiGetQuotesRequest) Indicative

func (r ApiGetQuotesRequest) Indicative(indicative bool) ApiGetQuotesRequest

Include indicative symbol quotes for all ETF symbols in request. If ETF symbol ABC is in request and indicative=true API will return quotes for ABC and its corresponding indicative quote for $ABC.IV

func (ApiGetQuotesRequest) Symbols

func (r ApiGetQuotesRequest) Symbols(symbols string) ApiGetQuotesRequest

Comma separated list of symbol(s) to look up a quote

type AssetMainType

type AssetMainType string

AssetMainType Instrument's asset type

const (
	ASSETMAINTYPE_BOND          AssetMainType = "BOND"
	ASSETMAINTYPE_EQUITY        AssetMainType = "EQUITY"
	ASSETMAINTYPE_FOREX         AssetMainType = "FOREX"
	ASSETMAINTYPE_FUTURE        AssetMainType = "FUTURE"
	ASSETMAINTYPE_FUTURE_OPTION AssetMainType = "FUTURE_OPTION"
	ASSETMAINTYPE_INDEX         AssetMainType = "INDEX"
	ASSETMAINTYPE_MUTUAL_FUND   AssetMainType = "MUTUAL_FUND"
	ASSETMAINTYPE_OPTION        AssetMainType = "OPTION"
)

List of AssetMainType

func NewAssetMainTypeFromValue

func NewAssetMainTypeFromValue(v string) (*AssetMainType, error)

NewAssetMainTypeFromValue returns a pointer to a valid AssetMainType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (AssetMainType) IsValid

func (v AssetMainType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (AssetMainType) Ptr

func (v AssetMainType) Ptr() *AssetMainType

Ptr returns reference to AssetMainType value

func (*AssetMainType) UnmarshalJSON

func (v *AssetMainType) UnmarshalJSON(src []byte) error

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Bond

type Bond struct {
	Cusip          *string  `json:"cusip,omitempty"`
	Symbol         *string  `json:"symbol,omitempty"`
	Description    *string  `json:"description,omitempty"`
	Exchange       *string  `json:"exchange,omitempty"`
	AssetType      *string  `json:"assetType,omitempty"`
	BondFactor     *string  `json:"bondFactor,omitempty"`
	BondMultiplier *string  `json:"bondMultiplier,omitempty"`
	BondPrice      *float32 `json:"bondPrice,omitempty"`
	Type           *string  `json:"type,omitempty"`
}

Bond struct for Bond

func NewBond

func NewBond() *Bond

NewBond instantiates a new Bond object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBondWithDefaults

func NewBondWithDefaults() *Bond

NewBondWithDefaults instantiates a new Bond object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Bond) GetAssetType

func (o *Bond) GetAssetType() string

GetAssetType returns the AssetType field value if set, zero value otherwise.

func (*Bond) GetAssetTypeOk

func (o *Bond) GetAssetTypeOk() (*string, bool)

GetAssetTypeOk returns a tuple with the AssetType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Bond) GetBondFactor

func (o *Bond) GetBondFactor() string

GetBondFactor returns the BondFactor field value if set, zero value otherwise.

func (*Bond) GetBondFactorOk

func (o *Bond) GetBondFactorOk() (*string, bool)

GetBondFactorOk returns a tuple with the BondFactor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Bond) GetBondMultiplier

func (o *Bond) GetBondMultiplier() string

GetBondMultiplier returns the BondMultiplier field value if set, zero value otherwise.

func (*Bond) GetBondMultiplierOk

func (o *Bond) GetBondMultiplierOk() (*string, bool)

GetBondMultiplierOk returns a tuple with the BondMultiplier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Bond) GetBondPrice

func (o *Bond) GetBondPrice() float32

GetBondPrice returns the BondPrice field value if set, zero value otherwise.

func (*Bond) GetBondPriceOk

func (o *Bond) GetBondPriceOk() (*float32, bool)

GetBondPriceOk returns a tuple with the BondPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Bond) GetCusip

func (o *Bond) GetCusip() string

GetCusip returns the Cusip field value if set, zero value otherwise.

func (*Bond) GetCusipOk

func (o *Bond) GetCusipOk() (*string, bool)

GetCusipOk returns a tuple with the Cusip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Bond) GetDescription

func (o *Bond) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Bond) GetDescriptionOk

func (o *Bond) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Bond) GetExchange

func (o *Bond) GetExchange() string

GetExchange returns the Exchange field value if set, zero value otherwise.

func (*Bond) GetExchangeOk

func (o *Bond) GetExchangeOk() (*string, bool)

GetExchangeOk returns a tuple with the Exchange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Bond) GetSymbol

func (o *Bond) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*Bond) GetSymbolOk

func (o *Bond) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Bond) GetType

func (o *Bond) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Bond) GetTypeOk

func (o *Bond) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Bond) HasAssetType

func (o *Bond) HasAssetType() bool

HasAssetType returns a boolean if a field has been set.

func (*Bond) HasBondFactor

func (o *Bond) HasBondFactor() bool

HasBondFactor returns a boolean if a field has been set.

func (*Bond) HasBondMultiplier

func (o *Bond) HasBondMultiplier() bool

HasBondMultiplier returns a boolean if a field has been set.

func (*Bond) HasBondPrice

func (o *Bond) HasBondPrice() bool

HasBondPrice returns a boolean if a field has been set.

func (*Bond) HasCusip

func (o *Bond) HasCusip() bool

HasCusip returns a boolean if a field has been set.

func (*Bond) HasDescription

func (o *Bond) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Bond) HasExchange

func (o *Bond) HasExchange() bool

HasExchange returns a boolean if a field has been set.

func (*Bond) HasSymbol

func (o *Bond) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*Bond) HasType

func (o *Bond) HasType() bool

HasType returns a boolean if a field has been set.

func (Bond) MarshalJSON

func (o Bond) MarshalJSON() ([]byte, error)

func (*Bond) SetAssetType

func (o *Bond) SetAssetType(v string)

SetAssetType gets a reference to the given string and assigns it to the AssetType field.

func (*Bond) SetBondFactor

func (o *Bond) SetBondFactor(v string)

SetBondFactor gets a reference to the given string and assigns it to the BondFactor field.

func (*Bond) SetBondMultiplier

func (o *Bond) SetBondMultiplier(v string)

SetBondMultiplier gets a reference to the given string and assigns it to the BondMultiplier field.

func (*Bond) SetBondPrice

func (o *Bond) SetBondPrice(v float32)

SetBondPrice gets a reference to the given float32 and assigns it to the BondPrice field.

func (*Bond) SetCusip

func (o *Bond) SetCusip(v string)

SetCusip gets a reference to the given string and assigns it to the Cusip field.

func (*Bond) SetDescription

func (o *Bond) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Bond) SetExchange

func (o *Bond) SetExchange(v string)

SetExchange gets a reference to the given string and assigns it to the Exchange field.

func (*Bond) SetSymbol

func (o *Bond) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*Bond) SetType

func (o *Bond) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Bond) ToMap

func (o Bond) ToMap() (map[string]interface{}, error)

type Candle

type Candle struct {
	Close           *float64 `json:"close,omitempty"`
	Datetime        *int64   `json:"datetime,omitempty"`
	DatetimeISO8601 *string  `json:"datetimeISO8601,omitempty"`
	High            *float64 `json:"high,omitempty"`
	Low             *float64 `json:"low,omitempty"`
	Open            *float64 `json:"open,omitempty"`
	Volume          *int64   `json:"volume,omitempty"`
}

Candle struct for Candle

func NewCandle

func NewCandle() *Candle

NewCandle instantiates a new Candle object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCandleWithDefaults

func NewCandleWithDefaults() *Candle

NewCandleWithDefaults instantiates a new Candle object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Candle) GetClose

func (o *Candle) GetClose() float64

GetClose returns the Close field value if set, zero value otherwise.

func (*Candle) GetCloseOk

func (o *Candle) GetCloseOk() (*float64, bool)

GetCloseOk returns a tuple with the Close field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Candle) GetDatetime

func (o *Candle) GetDatetime() int64

GetDatetime returns the Datetime field value if set, zero value otherwise.

func (*Candle) GetDatetimeISO8601

func (o *Candle) GetDatetimeISO8601() string

GetDatetimeISO8601 returns the DatetimeISO8601 field value if set, zero value otherwise.

func (*Candle) GetDatetimeISO8601Ok

func (o *Candle) GetDatetimeISO8601Ok() (*string, bool)

GetDatetimeISO8601Ok returns a tuple with the DatetimeISO8601 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Candle) GetDatetimeOk

func (o *Candle) GetDatetimeOk() (*int64, bool)

GetDatetimeOk returns a tuple with the Datetime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Candle) GetHigh

func (o *Candle) GetHigh() float64

GetHigh returns the High field value if set, zero value otherwise.

func (*Candle) GetHighOk

func (o *Candle) GetHighOk() (*float64, bool)

GetHighOk returns a tuple with the High field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Candle) GetLow

func (o *Candle) GetLow() float64

GetLow returns the Low field value if set, zero value otherwise.

func (*Candle) GetLowOk

func (o *Candle) GetLowOk() (*float64, bool)

GetLowOk returns a tuple with the Low field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Candle) GetOpen

func (o *Candle) GetOpen() float64

GetOpen returns the Open field value if set, zero value otherwise.

func (*Candle) GetOpenOk

func (o *Candle) GetOpenOk() (*float64, bool)

GetOpenOk returns a tuple with the Open field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Candle) GetVolume

func (o *Candle) GetVolume() int64

GetVolume returns the Volume field value if set, zero value otherwise.

func (*Candle) GetVolumeOk

func (o *Candle) GetVolumeOk() (*int64, bool)

GetVolumeOk returns a tuple with the Volume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Candle) HasClose

func (o *Candle) HasClose() bool

HasClose returns a boolean if a field has been set.

func (*Candle) HasDatetime

func (o *Candle) HasDatetime() bool

HasDatetime returns a boolean if a field has been set.

func (*Candle) HasDatetimeISO8601

func (o *Candle) HasDatetimeISO8601() bool

HasDatetimeISO8601 returns a boolean if a field has been set.

func (*Candle) HasHigh

func (o *Candle) HasHigh() bool

HasHigh returns a boolean if a field has been set.

func (*Candle) HasLow

func (o *Candle) HasLow() bool

HasLow returns a boolean if a field has been set.

func (*Candle) HasOpen

func (o *Candle) HasOpen() bool

HasOpen returns a boolean if a field has been set.

func (*Candle) HasVolume

func (o *Candle) HasVolume() bool

HasVolume returns a boolean if a field has been set.

func (Candle) MarshalJSON

func (o Candle) MarshalJSON() ([]byte, error)

func (*Candle) SetClose

func (o *Candle) SetClose(v float64)

SetClose gets a reference to the given float64 and assigns it to the Close field.

func (*Candle) SetDatetime

func (o *Candle) SetDatetime(v int64)

SetDatetime gets a reference to the given int64 and assigns it to the Datetime field.

func (*Candle) SetDatetimeISO8601

func (o *Candle) SetDatetimeISO8601(v string)

SetDatetimeISO8601 gets a reference to the given string and assigns it to the DatetimeISO8601 field.

func (*Candle) SetHigh

func (o *Candle) SetHigh(v float64)

SetHigh gets a reference to the given float64 and assigns it to the High field.

func (*Candle) SetLow

func (o *Candle) SetLow(v float64)

SetLow gets a reference to the given float64 and assigns it to the Low field.

func (*Candle) SetOpen

func (o *Candle) SetOpen(v float64)

SetOpen gets a reference to the given float64 and assigns it to the Open field.

func (*Candle) SetVolume

func (o *Candle) SetVolume(v int64)

SetVolume gets a reference to the given int64 and assigns it to the Volume field.

func (Candle) ToMap

func (o Candle) ToMap() (map[string]interface{}, error)

type CandleList

type CandleList struct {
	Candles                  []Candle `json:"candles,omitempty"`
	Empty                    *bool    `json:"empty,omitempty"`
	PreviousClose            *float64 `json:"previousClose,omitempty"`
	PreviousCloseDate        *int64   `json:"previousCloseDate,omitempty"`
	PreviousCloseDateISO8601 *string  `json:"previousCloseDateISO8601,omitempty"`
	Symbol                   *string  `json:"symbol,omitempty"`
}

CandleList struct for CandleList

func NewCandleList

func NewCandleList() *CandleList

NewCandleList instantiates a new CandleList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCandleListWithDefaults

func NewCandleListWithDefaults() *CandleList

NewCandleListWithDefaults instantiates a new CandleList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CandleList) GetCandles

func (o *CandleList) GetCandles() []Candle

GetCandles returns the Candles field value if set, zero value otherwise.

func (*CandleList) GetCandlesOk

func (o *CandleList) GetCandlesOk() ([]Candle, bool)

GetCandlesOk returns a tuple with the Candles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CandleList) GetEmpty

func (o *CandleList) GetEmpty() bool

GetEmpty returns the Empty field value if set, zero value otherwise.

func (*CandleList) GetEmptyOk

func (o *CandleList) GetEmptyOk() (*bool, bool)

GetEmptyOk returns a tuple with the Empty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CandleList) GetPreviousClose

func (o *CandleList) GetPreviousClose() float64

GetPreviousClose returns the PreviousClose field value if set, zero value otherwise.

func (*CandleList) GetPreviousCloseDate

func (o *CandleList) GetPreviousCloseDate() int64

GetPreviousCloseDate returns the PreviousCloseDate field value if set, zero value otherwise.

func (*CandleList) GetPreviousCloseDateISO8601

func (o *CandleList) GetPreviousCloseDateISO8601() string

GetPreviousCloseDateISO8601 returns the PreviousCloseDateISO8601 field value if set, zero value otherwise.

func (*CandleList) GetPreviousCloseDateISO8601Ok

func (o *CandleList) GetPreviousCloseDateISO8601Ok() (*string, bool)

GetPreviousCloseDateISO8601Ok returns a tuple with the PreviousCloseDateISO8601 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CandleList) GetPreviousCloseDateOk

func (o *CandleList) GetPreviousCloseDateOk() (*int64, bool)

GetPreviousCloseDateOk returns a tuple with the PreviousCloseDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CandleList) GetPreviousCloseOk

func (o *CandleList) GetPreviousCloseOk() (*float64, bool)

GetPreviousCloseOk returns a tuple with the PreviousClose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CandleList) GetSymbol

func (o *CandleList) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*CandleList) GetSymbolOk

func (o *CandleList) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CandleList) HasCandles

func (o *CandleList) HasCandles() bool

HasCandles returns a boolean if a field has been set.

func (*CandleList) HasEmpty

func (o *CandleList) HasEmpty() bool

HasEmpty returns a boolean if a field has been set.

func (*CandleList) HasPreviousClose

func (o *CandleList) HasPreviousClose() bool

HasPreviousClose returns a boolean if a field has been set.

func (*CandleList) HasPreviousCloseDate

func (o *CandleList) HasPreviousCloseDate() bool

HasPreviousCloseDate returns a boolean if a field has been set.

func (*CandleList) HasPreviousCloseDateISO8601

func (o *CandleList) HasPreviousCloseDateISO8601() bool

HasPreviousCloseDateISO8601 returns a boolean if a field has been set.

func (*CandleList) HasSymbol

func (o *CandleList) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (CandleList) MarshalJSON

func (o CandleList) MarshalJSON() ([]byte, error)

func (*CandleList) SetCandles

func (o *CandleList) SetCandles(v []Candle)

SetCandles gets a reference to the given []Candle and assigns it to the Candles field.

func (*CandleList) SetEmpty

func (o *CandleList) SetEmpty(v bool)

SetEmpty gets a reference to the given bool and assigns it to the Empty field.

func (*CandleList) SetPreviousClose

func (o *CandleList) SetPreviousClose(v float64)

SetPreviousClose gets a reference to the given float64 and assigns it to the PreviousClose field.

func (*CandleList) SetPreviousCloseDate

func (o *CandleList) SetPreviousCloseDate(v int64)

SetPreviousCloseDate gets a reference to the given int64 and assigns it to the PreviousCloseDate field.

func (*CandleList) SetPreviousCloseDateISO8601

func (o *CandleList) SetPreviousCloseDateISO8601(v string)

SetPreviousCloseDateISO8601 gets a reference to the given string and assigns it to the PreviousCloseDateISO8601 field.

func (*CandleList) SetSymbol

func (o *CandleList) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (CandleList) ToMap

func (o CandleList) ToMap() (map[string]interface{}, error)

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type ContractType

type ContractType string

ContractType Indicates call or put

const (
	CONTRACTTYPE_P ContractType = "P"
	CONTRACTTYPE_C ContractType = "C"
)

List of ContractType

func NewContractTypeFromValue

func NewContractTypeFromValue(v string) (*ContractType, error)

NewContractTypeFromValue returns a pointer to a valid ContractType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ContractType) IsValid

func (v ContractType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ContractType) Ptr

func (v ContractType) Ptr() *ContractType

Ptr returns reference to ContractType value

func (*ContractType) UnmarshalJSON

func (v *ContractType) UnmarshalJSON(src []byte) error

type DivFreq

type DivFreq int32

DivFreq Dividend frequency 1 – once a year or annually 2 – 2x a year or semi-annualy 3 - 3x a year (ex. ARCO, EBRPF) 4 – 4x a year or quarterly 6 - 6x per yr or every other month 11 – 11x a year (ex. FBND, FCOR) 12 – 12x a year or monthly

const (
	DIVFREQ__1  DivFreq = 1
	DIVFREQ__2  DivFreq = 2
	DIVFREQ__3  DivFreq = 3
	DIVFREQ__4  DivFreq = 4
	DIVFREQ__6  DivFreq = 6
	DIVFREQ__11 DivFreq = 11
	DIVFREQ__12 DivFreq = 12
)

List of DivFreq

func NewDivFreqFromValue

func NewDivFreqFromValue(v int32) (*DivFreq, error)

NewDivFreqFromValue returns a pointer to a valid DivFreq for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DivFreq) IsValid

func (v DivFreq) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DivFreq) Ptr

func (v DivFreq) Ptr() *DivFreq

Ptr returns reference to DivFreq value

func (*DivFreq) UnmarshalJSON

func (v *DivFreq) UnmarshalJSON(src []byte) error

type EquityAssetSubType

type EquityAssetSubType string

EquityAssetSubType Asset Sub Type (only there if applicable)

const (
	EQUITYASSETSUBTYPE_COE  EquityAssetSubType = "COE"
	EQUITYASSETSUBTYPE_PRF  EquityAssetSubType = "PRF"
	EQUITYASSETSUBTYPE_ADR  EquityAssetSubType = "ADR"
	EQUITYASSETSUBTYPE_GDR  EquityAssetSubType = "GDR"
	EQUITYASSETSUBTYPE_CEF  EquityAssetSubType = "CEF"
	EQUITYASSETSUBTYPE_ETF  EquityAssetSubType = "ETF"
	EQUITYASSETSUBTYPE_ETN  EquityAssetSubType = "ETN"
	EQUITYASSETSUBTYPE_UIT  EquityAssetSubType = "UIT"
	EQUITYASSETSUBTYPE_WAR  EquityAssetSubType = "WAR"
	EQUITYASSETSUBTYPE_RGT  EquityAssetSubType = "RGT"
	EQUITYASSETSUBTYPE_NULL EquityAssetSubType = "null"
)

List of EquityAssetSubType

func NewEquityAssetSubTypeFromValue

func NewEquityAssetSubTypeFromValue(v string) (*EquityAssetSubType, error)

NewEquityAssetSubTypeFromValue returns a pointer to a valid EquityAssetSubType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (EquityAssetSubType) IsValid

func (v EquityAssetSubType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (EquityAssetSubType) Ptr

Ptr returns reference to EquityAssetSubType value

func (*EquityAssetSubType) UnmarshalJSON

func (v *EquityAssetSubType) UnmarshalJSON(src []byte) error

type EquityResponse

type EquityResponse struct {
	AssetMainType *AssetMainType             `json:"assetMainType,omitempty"`
	AssetSubType  NullableEquityAssetSubType `json:"assetSubType,omitempty"`
	// SSID of instrument
	Ssid *int64 `json:"ssid,omitempty"`
	// Symbol of instrument
	Symbol *string `json:"symbol,omitempty"`
	// is quote realtime
	Realtime    *bool             `json:"realtime,omitempty"`
	QuoteType   NullableQuoteType `json:"quoteType,omitempty"`
	Extended    *ExtendedMarket   `json:"extended,omitempty"`
	Fundamental *Fundamental      `json:"fundamental,omitempty"`
	Quote       *QuoteEquity      `json:"quote,omitempty"`
	Reference   *ReferenceEquity  `json:"reference,omitempty"`
	Regular     *RegularMarket    `json:"regular,omitempty"`
}

EquityResponse Quote info of Equity security

func NewEquityResponse

func NewEquityResponse() *EquityResponse

NewEquityResponse instantiates a new EquityResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEquityResponseWithDefaults

func NewEquityResponseWithDefaults() *EquityResponse

NewEquityResponseWithDefaults instantiates a new EquityResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EquityResponse) GetAssetMainType

func (o *EquityResponse) GetAssetMainType() AssetMainType

GetAssetMainType returns the AssetMainType field value if set, zero value otherwise.

func (*EquityResponse) GetAssetMainTypeOk

func (o *EquityResponse) GetAssetMainTypeOk() (*AssetMainType, bool)

GetAssetMainTypeOk returns a tuple with the AssetMainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EquityResponse) GetAssetSubType

func (o *EquityResponse) GetAssetSubType() EquityAssetSubType

GetAssetSubType returns the AssetSubType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EquityResponse) GetAssetSubTypeOk

func (o *EquityResponse) GetAssetSubTypeOk() (*EquityAssetSubType, bool)

GetAssetSubTypeOk returns a tuple with the AssetSubType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EquityResponse) GetExtended

func (o *EquityResponse) GetExtended() ExtendedMarket

GetExtended returns the Extended field value if set, zero value otherwise.

func (*EquityResponse) GetExtendedOk

func (o *EquityResponse) GetExtendedOk() (*ExtendedMarket, bool)

GetExtendedOk returns a tuple with the Extended field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EquityResponse) GetFundamental

func (o *EquityResponse) GetFundamental() Fundamental

GetFundamental returns the Fundamental field value if set, zero value otherwise.

func (*EquityResponse) GetFundamentalOk

func (o *EquityResponse) GetFundamentalOk() (*Fundamental, bool)

GetFundamentalOk returns a tuple with the Fundamental field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EquityResponse) GetQuote

func (o *EquityResponse) GetQuote() QuoteEquity

GetQuote returns the Quote field value if set, zero value otherwise.

func (*EquityResponse) GetQuoteOk

func (o *EquityResponse) GetQuoteOk() (*QuoteEquity, bool)

GetQuoteOk returns a tuple with the Quote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EquityResponse) GetQuoteType

func (o *EquityResponse) GetQuoteType() QuoteType

GetQuoteType returns the QuoteType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EquityResponse) GetQuoteTypeOk

func (o *EquityResponse) GetQuoteTypeOk() (*QuoteType, bool)

GetQuoteTypeOk returns a tuple with the QuoteType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EquityResponse) GetRealtime

func (o *EquityResponse) GetRealtime() bool

GetRealtime returns the Realtime field value if set, zero value otherwise.

func (*EquityResponse) GetRealtimeOk

func (o *EquityResponse) GetRealtimeOk() (*bool, bool)

GetRealtimeOk returns a tuple with the Realtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EquityResponse) GetReference

func (o *EquityResponse) GetReference() ReferenceEquity

GetReference returns the Reference field value if set, zero value otherwise.

func (*EquityResponse) GetReferenceOk

func (o *EquityResponse) GetReferenceOk() (*ReferenceEquity, bool)

GetReferenceOk returns a tuple with the Reference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EquityResponse) GetRegular

func (o *EquityResponse) GetRegular() RegularMarket

GetRegular returns the Regular field value if set, zero value otherwise.

func (*EquityResponse) GetRegularOk

func (o *EquityResponse) GetRegularOk() (*RegularMarket, bool)

GetRegularOk returns a tuple with the Regular field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EquityResponse) GetSsid

func (o *EquityResponse) GetSsid() int64

GetSsid returns the Ssid field value if set, zero value otherwise.

func (*EquityResponse) GetSsidOk

func (o *EquityResponse) GetSsidOk() (*int64, bool)

GetSsidOk returns a tuple with the Ssid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EquityResponse) GetSymbol

func (o *EquityResponse) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*EquityResponse) GetSymbolOk

func (o *EquityResponse) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EquityResponse) HasAssetMainType

func (o *EquityResponse) HasAssetMainType() bool

HasAssetMainType returns a boolean if a field has been set.

func (*EquityResponse) HasAssetSubType

func (o *EquityResponse) HasAssetSubType() bool

HasAssetSubType returns a boolean if a field has been set.

func (*EquityResponse) HasExtended

func (o *EquityResponse) HasExtended() bool

HasExtended returns a boolean if a field has been set.

func (*EquityResponse) HasFundamental

func (o *EquityResponse) HasFundamental() bool

HasFundamental returns a boolean if a field has been set.

func (*EquityResponse) HasQuote

func (o *EquityResponse) HasQuote() bool

HasQuote returns a boolean if a field has been set.

func (*EquityResponse) HasQuoteType

func (o *EquityResponse) HasQuoteType() bool

HasQuoteType returns a boolean if a field has been set.

func (*EquityResponse) HasRealtime

func (o *EquityResponse) HasRealtime() bool

HasRealtime returns a boolean if a field has been set.

func (*EquityResponse) HasReference

func (o *EquityResponse) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*EquityResponse) HasRegular

func (o *EquityResponse) HasRegular() bool

HasRegular returns a boolean if a field has been set.

func (*EquityResponse) HasSsid

func (o *EquityResponse) HasSsid() bool

HasSsid returns a boolean if a field has been set.

func (*EquityResponse) HasSymbol

func (o *EquityResponse) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (EquityResponse) MarshalJSON

func (o EquityResponse) MarshalJSON() ([]byte, error)

func (*EquityResponse) SetAssetMainType

func (o *EquityResponse) SetAssetMainType(v AssetMainType)

SetAssetMainType gets a reference to the given AssetMainType and assigns it to the AssetMainType field.

func (*EquityResponse) SetAssetSubType

func (o *EquityResponse) SetAssetSubType(v EquityAssetSubType)

SetAssetSubType gets a reference to the given NullableEquityAssetSubType and assigns it to the AssetSubType field.

func (*EquityResponse) SetAssetSubTypeNil

func (o *EquityResponse) SetAssetSubTypeNil()

SetAssetSubTypeNil sets the value for AssetSubType to be an explicit nil

func (*EquityResponse) SetExtended

func (o *EquityResponse) SetExtended(v ExtendedMarket)

SetExtended gets a reference to the given ExtendedMarket and assigns it to the Extended field.

func (*EquityResponse) SetFundamental

func (o *EquityResponse) SetFundamental(v Fundamental)

SetFundamental gets a reference to the given Fundamental and assigns it to the Fundamental field.

func (*EquityResponse) SetQuote

func (o *EquityResponse) SetQuote(v QuoteEquity)

SetQuote gets a reference to the given QuoteEquity and assigns it to the Quote field.

func (*EquityResponse) SetQuoteType

func (o *EquityResponse) SetQuoteType(v QuoteType)

SetQuoteType gets a reference to the given NullableQuoteType and assigns it to the QuoteType field.

func (*EquityResponse) SetQuoteTypeNil

func (o *EquityResponse) SetQuoteTypeNil()

SetQuoteTypeNil sets the value for QuoteType to be an explicit nil

func (*EquityResponse) SetRealtime

func (o *EquityResponse) SetRealtime(v bool)

SetRealtime gets a reference to the given bool and assigns it to the Realtime field.

func (*EquityResponse) SetReference

func (o *EquityResponse) SetReference(v ReferenceEquity)

SetReference gets a reference to the given ReferenceEquity and assigns it to the Reference field.

func (*EquityResponse) SetRegular

func (o *EquityResponse) SetRegular(v RegularMarket)

SetRegular gets a reference to the given RegularMarket and assigns it to the Regular field.

func (*EquityResponse) SetSsid

func (o *EquityResponse) SetSsid(v int64)

SetSsid gets a reference to the given int64 and assigns it to the Ssid field.

func (*EquityResponse) SetSymbol

func (o *EquityResponse) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (EquityResponse) ToMap

func (o EquityResponse) ToMap() (map[string]interface{}, error)

func (*EquityResponse) UnsetAssetSubType

func (o *EquityResponse) UnsetAssetSubType()

UnsetAssetSubType ensures that no value is present for AssetSubType, not even an explicit nil

func (*EquityResponse) UnsetQuoteType

func (o *EquityResponse) UnsetQuoteType()

UnsetQuoteType ensures that no value is present for QuoteType, not even an explicit nil

type Error

type Error struct {
	// Unique error id.
	Id *string `json:"id,omitempty"`
	// The HTTP status code .
	Status *string `json:"status,omitempty"`
	// Short error description.
	Title *string `json:"title,omitempty"`
	// Detailed error description.
	Detail *string      `json:"detail,omitempty"`
	Source *ErrorSource `json:"source,omitempty"`
}

Error struct for Error

func NewError

func NewError() *Error

NewError instantiates a new Error object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Error) GetDetail

func (o *Error) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*Error) GetDetailOk

func (o *Error) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetId

func (o *Error) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Error) GetIdOk

func (o *Error) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetSource

func (o *Error) GetSource() ErrorSource

GetSource returns the Source field value if set, zero value otherwise.

func (*Error) GetSourceOk

func (o *Error) GetSourceOk() (*ErrorSource, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetStatus

func (o *Error) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Error) GetStatusOk

func (o *Error) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetTitle

func (o *Error) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*Error) GetTitleOk

func (o *Error) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) HasDetail

func (o *Error) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*Error) HasId

func (o *Error) HasId() bool

HasId returns a boolean if a field has been set.

func (*Error) HasSource

func (o *Error) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*Error) HasStatus

func (o *Error) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Error) HasTitle

func (o *Error) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (Error) MarshalJSON

func (o Error) MarshalJSON() ([]byte, error)

func (*Error) SetDetail

func (o *Error) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*Error) SetId

func (o *Error) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Error) SetSource

func (o *Error) SetSource(v ErrorSource)

SetSource gets a reference to the given ErrorSource and assigns it to the Source field.

func (*Error) SetStatus

func (o *Error) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*Error) SetTitle

func (o *Error) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (Error) ToMap

func (o Error) ToMap() (map[string]interface{}, error)

type ErrorResponse

type ErrorResponse struct {
	Errors []Error `json:"errors,omitempty"`
}

ErrorResponse struct for ErrorResponse

func NewErrorResponse

func NewErrorResponse() *ErrorResponse

NewErrorResponse instantiates a new ErrorResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewErrorResponseWithDefaults

func NewErrorResponseWithDefaults() *ErrorResponse

NewErrorResponseWithDefaults instantiates a new ErrorResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ErrorResponse) GetErrors

func (o *ErrorResponse) GetErrors() []Error

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ErrorResponse) GetErrorsOk

func (o *ErrorResponse) GetErrorsOk() ([]Error, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorResponse) HasErrors

func (o *ErrorResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (ErrorResponse) MarshalJSON

func (o ErrorResponse) MarshalJSON() ([]byte, error)

func (*ErrorResponse) SetErrors

func (o *ErrorResponse) SetErrors(v []Error)

SetErrors gets a reference to the given []Error and assigns it to the Errors field.

func (ErrorResponse) ToMap

func (o ErrorResponse) ToMap() (map[string]interface{}, error)

type ErrorSource

type ErrorSource struct {
	// list of attributes which lead to this error message.
	Pointer []string `json:"pointer,omitempty"`
	// parameter name which lead to this error message.
	Parameter *string `json:"parameter,omitempty"`
	// header name which lead to this error message.
	Header *string `json:"header,omitempty"`
}

ErrorSource Who is responsible for triggering these errors.

func NewErrorSource

func NewErrorSource() *ErrorSource

NewErrorSource instantiates a new ErrorSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewErrorSourceWithDefaults

func NewErrorSourceWithDefaults() *ErrorSource

NewErrorSourceWithDefaults instantiates a new ErrorSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ErrorSource) GetHeader

func (o *ErrorSource) GetHeader() string

GetHeader returns the Header field value if set, zero value otherwise.

func (*ErrorSource) GetHeaderOk

func (o *ErrorSource) GetHeaderOk() (*string, bool)

GetHeaderOk returns a tuple with the Header field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorSource) GetParameter

func (o *ErrorSource) GetParameter() string

GetParameter returns the Parameter field value if set, zero value otherwise.

func (*ErrorSource) GetParameterOk

func (o *ErrorSource) GetParameterOk() (*string, bool)

GetParameterOk returns a tuple with the Parameter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorSource) GetPointer

func (o *ErrorSource) GetPointer() []string

GetPointer returns the Pointer field value if set, zero value otherwise.

func (*ErrorSource) GetPointerOk

func (o *ErrorSource) GetPointerOk() ([]string, bool)

GetPointerOk returns a tuple with the Pointer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorSource) HasHeader

func (o *ErrorSource) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (*ErrorSource) HasParameter

func (o *ErrorSource) HasParameter() bool

HasParameter returns a boolean if a field has been set.

func (*ErrorSource) HasPointer

func (o *ErrorSource) HasPointer() bool

HasPointer returns a boolean if a field has been set.

func (ErrorSource) MarshalJSON

func (o ErrorSource) MarshalJSON() ([]byte, error)

func (*ErrorSource) SetHeader

func (o *ErrorSource) SetHeader(v string)

SetHeader gets a reference to the given string and assigns it to the Header field.

func (*ErrorSource) SetParameter

func (o *ErrorSource) SetParameter(v string)

SetParameter gets a reference to the given string and assigns it to the Parameter field.

func (*ErrorSource) SetPointer

func (o *ErrorSource) SetPointer(v []string)

SetPointer gets a reference to the given []string and assigns it to the Pointer field.

func (ErrorSource) ToMap

func (o ErrorSource) ToMap() (map[string]interface{}, error)

type ExerciseType

type ExerciseType string

ExerciseType option contract exercise type America or European

const (
	EXERCISETYPE_A ExerciseType = "A"
	EXERCISETYPE_E ExerciseType = "E"
)

List of ExerciseType

func NewExerciseTypeFromValue

func NewExerciseTypeFromValue(v string) (*ExerciseType, error)

NewExerciseTypeFromValue returns a pointer to a valid ExerciseType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ExerciseType) IsValid

func (v ExerciseType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ExerciseType) Ptr

func (v ExerciseType) Ptr() *ExerciseType

Ptr returns reference to ExerciseType value

func (*ExerciseType) UnmarshalJSON

func (v *ExerciseType) UnmarshalJSON(src []byte) error

type Expiration

type Expiration struct {
	DaysToExpiration *int32          `json:"daysToExpiration,omitempty"`
	Expiration       *string         `json:"expiration,omitempty"`
	ExpirationType   *ExpirationType `json:"expirationType,omitempty"`
	Standard         *bool           `json:"standard,omitempty"`
	SettlementType   *SettlementType `json:"settlementType,omitempty"`
	OptionRoots      *string         `json:"optionRoots,omitempty"`
}

Expiration expiration type

func NewExpiration

func NewExpiration() *Expiration

NewExpiration instantiates a new Expiration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExpirationWithDefaults

func NewExpirationWithDefaults() *Expiration

NewExpirationWithDefaults instantiates a new Expiration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Expiration) GetDaysToExpiration

func (o *Expiration) GetDaysToExpiration() int32

GetDaysToExpiration returns the DaysToExpiration field value if set, zero value otherwise.

func (*Expiration) GetDaysToExpirationOk

func (o *Expiration) GetDaysToExpirationOk() (*int32, bool)

GetDaysToExpirationOk returns a tuple with the DaysToExpiration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Expiration) GetExpiration

func (o *Expiration) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*Expiration) GetExpirationOk

func (o *Expiration) GetExpirationOk() (*string, bool)

GetExpirationOk returns a tuple with the Expiration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Expiration) GetExpirationType

func (o *Expiration) GetExpirationType() ExpirationType

GetExpirationType returns the ExpirationType field value if set, zero value otherwise.

func (*Expiration) GetExpirationTypeOk

func (o *Expiration) GetExpirationTypeOk() (*ExpirationType, bool)

GetExpirationTypeOk returns a tuple with the ExpirationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Expiration) GetOptionRoots

func (o *Expiration) GetOptionRoots() string

GetOptionRoots returns the OptionRoots field value if set, zero value otherwise.

func (*Expiration) GetOptionRootsOk

func (o *Expiration) GetOptionRootsOk() (*string, bool)

GetOptionRootsOk returns a tuple with the OptionRoots field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Expiration) GetSettlementType

func (o *Expiration) GetSettlementType() SettlementType

GetSettlementType returns the SettlementType field value if set, zero value otherwise.

func (*Expiration) GetSettlementTypeOk

func (o *Expiration) GetSettlementTypeOk() (*SettlementType, bool)

GetSettlementTypeOk returns a tuple with the SettlementType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Expiration) GetStandard

func (o *Expiration) GetStandard() bool

GetStandard returns the Standard field value if set, zero value otherwise.

func (*Expiration) GetStandardOk

func (o *Expiration) GetStandardOk() (*bool, bool)

GetStandardOk returns a tuple with the Standard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Expiration) HasDaysToExpiration

func (o *Expiration) HasDaysToExpiration() bool

HasDaysToExpiration returns a boolean if a field has been set.

func (*Expiration) HasExpiration

func (o *Expiration) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*Expiration) HasExpirationType

func (o *Expiration) HasExpirationType() bool

HasExpirationType returns a boolean if a field has been set.

func (*Expiration) HasOptionRoots

func (o *Expiration) HasOptionRoots() bool

HasOptionRoots returns a boolean if a field has been set.

func (*Expiration) HasSettlementType

func (o *Expiration) HasSettlementType() bool

HasSettlementType returns a boolean if a field has been set.

func (*Expiration) HasStandard

func (o *Expiration) HasStandard() bool

HasStandard returns a boolean if a field has been set.

func (Expiration) MarshalJSON

func (o Expiration) MarshalJSON() ([]byte, error)

func (*Expiration) SetDaysToExpiration

func (o *Expiration) SetDaysToExpiration(v int32)

SetDaysToExpiration gets a reference to the given int32 and assigns it to the DaysToExpiration field.

func (*Expiration) SetExpiration

func (o *Expiration) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*Expiration) SetExpirationType

func (o *Expiration) SetExpirationType(v ExpirationType)

SetExpirationType gets a reference to the given ExpirationType and assigns it to the ExpirationType field.

func (*Expiration) SetOptionRoots

func (o *Expiration) SetOptionRoots(v string)

SetOptionRoots gets a reference to the given string and assigns it to the OptionRoots field.

func (*Expiration) SetSettlementType

func (o *Expiration) SetSettlementType(v SettlementType)

SetSettlementType gets a reference to the given SettlementType and assigns it to the SettlementType field.

func (*Expiration) SetStandard

func (o *Expiration) SetStandard(v bool)

SetStandard gets a reference to the given bool and assigns it to the Standard field.

func (Expiration) ToMap

func (o Expiration) ToMap() (map[string]interface{}, error)

type ExpirationChain

type ExpirationChain struct {
	Status         *string      `json:"status,omitempty"`
	ExpirationList []Expiration `json:"expirationList,omitempty"`
}

ExpirationChain struct for ExpirationChain

func NewExpirationChain

func NewExpirationChain() *ExpirationChain

NewExpirationChain instantiates a new ExpirationChain object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExpirationChainWithDefaults

func NewExpirationChainWithDefaults() *ExpirationChain

NewExpirationChainWithDefaults instantiates a new ExpirationChain object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExpirationChain) GetExpirationList

func (o *ExpirationChain) GetExpirationList() []Expiration

GetExpirationList returns the ExpirationList field value if set, zero value otherwise.

func (*ExpirationChain) GetExpirationListOk

func (o *ExpirationChain) GetExpirationListOk() ([]Expiration, bool)

GetExpirationListOk returns a tuple with the ExpirationList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpirationChain) GetStatus

func (o *ExpirationChain) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ExpirationChain) GetStatusOk

func (o *ExpirationChain) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpirationChain) HasExpirationList

func (o *ExpirationChain) HasExpirationList() bool

HasExpirationList returns a boolean if a field has been set.

func (*ExpirationChain) HasStatus

func (o *ExpirationChain) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ExpirationChain) MarshalJSON

func (o ExpirationChain) MarshalJSON() ([]byte, error)

func (*ExpirationChain) SetExpirationList

func (o *ExpirationChain) SetExpirationList(v []Expiration)

SetExpirationList gets a reference to the given []Expiration and assigns it to the ExpirationList field.

func (*ExpirationChain) SetStatus

func (o *ExpirationChain) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (ExpirationChain) ToMap

func (o ExpirationChain) ToMap() (map[string]interface{}, error)

type ExpirationType

type ExpirationType string

ExpirationType M for End Of Month Expiration Calendar Cycle. (To match the last business day of the month), Q for Quarterly expirations (last business day of the quarter month MAR/JUN/SEP/DEC), W for Weekly expiration (also called Friday Short Term Expirations) and S for Expires 3rd Friday of the month (also known as regular options).

const (
	EXPIRATIONTYPE_M ExpirationType = "M"
	EXPIRATIONTYPE_Q ExpirationType = "Q"
	EXPIRATIONTYPE_S ExpirationType = "S"
	EXPIRATIONTYPE_W ExpirationType = "W"
)

List of ExpirationType

func NewExpirationTypeFromValue

func NewExpirationTypeFromValue(v string) (*ExpirationType, error)

NewExpirationTypeFromValue returns a pointer to a valid ExpirationType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ExpirationType) IsValid

func (v ExpirationType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ExpirationType) Ptr

func (v ExpirationType) Ptr() *ExpirationType

Ptr returns reference to ExpirationType value

func (*ExpirationType) UnmarshalJSON

func (v *ExpirationType) UnmarshalJSON(src []byte) error

type ExtendedMarket

type ExtendedMarket struct {
	// Extended market ask price
	AskPrice *float64 `json:"askPrice,omitempty"`
	// Extended market ask size
	AskSize *int32 `json:"askSize,omitempty"`
	// Extended market bid price
	BidPrice *float64 `json:"bidPrice,omitempty"`
	// Extended market bid size
	BidSize *int32 `json:"bidSize,omitempty"`
	// Extended market last price
	LastPrice *float64 `json:"lastPrice,omitempty"`
	// Regular market last size
	LastSize *int32 `json:"lastSize,omitempty"`
	// mark price
	Mark *float64 `json:"mark,omitempty"`
	// Extended market quote time in milliseconds since Epoch
	QuoteTime *int64 `json:"quoteTime,omitempty"`
	// Total volume
	TotalVolume *float32 `json:"totalVolume,omitempty"`
	// Extended market trade time in milliseconds since Epoch
	TradeTime *int64 `json:"tradeTime,omitempty"`
}

ExtendedMarket Quote data for extended hours

func NewExtendedMarket

func NewExtendedMarket() *ExtendedMarket

NewExtendedMarket instantiates a new ExtendedMarket object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExtendedMarketWithDefaults

func NewExtendedMarketWithDefaults() *ExtendedMarket

NewExtendedMarketWithDefaults instantiates a new ExtendedMarket object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExtendedMarket) GetAskPrice

func (o *ExtendedMarket) GetAskPrice() float64

GetAskPrice returns the AskPrice field value if set, zero value otherwise.

func (*ExtendedMarket) GetAskPriceOk

func (o *ExtendedMarket) GetAskPriceOk() (*float64, bool)

GetAskPriceOk returns a tuple with the AskPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedMarket) GetAskSize

func (o *ExtendedMarket) GetAskSize() int32

GetAskSize returns the AskSize field value if set, zero value otherwise.

func (*ExtendedMarket) GetAskSizeOk

func (o *ExtendedMarket) GetAskSizeOk() (*int32, bool)

GetAskSizeOk returns a tuple with the AskSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedMarket) GetBidPrice

func (o *ExtendedMarket) GetBidPrice() float64

GetBidPrice returns the BidPrice field value if set, zero value otherwise.

func (*ExtendedMarket) GetBidPriceOk

func (o *ExtendedMarket) GetBidPriceOk() (*float64, bool)

GetBidPriceOk returns a tuple with the BidPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedMarket) GetBidSize

func (o *ExtendedMarket) GetBidSize() int32

GetBidSize returns the BidSize field value if set, zero value otherwise.

func (*ExtendedMarket) GetBidSizeOk

func (o *ExtendedMarket) GetBidSizeOk() (*int32, bool)

GetBidSizeOk returns a tuple with the BidSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedMarket) GetLastPrice

func (o *ExtendedMarket) GetLastPrice() float64

GetLastPrice returns the LastPrice field value if set, zero value otherwise.

func (*ExtendedMarket) GetLastPriceOk

func (o *ExtendedMarket) GetLastPriceOk() (*float64, bool)

GetLastPriceOk returns a tuple with the LastPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedMarket) GetLastSize

func (o *ExtendedMarket) GetLastSize() int32

GetLastSize returns the LastSize field value if set, zero value otherwise.

func (*ExtendedMarket) GetLastSizeOk

func (o *ExtendedMarket) GetLastSizeOk() (*int32, bool)

GetLastSizeOk returns a tuple with the LastSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedMarket) GetMark

func (o *ExtendedMarket) GetMark() float64

GetMark returns the Mark field value if set, zero value otherwise.

func (*ExtendedMarket) GetMarkOk

func (o *ExtendedMarket) GetMarkOk() (*float64, bool)

GetMarkOk returns a tuple with the Mark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedMarket) GetQuoteTime

func (o *ExtendedMarket) GetQuoteTime() int64

GetQuoteTime returns the QuoteTime field value if set, zero value otherwise.

func (*ExtendedMarket) GetQuoteTimeOk

func (o *ExtendedMarket) GetQuoteTimeOk() (*int64, bool)

GetQuoteTimeOk returns a tuple with the QuoteTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedMarket) GetTotalVolume

func (o *ExtendedMarket) GetTotalVolume() float32

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*ExtendedMarket) GetTotalVolumeOk

func (o *ExtendedMarket) GetTotalVolumeOk() (*float32, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedMarket) GetTradeTime

func (o *ExtendedMarket) GetTradeTime() int64

GetTradeTime returns the TradeTime field value if set, zero value otherwise.

func (*ExtendedMarket) GetTradeTimeOk

func (o *ExtendedMarket) GetTradeTimeOk() (*int64, bool)

GetTradeTimeOk returns a tuple with the TradeTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedMarket) HasAskPrice

func (o *ExtendedMarket) HasAskPrice() bool

HasAskPrice returns a boolean if a field has been set.

func (*ExtendedMarket) HasAskSize

func (o *ExtendedMarket) HasAskSize() bool

HasAskSize returns a boolean if a field has been set.

func (*ExtendedMarket) HasBidPrice

func (o *ExtendedMarket) HasBidPrice() bool

HasBidPrice returns a boolean if a field has been set.

func (*ExtendedMarket) HasBidSize

func (o *ExtendedMarket) HasBidSize() bool

HasBidSize returns a boolean if a field has been set.

func (*ExtendedMarket) HasLastPrice

func (o *ExtendedMarket) HasLastPrice() bool

HasLastPrice returns a boolean if a field has been set.

func (*ExtendedMarket) HasLastSize

func (o *ExtendedMarket) HasLastSize() bool

HasLastSize returns a boolean if a field has been set.

func (*ExtendedMarket) HasMark

func (o *ExtendedMarket) HasMark() bool

HasMark returns a boolean if a field has been set.

func (*ExtendedMarket) HasQuoteTime

func (o *ExtendedMarket) HasQuoteTime() bool

HasQuoteTime returns a boolean if a field has been set.

func (*ExtendedMarket) HasTotalVolume

func (o *ExtendedMarket) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*ExtendedMarket) HasTradeTime

func (o *ExtendedMarket) HasTradeTime() bool

HasTradeTime returns a boolean if a field has been set.

func (ExtendedMarket) MarshalJSON

func (o ExtendedMarket) MarshalJSON() ([]byte, error)

func (*ExtendedMarket) SetAskPrice

func (o *ExtendedMarket) SetAskPrice(v float64)

SetAskPrice gets a reference to the given float64 and assigns it to the AskPrice field.

func (*ExtendedMarket) SetAskSize

func (o *ExtendedMarket) SetAskSize(v int32)

SetAskSize gets a reference to the given int32 and assigns it to the AskSize field.

func (*ExtendedMarket) SetBidPrice

func (o *ExtendedMarket) SetBidPrice(v float64)

SetBidPrice gets a reference to the given float64 and assigns it to the BidPrice field.

func (*ExtendedMarket) SetBidSize

func (o *ExtendedMarket) SetBidSize(v int32)

SetBidSize gets a reference to the given int32 and assigns it to the BidSize field.

func (*ExtendedMarket) SetLastPrice

func (o *ExtendedMarket) SetLastPrice(v float64)

SetLastPrice gets a reference to the given float64 and assigns it to the LastPrice field.

func (*ExtendedMarket) SetLastSize

func (o *ExtendedMarket) SetLastSize(v int32)

SetLastSize gets a reference to the given int32 and assigns it to the LastSize field.

func (*ExtendedMarket) SetMark

func (o *ExtendedMarket) SetMark(v float64)

SetMark gets a reference to the given float64 and assigns it to the Mark field.

func (*ExtendedMarket) SetQuoteTime

func (o *ExtendedMarket) SetQuoteTime(v int64)

SetQuoteTime gets a reference to the given int64 and assigns it to the QuoteTime field.

func (*ExtendedMarket) SetTotalVolume

func (o *ExtendedMarket) SetTotalVolume(v float32)

SetTotalVolume gets a reference to the given float32 and assigns it to the TotalVolume field.

func (*ExtendedMarket) SetTradeTime

func (o *ExtendedMarket) SetTradeTime(v int64)

SetTradeTime gets a reference to the given int64 and assigns it to the TradeTime field.

func (ExtendedMarket) ToMap

func (o ExtendedMarket) ToMap() (map[string]interface{}, error)

type ForexResponse

type ForexResponse struct {
	AssetMainType *AssetMainType `json:"assetMainType,omitempty"`
	// SSID of instrument
	Ssid *int64 `json:"ssid,omitempty"`
	// Symbol of instrument
	Symbol *string `json:"symbol,omitempty"`
	// is quote realtime
	Realtime  *bool           `json:"realtime,omitempty"`
	Quote     *QuoteForex     `json:"quote,omitempty"`
	Reference *ReferenceForex `json:"reference,omitempty"`
}

ForexResponse Quote info of Forex security

func NewForexResponse

func NewForexResponse() *ForexResponse

NewForexResponse instantiates a new ForexResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewForexResponseWithDefaults

func NewForexResponseWithDefaults() *ForexResponse

NewForexResponseWithDefaults instantiates a new ForexResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ForexResponse) GetAssetMainType

func (o *ForexResponse) GetAssetMainType() AssetMainType

GetAssetMainType returns the AssetMainType field value if set, zero value otherwise.

func (*ForexResponse) GetAssetMainTypeOk

func (o *ForexResponse) GetAssetMainTypeOk() (*AssetMainType, bool)

GetAssetMainTypeOk returns a tuple with the AssetMainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForexResponse) GetQuote

func (o *ForexResponse) GetQuote() QuoteForex

GetQuote returns the Quote field value if set, zero value otherwise.

func (*ForexResponse) GetQuoteOk

func (o *ForexResponse) GetQuoteOk() (*QuoteForex, bool)

GetQuoteOk returns a tuple with the Quote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForexResponse) GetRealtime

func (o *ForexResponse) GetRealtime() bool

GetRealtime returns the Realtime field value if set, zero value otherwise.

func (*ForexResponse) GetRealtimeOk

func (o *ForexResponse) GetRealtimeOk() (*bool, bool)

GetRealtimeOk returns a tuple with the Realtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForexResponse) GetReference

func (o *ForexResponse) GetReference() ReferenceForex

GetReference returns the Reference field value if set, zero value otherwise.

func (*ForexResponse) GetReferenceOk

func (o *ForexResponse) GetReferenceOk() (*ReferenceForex, bool)

GetReferenceOk returns a tuple with the Reference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForexResponse) GetSsid

func (o *ForexResponse) GetSsid() int64

GetSsid returns the Ssid field value if set, zero value otherwise.

func (*ForexResponse) GetSsidOk

func (o *ForexResponse) GetSsidOk() (*int64, bool)

GetSsidOk returns a tuple with the Ssid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForexResponse) GetSymbol

func (o *ForexResponse) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*ForexResponse) GetSymbolOk

func (o *ForexResponse) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ForexResponse) HasAssetMainType

func (o *ForexResponse) HasAssetMainType() bool

HasAssetMainType returns a boolean if a field has been set.

func (*ForexResponse) HasQuote

func (o *ForexResponse) HasQuote() bool

HasQuote returns a boolean if a field has been set.

func (*ForexResponse) HasRealtime

func (o *ForexResponse) HasRealtime() bool

HasRealtime returns a boolean if a field has been set.

func (*ForexResponse) HasReference

func (o *ForexResponse) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*ForexResponse) HasSsid

func (o *ForexResponse) HasSsid() bool

HasSsid returns a boolean if a field has been set.

func (*ForexResponse) HasSymbol

func (o *ForexResponse) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (ForexResponse) MarshalJSON

func (o ForexResponse) MarshalJSON() ([]byte, error)

func (*ForexResponse) SetAssetMainType

func (o *ForexResponse) SetAssetMainType(v AssetMainType)

SetAssetMainType gets a reference to the given AssetMainType and assigns it to the AssetMainType field.

func (*ForexResponse) SetQuote

func (o *ForexResponse) SetQuote(v QuoteForex)

SetQuote gets a reference to the given QuoteForex and assigns it to the Quote field.

func (*ForexResponse) SetRealtime

func (o *ForexResponse) SetRealtime(v bool)

SetRealtime gets a reference to the given bool and assigns it to the Realtime field.

func (*ForexResponse) SetReference

func (o *ForexResponse) SetReference(v ReferenceForex)

SetReference gets a reference to the given ReferenceForex and assigns it to the Reference field.

func (*ForexResponse) SetSsid

func (o *ForexResponse) SetSsid(v int64)

SetSsid gets a reference to the given int64 and assigns it to the Ssid field.

func (*ForexResponse) SetSymbol

func (o *ForexResponse) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (ForexResponse) ToMap

func (o ForexResponse) ToMap() (map[string]interface{}, error)

type FundStrategy

type FundStrategy string

FundStrategy FundStrategy \"A\" - Active \"L\" - Leveraged \"P\" - Passive \"Q\" - Quantitative \"S\" - Short

const (
	FUNDSTRATEGY_A    FundStrategy = "A"
	FUNDSTRATEGY_L    FundStrategy = "L"
	FUNDSTRATEGY_P    FundStrategy = "P"
	FUNDSTRATEGY_Q    FundStrategy = "Q"
	FUNDSTRATEGY_S    FundStrategy = "S"
	FUNDSTRATEGY_NULL FundStrategy = "null"
)

List of FundStrategy

func NewFundStrategyFromValue

func NewFundStrategyFromValue(v string) (*FundStrategy, error)

NewFundStrategyFromValue returns a pointer to a valid FundStrategy for the value passed as argument, or an error if the value passed is not allowed by the enum

func (FundStrategy) IsValid

func (v FundStrategy) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (FundStrategy) Ptr

func (v FundStrategy) Ptr() *FundStrategy

Ptr returns reference to FundStrategy value

func (*FundStrategy) UnmarshalJSON

func (v *FundStrategy) UnmarshalJSON(src []byte) error

type Fundamental

type Fundamental struct {
	// Average 10 day volume
	Avg10DaysVolume *float64 `json:"avg10DaysVolume,omitempty"`
	// Average 1 day volume
	Avg1YearVolume *float64 `json:"avg1YearVolume,omitempty"`
	// Declaration date in yyyy-mm-ddThh:mm:ssZ
	DeclarationDate *time.Time `json:"declarationDate,omitempty"`
	// Dividend Amount
	DivAmount *float64 `json:"divAmount,omitempty"`
	// Dividend date in yyyy-mm-ddThh:mm:ssZ
	DivExDate *string         `json:"divExDate,omitempty"`
	DivFreq   NullableDivFreq `json:"divFreq,omitempty"`
	// Dividend Pay Amount
	DivPayAmount *float64 `json:"divPayAmount,omitempty"`
	// Dividend pay date in yyyy-mm-ddThh:mm:ssZ
	DivPayDate *time.Time `json:"divPayDate,omitempty"`
	// Dividend yield
	DivYield *float64 `json:"divYield,omitempty"`
	// Earnings per Share
	Eps *float64 `json:"eps,omitempty"`
	// Fund Leverage Factor + > 0 <-
	FundLeverageFactor *float64             `json:"fundLeverageFactor,omitempty"`
	FundStrategy       NullableFundStrategy `json:"fundStrategy,omitempty"`
	// Next Dividend date
	NextDivExDate *time.Time `json:"nextDivExDate,omitempty"`
	// Next Dividend pay date
	NextDivPayDate *time.Time `json:"nextDivPayDate,omitempty"`
	// P/E Ratio
	PeRatio *float64 `json:"peRatio,omitempty"`
}

Fundamental Fundamentals of a security

func NewFundamental

func NewFundamental() *Fundamental

NewFundamental instantiates a new Fundamental object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFundamentalWithDefaults

func NewFundamentalWithDefaults() *Fundamental

NewFundamentalWithDefaults instantiates a new Fundamental object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Fundamental) GetAvg10DaysVolume

func (o *Fundamental) GetAvg10DaysVolume() float64

GetAvg10DaysVolume returns the Avg10DaysVolume field value if set, zero value otherwise.

func (*Fundamental) GetAvg10DaysVolumeOk

func (o *Fundamental) GetAvg10DaysVolumeOk() (*float64, bool)

GetAvg10DaysVolumeOk returns a tuple with the Avg10DaysVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) GetAvg1YearVolume

func (o *Fundamental) GetAvg1YearVolume() float64

GetAvg1YearVolume returns the Avg1YearVolume field value if set, zero value otherwise.

func (*Fundamental) GetAvg1YearVolumeOk

func (o *Fundamental) GetAvg1YearVolumeOk() (*float64, bool)

GetAvg1YearVolumeOk returns a tuple with the Avg1YearVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) GetDeclarationDate

func (o *Fundamental) GetDeclarationDate() time.Time

GetDeclarationDate returns the DeclarationDate field value if set, zero value otherwise.

func (*Fundamental) GetDeclarationDateOk

func (o *Fundamental) GetDeclarationDateOk() (*time.Time, bool)

GetDeclarationDateOk returns a tuple with the DeclarationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) GetDivAmount

func (o *Fundamental) GetDivAmount() float64

GetDivAmount returns the DivAmount field value if set, zero value otherwise.

func (*Fundamental) GetDivAmountOk

func (o *Fundamental) GetDivAmountOk() (*float64, bool)

GetDivAmountOk returns a tuple with the DivAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) GetDivExDate

func (o *Fundamental) GetDivExDate() string

GetDivExDate returns the DivExDate field value if set, zero value otherwise.

func (*Fundamental) GetDivExDateOk

func (o *Fundamental) GetDivExDateOk() (*string, bool)

GetDivExDateOk returns a tuple with the DivExDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) GetDivFreq

func (o *Fundamental) GetDivFreq() DivFreq

GetDivFreq returns the DivFreq field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Fundamental) GetDivFreqOk

func (o *Fundamental) GetDivFreqOk() (*DivFreq, bool)

GetDivFreqOk returns a tuple with the DivFreq field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Fundamental) GetDivPayAmount

func (o *Fundamental) GetDivPayAmount() float64

GetDivPayAmount returns the DivPayAmount field value if set, zero value otherwise.

func (*Fundamental) GetDivPayAmountOk

func (o *Fundamental) GetDivPayAmountOk() (*float64, bool)

GetDivPayAmountOk returns a tuple with the DivPayAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) GetDivPayDate

func (o *Fundamental) GetDivPayDate() time.Time

GetDivPayDate returns the DivPayDate field value if set, zero value otherwise.

func (*Fundamental) GetDivPayDateOk

func (o *Fundamental) GetDivPayDateOk() (*time.Time, bool)

GetDivPayDateOk returns a tuple with the DivPayDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) GetDivYield

func (o *Fundamental) GetDivYield() float64

GetDivYield returns the DivYield field value if set, zero value otherwise.

func (*Fundamental) GetDivYieldOk

func (o *Fundamental) GetDivYieldOk() (*float64, bool)

GetDivYieldOk returns a tuple with the DivYield field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) GetEps

func (o *Fundamental) GetEps() float64

GetEps returns the Eps field value if set, zero value otherwise.

func (*Fundamental) GetEpsOk

func (o *Fundamental) GetEpsOk() (*float64, bool)

GetEpsOk returns a tuple with the Eps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) GetFundLeverageFactor

func (o *Fundamental) GetFundLeverageFactor() float64

GetFundLeverageFactor returns the FundLeverageFactor field value if set, zero value otherwise.

func (*Fundamental) GetFundLeverageFactorOk

func (o *Fundamental) GetFundLeverageFactorOk() (*float64, bool)

GetFundLeverageFactorOk returns a tuple with the FundLeverageFactor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) GetFundStrategy

func (o *Fundamental) GetFundStrategy() FundStrategy

GetFundStrategy returns the FundStrategy field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Fundamental) GetFundStrategyOk

func (o *Fundamental) GetFundStrategyOk() (*FundStrategy, bool)

GetFundStrategyOk returns a tuple with the FundStrategy field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Fundamental) GetNextDivExDate

func (o *Fundamental) GetNextDivExDate() time.Time

GetNextDivExDate returns the NextDivExDate field value if set, zero value otherwise.

func (*Fundamental) GetNextDivExDateOk

func (o *Fundamental) GetNextDivExDateOk() (*time.Time, bool)

GetNextDivExDateOk returns a tuple with the NextDivExDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) GetNextDivPayDate

func (o *Fundamental) GetNextDivPayDate() time.Time

GetNextDivPayDate returns the NextDivPayDate field value if set, zero value otherwise.

func (*Fundamental) GetNextDivPayDateOk

func (o *Fundamental) GetNextDivPayDateOk() (*time.Time, bool)

GetNextDivPayDateOk returns a tuple with the NextDivPayDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) GetPeRatio

func (o *Fundamental) GetPeRatio() float64

GetPeRatio returns the PeRatio field value if set, zero value otherwise.

func (*Fundamental) GetPeRatioOk

func (o *Fundamental) GetPeRatioOk() (*float64, bool)

GetPeRatioOk returns a tuple with the PeRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Fundamental) HasAvg10DaysVolume

func (o *Fundamental) HasAvg10DaysVolume() bool

HasAvg10DaysVolume returns a boolean if a field has been set.

func (*Fundamental) HasAvg1YearVolume

func (o *Fundamental) HasAvg1YearVolume() bool

HasAvg1YearVolume returns a boolean if a field has been set.

func (*Fundamental) HasDeclarationDate

func (o *Fundamental) HasDeclarationDate() bool

HasDeclarationDate returns a boolean if a field has been set.

func (*Fundamental) HasDivAmount

func (o *Fundamental) HasDivAmount() bool

HasDivAmount returns a boolean if a field has been set.

func (*Fundamental) HasDivExDate

func (o *Fundamental) HasDivExDate() bool

HasDivExDate returns a boolean if a field has been set.

func (*Fundamental) HasDivFreq

func (o *Fundamental) HasDivFreq() bool

HasDivFreq returns a boolean if a field has been set.

func (*Fundamental) HasDivPayAmount

func (o *Fundamental) HasDivPayAmount() bool

HasDivPayAmount returns a boolean if a field has been set.

func (*Fundamental) HasDivPayDate

func (o *Fundamental) HasDivPayDate() bool

HasDivPayDate returns a boolean if a field has been set.

func (*Fundamental) HasDivYield

func (o *Fundamental) HasDivYield() bool

HasDivYield returns a boolean if a field has been set.

func (*Fundamental) HasEps

func (o *Fundamental) HasEps() bool

HasEps returns a boolean if a field has been set.

func (*Fundamental) HasFundLeverageFactor

func (o *Fundamental) HasFundLeverageFactor() bool

HasFundLeverageFactor returns a boolean if a field has been set.

func (*Fundamental) HasFundStrategy

func (o *Fundamental) HasFundStrategy() bool

HasFundStrategy returns a boolean if a field has been set.

func (*Fundamental) HasNextDivExDate

func (o *Fundamental) HasNextDivExDate() bool

HasNextDivExDate returns a boolean if a field has been set.

func (*Fundamental) HasNextDivPayDate

func (o *Fundamental) HasNextDivPayDate() bool

HasNextDivPayDate returns a boolean if a field has been set.

func (*Fundamental) HasPeRatio

func (o *Fundamental) HasPeRatio() bool

HasPeRatio returns a boolean if a field has been set.

func (Fundamental) MarshalJSON

func (o Fundamental) MarshalJSON() ([]byte, error)

func (*Fundamental) SetAvg10DaysVolume

func (o *Fundamental) SetAvg10DaysVolume(v float64)

SetAvg10DaysVolume gets a reference to the given float64 and assigns it to the Avg10DaysVolume field.

func (*Fundamental) SetAvg1YearVolume

func (o *Fundamental) SetAvg1YearVolume(v float64)

SetAvg1YearVolume gets a reference to the given float64 and assigns it to the Avg1YearVolume field.

func (*Fundamental) SetDeclarationDate

func (o *Fundamental) SetDeclarationDate(v time.Time)

SetDeclarationDate gets a reference to the given time.Time and assigns it to the DeclarationDate field.

func (*Fundamental) SetDivAmount

func (o *Fundamental) SetDivAmount(v float64)

SetDivAmount gets a reference to the given float64 and assigns it to the DivAmount field.

func (*Fundamental) SetDivExDate

func (o *Fundamental) SetDivExDate(v string)

SetDivExDate gets a reference to the given string and assigns it to the DivExDate field.

func (*Fundamental) SetDivFreq

func (o *Fundamental) SetDivFreq(v DivFreq)

SetDivFreq gets a reference to the given NullableDivFreq and assigns it to the DivFreq field.

func (*Fundamental) SetDivFreqNil

func (o *Fundamental) SetDivFreqNil()

SetDivFreqNil sets the value for DivFreq to be an explicit nil

func (*Fundamental) SetDivPayAmount

func (o *Fundamental) SetDivPayAmount(v float64)

SetDivPayAmount gets a reference to the given float64 and assigns it to the DivPayAmount field.

func (*Fundamental) SetDivPayDate

func (o *Fundamental) SetDivPayDate(v time.Time)

SetDivPayDate gets a reference to the given time.Time and assigns it to the DivPayDate field.

func (*Fundamental) SetDivYield

func (o *Fundamental) SetDivYield(v float64)

SetDivYield gets a reference to the given float64 and assigns it to the DivYield field.

func (*Fundamental) SetEps

func (o *Fundamental) SetEps(v float64)

SetEps gets a reference to the given float64 and assigns it to the Eps field.

func (*Fundamental) SetFundLeverageFactor

func (o *Fundamental) SetFundLeverageFactor(v float64)

SetFundLeverageFactor gets a reference to the given float64 and assigns it to the FundLeverageFactor field.

func (*Fundamental) SetFundStrategy

func (o *Fundamental) SetFundStrategy(v FundStrategy)

SetFundStrategy gets a reference to the given NullableFundStrategy and assigns it to the FundStrategy field.

func (*Fundamental) SetFundStrategyNil

func (o *Fundamental) SetFundStrategyNil()

SetFundStrategyNil sets the value for FundStrategy to be an explicit nil

func (*Fundamental) SetNextDivExDate

func (o *Fundamental) SetNextDivExDate(v time.Time)

SetNextDivExDate gets a reference to the given time.Time and assigns it to the NextDivExDate field.

func (*Fundamental) SetNextDivPayDate

func (o *Fundamental) SetNextDivPayDate(v time.Time)

SetNextDivPayDate gets a reference to the given time.Time and assigns it to the NextDivPayDate field.

func (*Fundamental) SetPeRatio

func (o *Fundamental) SetPeRatio(v float64)

SetPeRatio gets a reference to the given float64 and assigns it to the PeRatio field.

func (Fundamental) ToMap

func (o Fundamental) ToMap() (map[string]interface{}, error)

func (*Fundamental) UnsetDivFreq

func (o *Fundamental) UnsetDivFreq()

UnsetDivFreq ensures that no value is present for DivFreq, not even an explicit nil

func (*Fundamental) UnsetFundStrategy

func (o *Fundamental) UnsetFundStrategy()

UnsetFundStrategy ensures that no value is present for FundStrategy, not even an explicit nil

type FundamentalInst

type FundamentalInst struct {
	Symbol              *string  `json:"symbol,omitempty"`
	High52              *float64 `json:"high52,omitempty"`
	Low52               *float64 `json:"low52,omitempty"`
	DividendAmount      *float64 `json:"dividendAmount,omitempty"`
	DividendYield       *float64 `json:"dividendYield,omitempty"`
	DividendDate        *string  `json:"dividendDate,omitempty"`
	PeRatio             *float64 `json:"peRatio,omitempty"`
	PegRatio            *float64 `json:"pegRatio,omitempty"`
	PbRatio             *float64 `json:"pbRatio,omitempty"`
	PrRatio             *float64 `json:"prRatio,omitempty"`
	PcfRatio            *float64 `json:"pcfRatio,omitempty"`
	GrossMarginTTM      *float64 `json:"grossMarginTTM,omitempty"`
	GrossMarginMRQ      *float64 `json:"grossMarginMRQ,omitempty"`
	NetProfitMarginTTM  *float64 `json:"netProfitMarginTTM,omitempty"`
	NetProfitMarginMRQ  *float64 `json:"netProfitMarginMRQ,omitempty"`
	OperatingMarginTTM  *float64 `json:"operatingMarginTTM,omitempty"`
	OperatingMarginMRQ  *float64 `json:"operatingMarginMRQ,omitempty"`
	ReturnOnEquity      *float64 `json:"returnOnEquity,omitempty"`
	ReturnOnAssets      *float64 `json:"returnOnAssets,omitempty"`
	ReturnOnInvestment  *float64 `json:"returnOnInvestment,omitempty"`
	QuickRatio          *float64 `json:"quickRatio,omitempty"`
	CurrentRatio        *float64 `json:"currentRatio,omitempty"`
	InterestCoverage    *float64 `json:"interestCoverage,omitempty"`
	TotalDebtToCapital  *float64 `json:"totalDebtToCapital,omitempty"`
	LtDebtToEquity      *float64 `json:"ltDebtToEquity,omitempty"`
	TotalDebtToEquity   *float64 `json:"totalDebtToEquity,omitempty"`
	EpsTTM              *float64 `json:"epsTTM,omitempty"`
	EpsChangePercentTTM *float64 `json:"epsChangePercentTTM,omitempty"`
	EpsChangeYear       *float64 `json:"epsChangeYear,omitempty"`
	EpsChange           *float64 `json:"epsChange,omitempty"`
	RevChangeYear       *float64 `json:"revChangeYear,omitempty"`
	RevChangeTTM        *float64 `json:"revChangeTTM,omitempty"`
	RevChangeIn         *float64 `json:"revChangeIn,omitempty"`
	SharesOutstanding   *float64 `json:"sharesOutstanding,omitempty"`
	MarketCapFloat      *float64 `json:"marketCapFloat,omitempty"`
	MarketCap           *float64 `json:"marketCap,omitempty"`
	BookValuePerShare   *float64 `json:"bookValuePerShare,omitempty"`
	ShortIntToFloat     *float64 `json:"shortIntToFloat,omitempty"`
	ShortIntDayToCover  *float64 `json:"shortIntDayToCover,omitempty"`
	DivGrowthRate3Year  *float64 `json:"divGrowthRate3Year,omitempty"`
	DividendPayAmount   *float64 `json:"dividendPayAmount,omitempty"`
	DividendPayDate     *string  `json:"dividendPayDate,omitempty"`
	Beta                *float64 `json:"beta,omitempty"`
	Vol1DayAvg          *float64 `json:"vol1DayAvg,omitempty"`
	Vol10DayAvg         *float64 `json:"vol10DayAvg,omitempty"`
	Vol3MonthAvg        *float64 `json:"vol3MonthAvg,omitempty"`
	Avg10DaysVolume     *int64   `json:"avg10DaysVolume,omitempty"`
	Avg1DayVolume       *int64   `json:"avg1DayVolume,omitempty"`
	Avg3MonthVolume     *int64   `json:"avg3MonthVolume,omitempty"`
	DeclarationDate     *string  `json:"declarationDate,omitempty"`
	DividendFreq        *int32   `json:"dividendFreq,omitempty"`
	Eps                 *float64 `json:"eps,omitempty"`
	CorpactionDate      *string  `json:"corpactionDate,omitempty"`
	DtnVolume           *int64   `json:"dtnVolume,omitempty"`
	NextDividendPayDate *string  `json:"nextDividendPayDate,omitempty"`
	NextDividendDate    *string  `json:"nextDividendDate,omitempty"`
	FundLeverageFactor  *float64 `json:"fundLeverageFactor,omitempty"`
	FundStrategy        *string  `json:"fundStrategy,omitempty"`
}

FundamentalInst struct for FundamentalInst

func NewFundamentalInst

func NewFundamentalInst() *FundamentalInst

NewFundamentalInst instantiates a new FundamentalInst object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFundamentalInstWithDefaults

func NewFundamentalInstWithDefaults() *FundamentalInst

NewFundamentalInstWithDefaults instantiates a new FundamentalInst object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FundamentalInst) GetAvg10DaysVolume

func (o *FundamentalInst) GetAvg10DaysVolume() int64

GetAvg10DaysVolume returns the Avg10DaysVolume field value if set, zero value otherwise.

func (*FundamentalInst) GetAvg10DaysVolumeOk

func (o *FundamentalInst) GetAvg10DaysVolumeOk() (*int64, bool)

GetAvg10DaysVolumeOk returns a tuple with the Avg10DaysVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetAvg1DayVolume

func (o *FundamentalInst) GetAvg1DayVolume() int64

GetAvg1DayVolume returns the Avg1DayVolume field value if set, zero value otherwise.

func (*FundamentalInst) GetAvg1DayVolumeOk

func (o *FundamentalInst) GetAvg1DayVolumeOk() (*int64, bool)

GetAvg1DayVolumeOk returns a tuple with the Avg1DayVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetAvg3MonthVolume

func (o *FundamentalInst) GetAvg3MonthVolume() int64

GetAvg3MonthVolume returns the Avg3MonthVolume field value if set, zero value otherwise.

func (*FundamentalInst) GetAvg3MonthVolumeOk

func (o *FundamentalInst) GetAvg3MonthVolumeOk() (*int64, bool)

GetAvg3MonthVolumeOk returns a tuple with the Avg3MonthVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetBeta

func (o *FundamentalInst) GetBeta() float64

GetBeta returns the Beta field value if set, zero value otherwise.

func (*FundamentalInst) GetBetaOk

func (o *FundamentalInst) GetBetaOk() (*float64, bool)

GetBetaOk returns a tuple with the Beta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetBookValuePerShare

func (o *FundamentalInst) GetBookValuePerShare() float64

GetBookValuePerShare returns the BookValuePerShare field value if set, zero value otherwise.

func (*FundamentalInst) GetBookValuePerShareOk

func (o *FundamentalInst) GetBookValuePerShareOk() (*float64, bool)

GetBookValuePerShareOk returns a tuple with the BookValuePerShare field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetCorpactionDate

func (o *FundamentalInst) GetCorpactionDate() string

GetCorpactionDate returns the CorpactionDate field value if set, zero value otherwise.

func (*FundamentalInst) GetCorpactionDateOk

func (o *FundamentalInst) GetCorpactionDateOk() (*string, bool)

GetCorpactionDateOk returns a tuple with the CorpactionDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetCurrentRatio

func (o *FundamentalInst) GetCurrentRatio() float64

GetCurrentRatio returns the CurrentRatio field value if set, zero value otherwise.

func (*FundamentalInst) GetCurrentRatioOk

func (o *FundamentalInst) GetCurrentRatioOk() (*float64, bool)

GetCurrentRatioOk returns a tuple with the CurrentRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetDeclarationDate

func (o *FundamentalInst) GetDeclarationDate() string

GetDeclarationDate returns the DeclarationDate field value if set, zero value otherwise.

func (*FundamentalInst) GetDeclarationDateOk

func (o *FundamentalInst) GetDeclarationDateOk() (*string, bool)

GetDeclarationDateOk returns a tuple with the DeclarationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetDivGrowthRate3Year

func (o *FundamentalInst) GetDivGrowthRate3Year() float64

GetDivGrowthRate3Year returns the DivGrowthRate3Year field value if set, zero value otherwise.

func (*FundamentalInst) GetDivGrowthRate3YearOk

func (o *FundamentalInst) GetDivGrowthRate3YearOk() (*float64, bool)

GetDivGrowthRate3YearOk returns a tuple with the DivGrowthRate3Year field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetDividendAmount

func (o *FundamentalInst) GetDividendAmount() float64

GetDividendAmount returns the DividendAmount field value if set, zero value otherwise.

func (*FundamentalInst) GetDividendAmountOk

func (o *FundamentalInst) GetDividendAmountOk() (*float64, bool)

GetDividendAmountOk returns a tuple with the DividendAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetDividendDate

func (o *FundamentalInst) GetDividendDate() string

GetDividendDate returns the DividendDate field value if set, zero value otherwise.

func (*FundamentalInst) GetDividendDateOk

func (o *FundamentalInst) GetDividendDateOk() (*string, bool)

GetDividendDateOk returns a tuple with the DividendDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetDividendFreq

func (o *FundamentalInst) GetDividendFreq() int32

GetDividendFreq returns the DividendFreq field value if set, zero value otherwise.

func (*FundamentalInst) GetDividendFreqOk

func (o *FundamentalInst) GetDividendFreqOk() (*int32, bool)

GetDividendFreqOk returns a tuple with the DividendFreq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetDividendPayAmount

func (o *FundamentalInst) GetDividendPayAmount() float64

GetDividendPayAmount returns the DividendPayAmount field value if set, zero value otherwise.

func (*FundamentalInst) GetDividendPayAmountOk

func (o *FundamentalInst) GetDividendPayAmountOk() (*float64, bool)

GetDividendPayAmountOk returns a tuple with the DividendPayAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetDividendPayDate

func (o *FundamentalInst) GetDividendPayDate() string

GetDividendPayDate returns the DividendPayDate field value if set, zero value otherwise.

func (*FundamentalInst) GetDividendPayDateOk

func (o *FundamentalInst) GetDividendPayDateOk() (*string, bool)

GetDividendPayDateOk returns a tuple with the DividendPayDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetDividendYield

func (o *FundamentalInst) GetDividendYield() float64

GetDividendYield returns the DividendYield field value if set, zero value otherwise.

func (*FundamentalInst) GetDividendYieldOk

func (o *FundamentalInst) GetDividendYieldOk() (*float64, bool)

GetDividendYieldOk returns a tuple with the DividendYield field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetDtnVolume

func (o *FundamentalInst) GetDtnVolume() int64

GetDtnVolume returns the DtnVolume field value if set, zero value otherwise.

func (*FundamentalInst) GetDtnVolumeOk

func (o *FundamentalInst) GetDtnVolumeOk() (*int64, bool)

GetDtnVolumeOk returns a tuple with the DtnVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetEps

func (o *FundamentalInst) GetEps() float64

GetEps returns the Eps field value if set, zero value otherwise.

func (*FundamentalInst) GetEpsChange

func (o *FundamentalInst) GetEpsChange() float64

GetEpsChange returns the EpsChange field value if set, zero value otherwise.

func (*FundamentalInst) GetEpsChangeOk

func (o *FundamentalInst) GetEpsChangeOk() (*float64, bool)

GetEpsChangeOk returns a tuple with the EpsChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetEpsChangePercentTTM

func (o *FundamentalInst) GetEpsChangePercentTTM() float64

GetEpsChangePercentTTM returns the EpsChangePercentTTM field value if set, zero value otherwise.

func (*FundamentalInst) GetEpsChangePercentTTMOk

func (o *FundamentalInst) GetEpsChangePercentTTMOk() (*float64, bool)

GetEpsChangePercentTTMOk returns a tuple with the EpsChangePercentTTM field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetEpsChangeYear

func (o *FundamentalInst) GetEpsChangeYear() float64

GetEpsChangeYear returns the EpsChangeYear field value if set, zero value otherwise.

func (*FundamentalInst) GetEpsChangeYearOk

func (o *FundamentalInst) GetEpsChangeYearOk() (*float64, bool)

GetEpsChangeYearOk returns a tuple with the EpsChangeYear field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetEpsOk

func (o *FundamentalInst) GetEpsOk() (*float64, bool)

GetEpsOk returns a tuple with the Eps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetEpsTTM

func (o *FundamentalInst) GetEpsTTM() float64

GetEpsTTM returns the EpsTTM field value if set, zero value otherwise.

func (*FundamentalInst) GetEpsTTMOk

func (o *FundamentalInst) GetEpsTTMOk() (*float64, bool)

GetEpsTTMOk returns a tuple with the EpsTTM field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetFundLeverageFactor

func (o *FundamentalInst) GetFundLeverageFactor() float64

GetFundLeverageFactor returns the FundLeverageFactor field value if set, zero value otherwise.

func (*FundamentalInst) GetFundLeverageFactorOk

func (o *FundamentalInst) GetFundLeverageFactorOk() (*float64, bool)

GetFundLeverageFactorOk returns a tuple with the FundLeverageFactor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetFundStrategy

func (o *FundamentalInst) GetFundStrategy() string

GetFundStrategy returns the FundStrategy field value if set, zero value otherwise.

func (*FundamentalInst) GetFundStrategyOk

func (o *FundamentalInst) GetFundStrategyOk() (*string, bool)

GetFundStrategyOk returns a tuple with the FundStrategy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetGrossMarginMRQ

func (o *FundamentalInst) GetGrossMarginMRQ() float64

GetGrossMarginMRQ returns the GrossMarginMRQ field value if set, zero value otherwise.

func (*FundamentalInst) GetGrossMarginMRQOk

func (o *FundamentalInst) GetGrossMarginMRQOk() (*float64, bool)

GetGrossMarginMRQOk returns a tuple with the GrossMarginMRQ field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetGrossMarginTTM

func (o *FundamentalInst) GetGrossMarginTTM() float64

GetGrossMarginTTM returns the GrossMarginTTM field value if set, zero value otherwise.

func (*FundamentalInst) GetGrossMarginTTMOk

func (o *FundamentalInst) GetGrossMarginTTMOk() (*float64, bool)

GetGrossMarginTTMOk returns a tuple with the GrossMarginTTM field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetHigh52

func (o *FundamentalInst) GetHigh52() float64

GetHigh52 returns the High52 field value if set, zero value otherwise.

func (*FundamentalInst) GetHigh52Ok

func (o *FundamentalInst) GetHigh52Ok() (*float64, bool)

GetHigh52Ok returns a tuple with the High52 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetInterestCoverage

func (o *FundamentalInst) GetInterestCoverage() float64

GetInterestCoverage returns the InterestCoverage field value if set, zero value otherwise.

func (*FundamentalInst) GetInterestCoverageOk

func (o *FundamentalInst) GetInterestCoverageOk() (*float64, bool)

GetInterestCoverageOk returns a tuple with the InterestCoverage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetLow52

func (o *FundamentalInst) GetLow52() float64

GetLow52 returns the Low52 field value if set, zero value otherwise.

func (*FundamentalInst) GetLow52Ok

func (o *FundamentalInst) GetLow52Ok() (*float64, bool)

GetLow52Ok returns a tuple with the Low52 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetLtDebtToEquity

func (o *FundamentalInst) GetLtDebtToEquity() float64

GetLtDebtToEquity returns the LtDebtToEquity field value if set, zero value otherwise.

func (*FundamentalInst) GetLtDebtToEquityOk

func (o *FundamentalInst) GetLtDebtToEquityOk() (*float64, bool)

GetLtDebtToEquityOk returns a tuple with the LtDebtToEquity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetMarketCap

func (o *FundamentalInst) GetMarketCap() float64

GetMarketCap returns the MarketCap field value if set, zero value otherwise.

func (*FundamentalInst) GetMarketCapFloat

func (o *FundamentalInst) GetMarketCapFloat() float64

GetMarketCapFloat returns the MarketCapFloat field value if set, zero value otherwise.

func (*FundamentalInst) GetMarketCapFloatOk

func (o *FundamentalInst) GetMarketCapFloatOk() (*float64, bool)

GetMarketCapFloatOk returns a tuple with the MarketCapFloat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetMarketCapOk

func (o *FundamentalInst) GetMarketCapOk() (*float64, bool)

GetMarketCapOk returns a tuple with the MarketCap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetNetProfitMarginMRQ

func (o *FundamentalInst) GetNetProfitMarginMRQ() float64

GetNetProfitMarginMRQ returns the NetProfitMarginMRQ field value if set, zero value otherwise.

func (*FundamentalInst) GetNetProfitMarginMRQOk

func (o *FundamentalInst) GetNetProfitMarginMRQOk() (*float64, bool)

GetNetProfitMarginMRQOk returns a tuple with the NetProfitMarginMRQ field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetNetProfitMarginTTM

func (o *FundamentalInst) GetNetProfitMarginTTM() float64

GetNetProfitMarginTTM returns the NetProfitMarginTTM field value if set, zero value otherwise.

func (*FundamentalInst) GetNetProfitMarginTTMOk

func (o *FundamentalInst) GetNetProfitMarginTTMOk() (*float64, bool)

GetNetProfitMarginTTMOk returns a tuple with the NetProfitMarginTTM field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetNextDividendDate

func (o *FundamentalInst) GetNextDividendDate() string

GetNextDividendDate returns the NextDividendDate field value if set, zero value otherwise.

func (*FundamentalInst) GetNextDividendDateOk

func (o *FundamentalInst) GetNextDividendDateOk() (*string, bool)

GetNextDividendDateOk returns a tuple with the NextDividendDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetNextDividendPayDate

func (o *FundamentalInst) GetNextDividendPayDate() string

GetNextDividendPayDate returns the NextDividendPayDate field value if set, zero value otherwise.

func (*FundamentalInst) GetNextDividendPayDateOk

func (o *FundamentalInst) GetNextDividendPayDateOk() (*string, bool)

GetNextDividendPayDateOk returns a tuple with the NextDividendPayDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetOperatingMarginMRQ

func (o *FundamentalInst) GetOperatingMarginMRQ() float64

GetOperatingMarginMRQ returns the OperatingMarginMRQ field value if set, zero value otherwise.

func (*FundamentalInst) GetOperatingMarginMRQOk

func (o *FundamentalInst) GetOperatingMarginMRQOk() (*float64, bool)

GetOperatingMarginMRQOk returns a tuple with the OperatingMarginMRQ field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetOperatingMarginTTM

func (o *FundamentalInst) GetOperatingMarginTTM() float64

GetOperatingMarginTTM returns the OperatingMarginTTM field value if set, zero value otherwise.

func (*FundamentalInst) GetOperatingMarginTTMOk

func (o *FundamentalInst) GetOperatingMarginTTMOk() (*float64, bool)

GetOperatingMarginTTMOk returns a tuple with the OperatingMarginTTM field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetPbRatio

func (o *FundamentalInst) GetPbRatio() float64

GetPbRatio returns the PbRatio field value if set, zero value otherwise.

func (*FundamentalInst) GetPbRatioOk

func (o *FundamentalInst) GetPbRatioOk() (*float64, bool)

GetPbRatioOk returns a tuple with the PbRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetPcfRatio

func (o *FundamentalInst) GetPcfRatio() float64

GetPcfRatio returns the PcfRatio field value if set, zero value otherwise.

func (*FundamentalInst) GetPcfRatioOk

func (o *FundamentalInst) GetPcfRatioOk() (*float64, bool)

GetPcfRatioOk returns a tuple with the PcfRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetPeRatio

func (o *FundamentalInst) GetPeRatio() float64

GetPeRatio returns the PeRatio field value if set, zero value otherwise.

func (*FundamentalInst) GetPeRatioOk

func (o *FundamentalInst) GetPeRatioOk() (*float64, bool)

GetPeRatioOk returns a tuple with the PeRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetPegRatio

func (o *FundamentalInst) GetPegRatio() float64

GetPegRatio returns the PegRatio field value if set, zero value otherwise.

func (*FundamentalInst) GetPegRatioOk

func (o *FundamentalInst) GetPegRatioOk() (*float64, bool)

GetPegRatioOk returns a tuple with the PegRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetPrRatio

func (o *FundamentalInst) GetPrRatio() float64

GetPrRatio returns the PrRatio field value if set, zero value otherwise.

func (*FundamentalInst) GetPrRatioOk

func (o *FundamentalInst) GetPrRatioOk() (*float64, bool)

GetPrRatioOk returns a tuple with the PrRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetQuickRatio

func (o *FundamentalInst) GetQuickRatio() float64

GetQuickRatio returns the QuickRatio field value if set, zero value otherwise.

func (*FundamentalInst) GetQuickRatioOk

func (o *FundamentalInst) GetQuickRatioOk() (*float64, bool)

GetQuickRatioOk returns a tuple with the QuickRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetReturnOnAssets

func (o *FundamentalInst) GetReturnOnAssets() float64

GetReturnOnAssets returns the ReturnOnAssets field value if set, zero value otherwise.

func (*FundamentalInst) GetReturnOnAssetsOk

func (o *FundamentalInst) GetReturnOnAssetsOk() (*float64, bool)

GetReturnOnAssetsOk returns a tuple with the ReturnOnAssets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetReturnOnEquity

func (o *FundamentalInst) GetReturnOnEquity() float64

GetReturnOnEquity returns the ReturnOnEquity field value if set, zero value otherwise.

func (*FundamentalInst) GetReturnOnEquityOk

func (o *FundamentalInst) GetReturnOnEquityOk() (*float64, bool)

GetReturnOnEquityOk returns a tuple with the ReturnOnEquity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetReturnOnInvestment

func (o *FundamentalInst) GetReturnOnInvestment() float64

GetReturnOnInvestment returns the ReturnOnInvestment field value if set, zero value otherwise.

func (*FundamentalInst) GetReturnOnInvestmentOk

func (o *FundamentalInst) GetReturnOnInvestmentOk() (*float64, bool)

GetReturnOnInvestmentOk returns a tuple with the ReturnOnInvestment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetRevChangeIn

func (o *FundamentalInst) GetRevChangeIn() float64

GetRevChangeIn returns the RevChangeIn field value if set, zero value otherwise.

func (*FundamentalInst) GetRevChangeInOk

func (o *FundamentalInst) GetRevChangeInOk() (*float64, bool)

GetRevChangeInOk returns a tuple with the RevChangeIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetRevChangeTTM

func (o *FundamentalInst) GetRevChangeTTM() float64

GetRevChangeTTM returns the RevChangeTTM field value if set, zero value otherwise.

func (*FundamentalInst) GetRevChangeTTMOk

func (o *FundamentalInst) GetRevChangeTTMOk() (*float64, bool)

GetRevChangeTTMOk returns a tuple with the RevChangeTTM field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetRevChangeYear

func (o *FundamentalInst) GetRevChangeYear() float64

GetRevChangeYear returns the RevChangeYear field value if set, zero value otherwise.

func (*FundamentalInst) GetRevChangeYearOk

func (o *FundamentalInst) GetRevChangeYearOk() (*float64, bool)

GetRevChangeYearOk returns a tuple with the RevChangeYear field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetSharesOutstanding

func (o *FundamentalInst) GetSharesOutstanding() float64

GetSharesOutstanding returns the SharesOutstanding field value if set, zero value otherwise.

func (*FundamentalInst) GetSharesOutstandingOk

func (o *FundamentalInst) GetSharesOutstandingOk() (*float64, bool)

GetSharesOutstandingOk returns a tuple with the SharesOutstanding field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetShortIntDayToCover

func (o *FundamentalInst) GetShortIntDayToCover() float64

GetShortIntDayToCover returns the ShortIntDayToCover field value if set, zero value otherwise.

func (*FundamentalInst) GetShortIntDayToCoverOk

func (o *FundamentalInst) GetShortIntDayToCoverOk() (*float64, bool)

GetShortIntDayToCoverOk returns a tuple with the ShortIntDayToCover field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetShortIntToFloat

func (o *FundamentalInst) GetShortIntToFloat() float64

GetShortIntToFloat returns the ShortIntToFloat field value if set, zero value otherwise.

func (*FundamentalInst) GetShortIntToFloatOk

func (o *FundamentalInst) GetShortIntToFloatOk() (*float64, bool)

GetShortIntToFloatOk returns a tuple with the ShortIntToFloat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetSymbol

func (o *FundamentalInst) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*FundamentalInst) GetSymbolOk

func (o *FundamentalInst) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetTotalDebtToCapital

func (o *FundamentalInst) GetTotalDebtToCapital() float64

GetTotalDebtToCapital returns the TotalDebtToCapital field value if set, zero value otherwise.

func (*FundamentalInst) GetTotalDebtToCapitalOk

func (o *FundamentalInst) GetTotalDebtToCapitalOk() (*float64, bool)

GetTotalDebtToCapitalOk returns a tuple with the TotalDebtToCapital field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetTotalDebtToEquity

func (o *FundamentalInst) GetTotalDebtToEquity() float64

GetTotalDebtToEquity returns the TotalDebtToEquity field value if set, zero value otherwise.

func (*FundamentalInst) GetTotalDebtToEquityOk

func (o *FundamentalInst) GetTotalDebtToEquityOk() (*float64, bool)

GetTotalDebtToEquityOk returns a tuple with the TotalDebtToEquity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetVol10DayAvg

func (o *FundamentalInst) GetVol10DayAvg() float64

GetVol10DayAvg returns the Vol10DayAvg field value if set, zero value otherwise.

func (*FundamentalInst) GetVol10DayAvgOk

func (o *FundamentalInst) GetVol10DayAvgOk() (*float64, bool)

GetVol10DayAvgOk returns a tuple with the Vol10DayAvg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetVol1DayAvg

func (o *FundamentalInst) GetVol1DayAvg() float64

GetVol1DayAvg returns the Vol1DayAvg field value if set, zero value otherwise.

func (*FundamentalInst) GetVol1DayAvgOk

func (o *FundamentalInst) GetVol1DayAvgOk() (*float64, bool)

GetVol1DayAvgOk returns a tuple with the Vol1DayAvg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) GetVol3MonthAvg

func (o *FundamentalInst) GetVol3MonthAvg() float64

GetVol3MonthAvg returns the Vol3MonthAvg field value if set, zero value otherwise.

func (*FundamentalInst) GetVol3MonthAvgOk

func (o *FundamentalInst) GetVol3MonthAvgOk() (*float64, bool)

GetVol3MonthAvgOk returns a tuple with the Vol3MonthAvg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FundamentalInst) HasAvg10DaysVolume

func (o *FundamentalInst) HasAvg10DaysVolume() bool

HasAvg10DaysVolume returns a boolean if a field has been set.

func (*FundamentalInst) HasAvg1DayVolume

func (o *FundamentalInst) HasAvg1DayVolume() bool

HasAvg1DayVolume returns a boolean if a field has been set.

func (*FundamentalInst) HasAvg3MonthVolume

func (o *FundamentalInst) HasAvg3MonthVolume() bool

HasAvg3MonthVolume returns a boolean if a field has been set.

func (*FundamentalInst) HasBeta

func (o *FundamentalInst) HasBeta() bool

HasBeta returns a boolean if a field has been set.

func (*FundamentalInst) HasBookValuePerShare

func (o *FundamentalInst) HasBookValuePerShare() bool

HasBookValuePerShare returns a boolean if a field has been set.

func (*FundamentalInst) HasCorpactionDate

func (o *FundamentalInst) HasCorpactionDate() bool

HasCorpactionDate returns a boolean if a field has been set.

func (*FundamentalInst) HasCurrentRatio

func (o *FundamentalInst) HasCurrentRatio() bool

HasCurrentRatio returns a boolean if a field has been set.

func (*FundamentalInst) HasDeclarationDate

func (o *FundamentalInst) HasDeclarationDate() bool

HasDeclarationDate returns a boolean if a field has been set.

func (*FundamentalInst) HasDivGrowthRate3Year

func (o *FundamentalInst) HasDivGrowthRate3Year() bool

HasDivGrowthRate3Year returns a boolean if a field has been set.

func (*FundamentalInst) HasDividendAmount

func (o *FundamentalInst) HasDividendAmount() bool

HasDividendAmount returns a boolean if a field has been set.

func (*FundamentalInst) HasDividendDate

func (o *FundamentalInst) HasDividendDate() bool

HasDividendDate returns a boolean if a field has been set.

func (*FundamentalInst) HasDividendFreq

func (o *FundamentalInst) HasDividendFreq() bool

HasDividendFreq returns a boolean if a field has been set.

func (*FundamentalInst) HasDividendPayAmount

func (o *FundamentalInst) HasDividendPayAmount() bool

HasDividendPayAmount returns a boolean if a field has been set.

func (*FundamentalInst) HasDividendPayDate

func (o *FundamentalInst) HasDividendPayDate() bool

HasDividendPayDate returns a boolean if a field has been set.

func (*FundamentalInst) HasDividendYield

func (o *FundamentalInst) HasDividendYield() bool

HasDividendYield returns a boolean if a field has been set.

func (*FundamentalInst) HasDtnVolume

func (o *FundamentalInst) HasDtnVolume() bool

HasDtnVolume returns a boolean if a field has been set.

func (*FundamentalInst) HasEps

func (o *FundamentalInst) HasEps() bool

HasEps returns a boolean if a field has been set.

func (*FundamentalInst) HasEpsChange

func (o *FundamentalInst) HasEpsChange() bool

HasEpsChange returns a boolean if a field has been set.

func (*FundamentalInst) HasEpsChangePercentTTM

func (o *FundamentalInst) HasEpsChangePercentTTM() bool

HasEpsChangePercentTTM returns a boolean if a field has been set.

func (*FundamentalInst) HasEpsChangeYear

func (o *FundamentalInst) HasEpsChangeYear() bool

HasEpsChangeYear returns a boolean if a field has been set.

func (*FundamentalInst) HasEpsTTM

func (o *FundamentalInst) HasEpsTTM() bool

HasEpsTTM returns a boolean if a field has been set.

func (*FundamentalInst) HasFundLeverageFactor

func (o *FundamentalInst) HasFundLeverageFactor() bool

HasFundLeverageFactor returns a boolean if a field has been set.

func (*FundamentalInst) HasFundStrategy

func (o *FundamentalInst) HasFundStrategy() bool

HasFundStrategy returns a boolean if a field has been set.

func (*FundamentalInst) HasGrossMarginMRQ

func (o *FundamentalInst) HasGrossMarginMRQ() bool

HasGrossMarginMRQ returns a boolean if a field has been set.

func (*FundamentalInst) HasGrossMarginTTM

func (o *FundamentalInst) HasGrossMarginTTM() bool

HasGrossMarginTTM returns a boolean if a field has been set.

func (*FundamentalInst) HasHigh52

func (o *FundamentalInst) HasHigh52() bool

HasHigh52 returns a boolean if a field has been set.

func (*FundamentalInst) HasInterestCoverage

func (o *FundamentalInst) HasInterestCoverage() bool

HasInterestCoverage returns a boolean if a field has been set.

func (*FundamentalInst) HasLow52

func (o *FundamentalInst) HasLow52() bool

HasLow52 returns a boolean if a field has been set.

func (*FundamentalInst) HasLtDebtToEquity

func (o *FundamentalInst) HasLtDebtToEquity() bool

HasLtDebtToEquity returns a boolean if a field has been set.

func (*FundamentalInst) HasMarketCap

func (o *FundamentalInst) HasMarketCap() bool

HasMarketCap returns a boolean if a field has been set.

func (*FundamentalInst) HasMarketCapFloat

func (o *FundamentalInst) HasMarketCapFloat() bool

HasMarketCapFloat returns a boolean if a field has been set.

func (*FundamentalInst) HasNetProfitMarginMRQ

func (o *FundamentalInst) HasNetProfitMarginMRQ() bool

HasNetProfitMarginMRQ returns a boolean if a field has been set.

func (*FundamentalInst) HasNetProfitMarginTTM

func (o *FundamentalInst) HasNetProfitMarginTTM() bool

HasNetProfitMarginTTM returns a boolean if a field has been set.

func (*FundamentalInst) HasNextDividendDate

func (o *FundamentalInst) HasNextDividendDate() bool

HasNextDividendDate returns a boolean if a field has been set.

func (*FundamentalInst) HasNextDividendPayDate

func (o *FundamentalInst) HasNextDividendPayDate() bool

HasNextDividendPayDate returns a boolean if a field has been set.

func (*FundamentalInst) HasOperatingMarginMRQ

func (o *FundamentalInst) HasOperatingMarginMRQ() bool

HasOperatingMarginMRQ returns a boolean if a field has been set.

func (*FundamentalInst) HasOperatingMarginTTM

func (o *FundamentalInst) HasOperatingMarginTTM() bool

HasOperatingMarginTTM returns a boolean if a field has been set.

func (*FundamentalInst) HasPbRatio

func (o *FundamentalInst) HasPbRatio() bool

HasPbRatio returns a boolean if a field has been set.

func (*FundamentalInst) HasPcfRatio

func (o *FundamentalInst) HasPcfRatio() bool

HasPcfRatio returns a boolean if a field has been set.

func (*FundamentalInst) HasPeRatio

func (o *FundamentalInst) HasPeRatio() bool

HasPeRatio returns a boolean if a field has been set.

func (*FundamentalInst) HasPegRatio

func (o *FundamentalInst) HasPegRatio() bool

HasPegRatio returns a boolean if a field has been set.

func (*FundamentalInst) HasPrRatio

func (o *FundamentalInst) HasPrRatio() bool

HasPrRatio returns a boolean if a field has been set.

func (*FundamentalInst) HasQuickRatio

func (o *FundamentalInst) HasQuickRatio() bool

HasQuickRatio returns a boolean if a field has been set.

func (*FundamentalInst) HasReturnOnAssets

func (o *FundamentalInst) HasReturnOnAssets() bool

HasReturnOnAssets returns a boolean if a field has been set.

func (*FundamentalInst) HasReturnOnEquity

func (o *FundamentalInst) HasReturnOnEquity() bool

HasReturnOnEquity returns a boolean if a field has been set.

func (*FundamentalInst) HasReturnOnInvestment

func (o *FundamentalInst) HasReturnOnInvestment() bool

HasReturnOnInvestment returns a boolean if a field has been set.

func (*FundamentalInst) HasRevChangeIn

func (o *FundamentalInst) HasRevChangeIn() bool

HasRevChangeIn returns a boolean if a field has been set.

func (*FundamentalInst) HasRevChangeTTM

func (o *FundamentalInst) HasRevChangeTTM() bool

HasRevChangeTTM returns a boolean if a field has been set.

func (*FundamentalInst) HasRevChangeYear

func (o *FundamentalInst) HasRevChangeYear() bool

HasRevChangeYear returns a boolean if a field has been set.

func (*FundamentalInst) HasSharesOutstanding

func (o *FundamentalInst) HasSharesOutstanding() bool

HasSharesOutstanding returns a boolean if a field has been set.

func (*FundamentalInst) HasShortIntDayToCover

func (o *FundamentalInst) HasShortIntDayToCover() bool

HasShortIntDayToCover returns a boolean if a field has been set.

func (*FundamentalInst) HasShortIntToFloat

func (o *FundamentalInst) HasShortIntToFloat() bool

HasShortIntToFloat returns a boolean if a field has been set.

func (*FundamentalInst) HasSymbol

func (o *FundamentalInst) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*FundamentalInst) HasTotalDebtToCapital

func (o *FundamentalInst) HasTotalDebtToCapital() bool

HasTotalDebtToCapital returns a boolean if a field has been set.

func (*FundamentalInst) HasTotalDebtToEquity

func (o *FundamentalInst) HasTotalDebtToEquity() bool

HasTotalDebtToEquity returns a boolean if a field has been set.

func (*FundamentalInst) HasVol10DayAvg

func (o *FundamentalInst) HasVol10DayAvg() bool

HasVol10DayAvg returns a boolean if a field has been set.

func (*FundamentalInst) HasVol1DayAvg

func (o *FundamentalInst) HasVol1DayAvg() bool

HasVol1DayAvg returns a boolean if a field has been set.

func (*FundamentalInst) HasVol3MonthAvg

func (o *FundamentalInst) HasVol3MonthAvg() bool

HasVol3MonthAvg returns a boolean if a field has been set.

func (FundamentalInst) MarshalJSON

func (o FundamentalInst) MarshalJSON() ([]byte, error)

func (*FundamentalInst) SetAvg10DaysVolume

func (o *FundamentalInst) SetAvg10DaysVolume(v int64)

SetAvg10DaysVolume gets a reference to the given int64 and assigns it to the Avg10DaysVolume field.

func (*FundamentalInst) SetAvg1DayVolume

func (o *FundamentalInst) SetAvg1DayVolume(v int64)

SetAvg1DayVolume gets a reference to the given int64 and assigns it to the Avg1DayVolume field.

func (*FundamentalInst) SetAvg3MonthVolume

func (o *FundamentalInst) SetAvg3MonthVolume(v int64)

SetAvg3MonthVolume gets a reference to the given int64 and assigns it to the Avg3MonthVolume field.

func (*FundamentalInst) SetBeta

func (o *FundamentalInst) SetBeta(v float64)

SetBeta gets a reference to the given float64 and assigns it to the Beta field.

func (*FundamentalInst) SetBookValuePerShare

func (o *FundamentalInst) SetBookValuePerShare(v float64)

SetBookValuePerShare gets a reference to the given float64 and assigns it to the BookValuePerShare field.

func (*FundamentalInst) SetCorpactionDate

func (o *FundamentalInst) SetCorpactionDate(v string)

SetCorpactionDate gets a reference to the given string and assigns it to the CorpactionDate field.

func (*FundamentalInst) SetCurrentRatio

func (o *FundamentalInst) SetCurrentRatio(v float64)

SetCurrentRatio gets a reference to the given float64 and assigns it to the CurrentRatio field.

func (*FundamentalInst) SetDeclarationDate

func (o *FundamentalInst) SetDeclarationDate(v string)

SetDeclarationDate gets a reference to the given string and assigns it to the DeclarationDate field.

func (*FundamentalInst) SetDivGrowthRate3Year

func (o *FundamentalInst) SetDivGrowthRate3Year(v float64)

SetDivGrowthRate3Year gets a reference to the given float64 and assigns it to the DivGrowthRate3Year field.

func (*FundamentalInst) SetDividendAmount

func (o *FundamentalInst) SetDividendAmount(v float64)

SetDividendAmount gets a reference to the given float64 and assigns it to the DividendAmount field.

func (*FundamentalInst) SetDividendDate

func (o *FundamentalInst) SetDividendDate(v string)

SetDividendDate gets a reference to the given string and assigns it to the DividendDate field.

func (*FundamentalInst) SetDividendFreq

func (o *FundamentalInst) SetDividendFreq(v int32)

SetDividendFreq gets a reference to the given int32 and assigns it to the DividendFreq field.

func (*FundamentalInst) SetDividendPayAmount

func (o *FundamentalInst) SetDividendPayAmount(v float64)

SetDividendPayAmount gets a reference to the given float64 and assigns it to the DividendPayAmount field.

func (*FundamentalInst) SetDividendPayDate

func (o *FundamentalInst) SetDividendPayDate(v string)

SetDividendPayDate gets a reference to the given string and assigns it to the DividendPayDate field.

func (*FundamentalInst) SetDividendYield

func (o *FundamentalInst) SetDividendYield(v float64)

SetDividendYield gets a reference to the given float64 and assigns it to the DividendYield field.

func (*FundamentalInst) SetDtnVolume

func (o *FundamentalInst) SetDtnVolume(v int64)

SetDtnVolume gets a reference to the given int64 and assigns it to the DtnVolume field.

func (*FundamentalInst) SetEps

func (o *FundamentalInst) SetEps(v float64)

SetEps gets a reference to the given float64 and assigns it to the Eps field.

func (*FundamentalInst) SetEpsChange

func (o *FundamentalInst) SetEpsChange(v float64)

SetEpsChange gets a reference to the given float64 and assigns it to the EpsChange field.

func (*FundamentalInst) SetEpsChangePercentTTM

func (o *FundamentalInst) SetEpsChangePercentTTM(v float64)

SetEpsChangePercentTTM gets a reference to the given float64 and assigns it to the EpsChangePercentTTM field.

func (*FundamentalInst) SetEpsChangeYear

func (o *FundamentalInst) SetEpsChangeYear(v float64)

SetEpsChangeYear gets a reference to the given float64 and assigns it to the EpsChangeYear field.

func (*FundamentalInst) SetEpsTTM

func (o *FundamentalInst) SetEpsTTM(v float64)

SetEpsTTM gets a reference to the given float64 and assigns it to the EpsTTM field.

func (*FundamentalInst) SetFundLeverageFactor

func (o *FundamentalInst) SetFundLeverageFactor(v float64)

SetFundLeverageFactor gets a reference to the given float64 and assigns it to the FundLeverageFactor field.

func (*FundamentalInst) SetFundStrategy

func (o *FundamentalInst) SetFundStrategy(v string)

SetFundStrategy gets a reference to the given string and assigns it to the FundStrategy field.

func (*FundamentalInst) SetGrossMarginMRQ

func (o *FundamentalInst) SetGrossMarginMRQ(v float64)

SetGrossMarginMRQ gets a reference to the given float64 and assigns it to the GrossMarginMRQ field.

func (*FundamentalInst) SetGrossMarginTTM

func (o *FundamentalInst) SetGrossMarginTTM(v float64)

SetGrossMarginTTM gets a reference to the given float64 and assigns it to the GrossMarginTTM field.

func (*FundamentalInst) SetHigh52

func (o *FundamentalInst) SetHigh52(v float64)

SetHigh52 gets a reference to the given float64 and assigns it to the High52 field.

func (*FundamentalInst) SetInterestCoverage

func (o *FundamentalInst) SetInterestCoverage(v float64)

SetInterestCoverage gets a reference to the given float64 and assigns it to the InterestCoverage field.

func (*FundamentalInst) SetLow52

func (o *FundamentalInst) SetLow52(v float64)

SetLow52 gets a reference to the given float64 and assigns it to the Low52 field.

func (*FundamentalInst) SetLtDebtToEquity

func (o *FundamentalInst) SetLtDebtToEquity(v float64)

SetLtDebtToEquity gets a reference to the given float64 and assigns it to the LtDebtToEquity field.

func (*FundamentalInst) SetMarketCap

func (o *FundamentalInst) SetMarketCap(v float64)

SetMarketCap gets a reference to the given float64 and assigns it to the MarketCap field.

func (*FundamentalInst) SetMarketCapFloat

func (o *FundamentalInst) SetMarketCapFloat(v float64)

SetMarketCapFloat gets a reference to the given float64 and assigns it to the MarketCapFloat field.

func (*FundamentalInst) SetNetProfitMarginMRQ

func (o *FundamentalInst) SetNetProfitMarginMRQ(v float64)

SetNetProfitMarginMRQ gets a reference to the given float64 and assigns it to the NetProfitMarginMRQ field.

func (*FundamentalInst) SetNetProfitMarginTTM

func (o *FundamentalInst) SetNetProfitMarginTTM(v float64)

SetNetProfitMarginTTM gets a reference to the given float64 and assigns it to the NetProfitMarginTTM field.

func (*FundamentalInst) SetNextDividendDate

func (o *FundamentalInst) SetNextDividendDate(v string)

SetNextDividendDate gets a reference to the given string and assigns it to the NextDividendDate field.

func (*FundamentalInst) SetNextDividendPayDate

func (o *FundamentalInst) SetNextDividendPayDate(v string)

SetNextDividendPayDate gets a reference to the given string and assigns it to the NextDividendPayDate field.

func (*FundamentalInst) SetOperatingMarginMRQ

func (o *FundamentalInst) SetOperatingMarginMRQ(v float64)

SetOperatingMarginMRQ gets a reference to the given float64 and assigns it to the OperatingMarginMRQ field.

func (*FundamentalInst) SetOperatingMarginTTM

func (o *FundamentalInst) SetOperatingMarginTTM(v float64)

SetOperatingMarginTTM gets a reference to the given float64 and assigns it to the OperatingMarginTTM field.

func (*FundamentalInst) SetPbRatio

func (o *FundamentalInst) SetPbRatio(v float64)

SetPbRatio gets a reference to the given float64 and assigns it to the PbRatio field.

func (*FundamentalInst) SetPcfRatio

func (o *FundamentalInst) SetPcfRatio(v float64)

SetPcfRatio gets a reference to the given float64 and assigns it to the PcfRatio field.

func (*FundamentalInst) SetPeRatio

func (o *FundamentalInst) SetPeRatio(v float64)

SetPeRatio gets a reference to the given float64 and assigns it to the PeRatio field.

func (*FundamentalInst) SetPegRatio

func (o *FundamentalInst) SetPegRatio(v float64)

SetPegRatio gets a reference to the given float64 and assigns it to the PegRatio field.

func (*FundamentalInst) SetPrRatio

func (o *FundamentalInst) SetPrRatio(v float64)

SetPrRatio gets a reference to the given float64 and assigns it to the PrRatio field.

func (*FundamentalInst) SetQuickRatio

func (o *FundamentalInst) SetQuickRatio(v float64)

SetQuickRatio gets a reference to the given float64 and assigns it to the QuickRatio field.

func (*FundamentalInst) SetReturnOnAssets

func (o *FundamentalInst) SetReturnOnAssets(v float64)

SetReturnOnAssets gets a reference to the given float64 and assigns it to the ReturnOnAssets field.

func (*FundamentalInst) SetReturnOnEquity

func (o *FundamentalInst) SetReturnOnEquity(v float64)

SetReturnOnEquity gets a reference to the given float64 and assigns it to the ReturnOnEquity field.

func (*FundamentalInst) SetReturnOnInvestment

func (o *FundamentalInst) SetReturnOnInvestment(v float64)

SetReturnOnInvestment gets a reference to the given float64 and assigns it to the ReturnOnInvestment field.

func (*FundamentalInst) SetRevChangeIn

func (o *FundamentalInst) SetRevChangeIn(v float64)

SetRevChangeIn gets a reference to the given float64 and assigns it to the RevChangeIn field.

func (*FundamentalInst) SetRevChangeTTM

func (o *FundamentalInst) SetRevChangeTTM(v float64)

SetRevChangeTTM gets a reference to the given float64 and assigns it to the RevChangeTTM field.

func (*FundamentalInst) SetRevChangeYear

func (o *FundamentalInst) SetRevChangeYear(v float64)

SetRevChangeYear gets a reference to the given float64 and assigns it to the RevChangeYear field.

func (*FundamentalInst) SetSharesOutstanding

func (o *FundamentalInst) SetSharesOutstanding(v float64)

SetSharesOutstanding gets a reference to the given float64 and assigns it to the SharesOutstanding field.

func (*FundamentalInst) SetShortIntDayToCover

func (o *FundamentalInst) SetShortIntDayToCover(v float64)

SetShortIntDayToCover gets a reference to the given float64 and assigns it to the ShortIntDayToCover field.

func (*FundamentalInst) SetShortIntToFloat

func (o *FundamentalInst) SetShortIntToFloat(v float64)

SetShortIntToFloat gets a reference to the given float64 and assigns it to the ShortIntToFloat field.

func (*FundamentalInst) SetSymbol

func (o *FundamentalInst) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*FundamentalInst) SetTotalDebtToCapital

func (o *FundamentalInst) SetTotalDebtToCapital(v float64)

SetTotalDebtToCapital gets a reference to the given float64 and assigns it to the TotalDebtToCapital field.

func (*FundamentalInst) SetTotalDebtToEquity

func (o *FundamentalInst) SetTotalDebtToEquity(v float64)

SetTotalDebtToEquity gets a reference to the given float64 and assigns it to the TotalDebtToEquity field.

func (*FundamentalInst) SetVol10DayAvg

func (o *FundamentalInst) SetVol10DayAvg(v float64)

SetVol10DayAvg gets a reference to the given float64 and assigns it to the Vol10DayAvg field.

func (*FundamentalInst) SetVol1DayAvg

func (o *FundamentalInst) SetVol1DayAvg(v float64)

SetVol1DayAvg gets a reference to the given float64 and assigns it to the Vol1DayAvg field.

func (*FundamentalInst) SetVol3MonthAvg

func (o *FundamentalInst) SetVol3MonthAvg(v float64)

SetVol3MonthAvg gets a reference to the given float64 and assigns it to the Vol3MonthAvg field.

func (FundamentalInst) ToMap

func (o FundamentalInst) ToMap() (map[string]interface{}, error)

type FutureOptionResponse

type FutureOptionResponse struct {
	AssetMainType *AssetMainType `json:"assetMainType,omitempty"`
	// SSID of instrument
	Ssid *int64 `json:"ssid,omitempty"`
	// Symbol of instrument
	Symbol *string `json:"symbol,omitempty"`
	// is quote realtime
	Realtime  *bool                  `json:"realtime,omitempty"`
	Quote     *QuoteFutureOption     `json:"quote,omitempty"`
	Reference *ReferenceFutureOption `json:"reference,omitempty"`
}

FutureOptionResponse Quote info of Future Option security

func NewFutureOptionResponse

func NewFutureOptionResponse() *FutureOptionResponse

NewFutureOptionResponse instantiates a new FutureOptionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFutureOptionResponseWithDefaults

func NewFutureOptionResponseWithDefaults() *FutureOptionResponse

NewFutureOptionResponseWithDefaults instantiates a new FutureOptionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FutureOptionResponse) GetAssetMainType

func (o *FutureOptionResponse) GetAssetMainType() AssetMainType

GetAssetMainType returns the AssetMainType field value if set, zero value otherwise.

func (*FutureOptionResponse) GetAssetMainTypeOk

func (o *FutureOptionResponse) GetAssetMainTypeOk() (*AssetMainType, bool)

GetAssetMainTypeOk returns a tuple with the AssetMainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FutureOptionResponse) GetQuote

GetQuote returns the Quote field value if set, zero value otherwise.

func (*FutureOptionResponse) GetQuoteOk

func (o *FutureOptionResponse) GetQuoteOk() (*QuoteFutureOption, bool)

GetQuoteOk returns a tuple with the Quote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FutureOptionResponse) GetRealtime

func (o *FutureOptionResponse) GetRealtime() bool

GetRealtime returns the Realtime field value if set, zero value otherwise.

func (*FutureOptionResponse) GetRealtimeOk

func (o *FutureOptionResponse) GetRealtimeOk() (*bool, bool)

GetRealtimeOk returns a tuple with the Realtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FutureOptionResponse) GetReference

func (o *FutureOptionResponse) GetReference() ReferenceFutureOption

GetReference returns the Reference field value if set, zero value otherwise.

func (*FutureOptionResponse) GetReferenceOk

func (o *FutureOptionResponse) GetReferenceOk() (*ReferenceFutureOption, bool)

GetReferenceOk returns a tuple with the Reference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FutureOptionResponse) GetSsid

func (o *FutureOptionResponse) GetSsid() int64

GetSsid returns the Ssid field value if set, zero value otherwise.

func (*FutureOptionResponse) GetSsidOk

func (o *FutureOptionResponse) GetSsidOk() (*int64, bool)

GetSsidOk returns a tuple with the Ssid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FutureOptionResponse) GetSymbol

func (o *FutureOptionResponse) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*FutureOptionResponse) GetSymbolOk

func (o *FutureOptionResponse) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FutureOptionResponse) HasAssetMainType

func (o *FutureOptionResponse) HasAssetMainType() bool

HasAssetMainType returns a boolean if a field has been set.

func (*FutureOptionResponse) HasQuote

func (o *FutureOptionResponse) HasQuote() bool

HasQuote returns a boolean if a field has been set.

func (*FutureOptionResponse) HasRealtime

func (o *FutureOptionResponse) HasRealtime() bool

HasRealtime returns a boolean if a field has been set.

func (*FutureOptionResponse) HasReference

func (o *FutureOptionResponse) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*FutureOptionResponse) HasSsid

func (o *FutureOptionResponse) HasSsid() bool

HasSsid returns a boolean if a field has been set.

func (*FutureOptionResponse) HasSymbol

func (o *FutureOptionResponse) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (FutureOptionResponse) MarshalJSON

func (o FutureOptionResponse) MarshalJSON() ([]byte, error)

func (*FutureOptionResponse) SetAssetMainType

func (o *FutureOptionResponse) SetAssetMainType(v AssetMainType)

SetAssetMainType gets a reference to the given AssetMainType and assigns it to the AssetMainType field.

func (*FutureOptionResponse) SetQuote

func (o *FutureOptionResponse) SetQuote(v QuoteFutureOption)

SetQuote gets a reference to the given QuoteFutureOption and assigns it to the Quote field.

func (*FutureOptionResponse) SetRealtime

func (o *FutureOptionResponse) SetRealtime(v bool)

SetRealtime gets a reference to the given bool and assigns it to the Realtime field.

func (*FutureOptionResponse) SetReference

func (o *FutureOptionResponse) SetReference(v ReferenceFutureOption)

SetReference gets a reference to the given ReferenceFutureOption and assigns it to the Reference field.

func (*FutureOptionResponse) SetSsid

func (o *FutureOptionResponse) SetSsid(v int64)

SetSsid gets a reference to the given int64 and assigns it to the Ssid field.

func (*FutureOptionResponse) SetSymbol

func (o *FutureOptionResponse) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (FutureOptionResponse) ToMap

func (o FutureOptionResponse) ToMap() (map[string]interface{}, error)

type FutureResponse

type FutureResponse struct {
	AssetMainType *AssetMainType `json:"assetMainType,omitempty"`
	// SSID of instrument
	Ssid *int64 `json:"ssid,omitempty"`
	// Symbol of instrument
	Symbol *string `json:"symbol,omitempty"`
	// is quote realtime
	Realtime  *bool            `json:"realtime,omitempty"`
	Quote     *QuoteFuture     `json:"quote,omitempty"`
	Reference *ReferenceFuture `json:"reference,omitempty"`
}

FutureResponse Quote info of Future security

func NewFutureResponse

func NewFutureResponse() *FutureResponse

NewFutureResponse instantiates a new FutureResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFutureResponseWithDefaults

func NewFutureResponseWithDefaults() *FutureResponse

NewFutureResponseWithDefaults instantiates a new FutureResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FutureResponse) GetAssetMainType

func (o *FutureResponse) GetAssetMainType() AssetMainType

GetAssetMainType returns the AssetMainType field value if set, zero value otherwise.

func (*FutureResponse) GetAssetMainTypeOk

func (o *FutureResponse) GetAssetMainTypeOk() (*AssetMainType, bool)

GetAssetMainTypeOk returns a tuple with the AssetMainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FutureResponse) GetQuote

func (o *FutureResponse) GetQuote() QuoteFuture

GetQuote returns the Quote field value if set, zero value otherwise.

func (*FutureResponse) GetQuoteOk

func (o *FutureResponse) GetQuoteOk() (*QuoteFuture, bool)

GetQuoteOk returns a tuple with the Quote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FutureResponse) GetRealtime

func (o *FutureResponse) GetRealtime() bool

GetRealtime returns the Realtime field value if set, zero value otherwise.

func (*FutureResponse) GetRealtimeOk

func (o *FutureResponse) GetRealtimeOk() (*bool, bool)

GetRealtimeOk returns a tuple with the Realtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FutureResponse) GetReference

func (o *FutureResponse) GetReference() ReferenceFuture

GetReference returns the Reference field value if set, zero value otherwise.

func (*FutureResponse) GetReferenceOk

func (o *FutureResponse) GetReferenceOk() (*ReferenceFuture, bool)

GetReferenceOk returns a tuple with the Reference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FutureResponse) GetSsid

func (o *FutureResponse) GetSsid() int64

GetSsid returns the Ssid field value if set, zero value otherwise.

func (*FutureResponse) GetSsidOk

func (o *FutureResponse) GetSsidOk() (*int64, bool)

GetSsidOk returns a tuple with the Ssid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FutureResponse) GetSymbol

func (o *FutureResponse) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*FutureResponse) GetSymbolOk

func (o *FutureResponse) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FutureResponse) HasAssetMainType

func (o *FutureResponse) HasAssetMainType() bool

HasAssetMainType returns a boolean if a field has been set.

func (*FutureResponse) HasQuote

func (o *FutureResponse) HasQuote() bool

HasQuote returns a boolean if a field has been set.

func (*FutureResponse) HasRealtime

func (o *FutureResponse) HasRealtime() bool

HasRealtime returns a boolean if a field has been set.

func (*FutureResponse) HasReference

func (o *FutureResponse) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*FutureResponse) HasSsid

func (o *FutureResponse) HasSsid() bool

HasSsid returns a boolean if a field has been set.

func (*FutureResponse) HasSymbol

func (o *FutureResponse) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (FutureResponse) MarshalJSON

func (o FutureResponse) MarshalJSON() ([]byte, error)

func (*FutureResponse) SetAssetMainType

func (o *FutureResponse) SetAssetMainType(v AssetMainType)

SetAssetMainType gets a reference to the given AssetMainType and assigns it to the AssetMainType field.

func (*FutureResponse) SetQuote

func (o *FutureResponse) SetQuote(v QuoteFuture)

SetQuote gets a reference to the given QuoteFuture and assigns it to the Quote field.

func (*FutureResponse) SetRealtime

func (o *FutureResponse) SetRealtime(v bool)

SetRealtime gets a reference to the given bool and assigns it to the Realtime field.

func (*FutureResponse) SetReference

func (o *FutureResponse) SetReference(v ReferenceFuture)

SetReference gets a reference to the given ReferenceFuture and assigns it to the Reference field.

func (*FutureResponse) SetSsid

func (o *FutureResponse) SetSsid(v int64)

SetSsid gets a reference to the given int64 and assigns it to the Ssid field.

func (*FutureResponse) SetSymbol

func (o *FutureResponse) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (FutureResponse) ToMap

func (o FutureResponse) ToMap() (map[string]interface{}, error)

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GetInstruments200Response

type GetInstruments200Response struct {
	Instruments []InstrumentResponse `json:"instruments,omitempty"`
}

GetInstruments200Response struct for GetInstruments200Response

func NewGetInstruments200Response

func NewGetInstruments200Response() *GetInstruments200Response

NewGetInstruments200Response instantiates a new GetInstruments200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetInstruments200ResponseWithDefaults

func NewGetInstruments200ResponseWithDefaults() *GetInstruments200Response

NewGetInstruments200ResponseWithDefaults instantiates a new GetInstruments200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetInstruments200Response) GetInstruments

func (o *GetInstruments200Response) GetInstruments() []InstrumentResponse

GetInstruments returns the Instruments field value if set, zero value otherwise.

func (*GetInstruments200Response) GetInstrumentsOk

func (o *GetInstruments200Response) GetInstrumentsOk() ([]InstrumentResponse, bool)

GetInstrumentsOk returns a tuple with the Instruments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetInstruments200Response) HasInstruments

func (o *GetInstruments200Response) HasInstruments() bool

HasInstruments returns a boolean if a field has been set.

func (GetInstruments200Response) MarshalJSON

func (o GetInstruments200Response) MarshalJSON() ([]byte, error)

func (*GetInstruments200Response) SetInstruments

func (o *GetInstruments200Response) SetInstruments(v []InstrumentResponse)

SetInstruments gets a reference to the given []InstrumentResponse and assigns it to the Instruments field.

func (GetInstruments200Response) ToMap

func (o GetInstruments200Response) ToMap() (map[string]interface{}, error)

type GetMovers200Response

type GetMovers200Response struct {
	Screeners []Screener `json:"screeners,omitempty"`
}

GetMovers200Response struct for GetMovers200Response

func NewGetMovers200Response

func NewGetMovers200Response() *GetMovers200Response

NewGetMovers200Response instantiates a new GetMovers200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetMovers200ResponseWithDefaults

func NewGetMovers200ResponseWithDefaults() *GetMovers200Response

NewGetMovers200ResponseWithDefaults instantiates a new GetMovers200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetMovers200Response) GetScreeners

func (o *GetMovers200Response) GetScreeners() []Screener

GetScreeners returns the Screeners field value if set, zero value otherwise.

func (*GetMovers200Response) GetScreenersOk

func (o *GetMovers200Response) GetScreenersOk() ([]Screener, bool)

GetScreenersOk returns a tuple with the Screeners field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMovers200Response) HasScreeners

func (o *GetMovers200Response) HasScreeners() bool

HasScreeners returns a boolean if a field has been set.

func (GetMovers200Response) MarshalJSON

func (o GetMovers200Response) MarshalJSON() ([]byte, error)

func (*GetMovers200Response) SetScreeners

func (o *GetMovers200Response) SetScreeners(v []Screener)

SetScreeners gets a reference to the given []Screener and assigns it to the Screeners field.

func (GetMovers200Response) ToMap

func (o GetMovers200Response) ToMap() (map[string]interface{}, error)

type Hours

type Hours struct {
	Date         *string                `json:"date,omitempty"`
	MarketType   *string                `json:"marketType,omitempty"`
	Exchange     *string                `json:"exchange,omitempty"`
	Category     *string                `json:"category,omitempty"`
	Product      *string                `json:"product,omitempty"`
	ProductName  *string                `json:"productName,omitempty"`
	IsOpen       *bool                  `json:"isOpen,omitempty"`
	SessionHours *map[string][]Interval `json:"sessionHours,omitempty"`
}

Hours struct for Hours

func NewHours

func NewHours() *Hours

NewHours instantiates a new Hours object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewHoursWithDefaults

func NewHoursWithDefaults() *Hours

NewHoursWithDefaults instantiates a new Hours object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Hours) GetCategory

func (o *Hours) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*Hours) GetCategoryOk

func (o *Hours) GetCategoryOk() (*string, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Hours) GetDate

func (o *Hours) GetDate() string

GetDate returns the Date field value if set, zero value otherwise.

func (*Hours) GetDateOk

func (o *Hours) GetDateOk() (*string, bool)

GetDateOk returns a tuple with the Date field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Hours) GetExchange

func (o *Hours) GetExchange() string

GetExchange returns the Exchange field value if set, zero value otherwise.

func (*Hours) GetExchangeOk

func (o *Hours) GetExchangeOk() (*string, bool)

GetExchangeOk returns a tuple with the Exchange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Hours) GetIsOpen

func (o *Hours) GetIsOpen() bool

GetIsOpen returns the IsOpen field value if set, zero value otherwise.

func (*Hours) GetIsOpenOk

func (o *Hours) GetIsOpenOk() (*bool, bool)

GetIsOpenOk returns a tuple with the IsOpen field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Hours) GetMarketType

func (o *Hours) GetMarketType() string

GetMarketType returns the MarketType field value if set, zero value otherwise.

func (*Hours) GetMarketTypeOk

func (o *Hours) GetMarketTypeOk() (*string, bool)

GetMarketTypeOk returns a tuple with the MarketType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Hours) GetProduct

func (o *Hours) GetProduct() string

GetProduct returns the Product field value if set, zero value otherwise.

func (*Hours) GetProductName

func (o *Hours) GetProductName() string

GetProductName returns the ProductName field value if set, zero value otherwise.

func (*Hours) GetProductNameOk

func (o *Hours) GetProductNameOk() (*string, bool)

GetProductNameOk returns a tuple with the ProductName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Hours) GetProductOk

func (o *Hours) GetProductOk() (*string, bool)

GetProductOk returns a tuple with the Product field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Hours) GetSessionHours

func (o *Hours) GetSessionHours() map[string][]Interval

GetSessionHours returns the SessionHours field value if set, zero value otherwise.

func (*Hours) GetSessionHoursOk

func (o *Hours) GetSessionHoursOk() (*map[string][]Interval, bool)

GetSessionHoursOk returns a tuple with the SessionHours field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Hours) HasCategory

func (o *Hours) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*Hours) HasDate

func (o *Hours) HasDate() bool

HasDate returns a boolean if a field has been set.

func (*Hours) HasExchange

func (o *Hours) HasExchange() bool

HasExchange returns a boolean if a field has been set.

func (*Hours) HasIsOpen

func (o *Hours) HasIsOpen() bool

HasIsOpen returns a boolean if a field has been set.

func (*Hours) HasMarketType

func (o *Hours) HasMarketType() bool

HasMarketType returns a boolean if a field has been set.

func (*Hours) HasProduct

func (o *Hours) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (*Hours) HasProductName

func (o *Hours) HasProductName() bool

HasProductName returns a boolean if a field has been set.

func (*Hours) HasSessionHours

func (o *Hours) HasSessionHours() bool

HasSessionHours returns a boolean if a field has been set.

func (Hours) MarshalJSON

func (o Hours) MarshalJSON() ([]byte, error)

func (*Hours) SetCategory

func (o *Hours) SetCategory(v string)

SetCategory gets a reference to the given string and assigns it to the Category field.

func (*Hours) SetDate

func (o *Hours) SetDate(v string)

SetDate gets a reference to the given string and assigns it to the Date field.

func (*Hours) SetExchange

func (o *Hours) SetExchange(v string)

SetExchange gets a reference to the given string and assigns it to the Exchange field.

func (*Hours) SetIsOpen

func (o *Hours) SetIsOpen(v bool)

SetIsOpen gets a reference to the given bool and assigns it to the IsOpen field.

func (*Hours) SetMarketType

func (o *Hours) SetMarketType(v string)

SetMarketType gets a reference to the given string and assigns it to the MarketType field.

func (*Hours) SetProduct

func (o *Hours) SetProduct(v string)

SetProduct gets a reference to the given string and assigns it to the Product field.

func (*Hours) SetProductName

func (o *Hours) SetProductName(v string)

SetProductName gets a reference to the given string and assigns it to the ProductName field.

func (*Hours) SetSessionHours

func (o *Hours) SetSessionHours(v map[string][]Interval)

SetSessionHours gets a reference to the given map[string][]Interval and assigns it to the SessionHours field.

func (Hours) ToMap

func (o Hours) ToMap() (map[string]interface{}, error)

type IndexResponse

type IndexResponse struct {
	AssetMainType *AssetMainType `json:"assetMainType,omitempty"`
	// SSID of instrument
	Ssid *int64 `json:"ssid,omitempty"`
	// Symbol of instrument
	Symbol *string `json:"symbol,omitempty"`
	// is quote realtime
	Realtime  *bool           `json:"realtime,omitempty"`
	Quote     *QuoteIndex     `json:"quote,omitempty"`
	Reference *ReferenceIndex `json:"reference,omitempty"`
}

IndexResponse Quote info of Index security

func NewIndexResponse

func NewIndexResponse() *IndexResponse

NewIndexResponse instantiates a new IndexResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewIndexResponseWithDefaults

func NewIndexResponseWithDefaults() *IndexResponse

NewIndexResponseWithDefaults instantiates a new IndexResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*IndexResponse) GetAssetMainType

func (o *IndexResponse) GetAssetMainType() AssetMainType

GetAssetMainType returns the AssetMainType field value if set, zero value otherwise.

func (*IndexResponse) GetAssetMainTypeOk

func (o *IndexResponse) GetAssetMainTypeOk() (*AssetMainType, bool)

GetAssetMainTypeOk returns a tuple with the AssetMainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexResponse) GetQuote

func (o *IndexResponse) GetQuote() QuoteIndex

GetQuote returns the Quote field value if set, zero value otherwise.

func (*IndexResponse) GetQuoteOk

func (o *IndexResponse) GetQuoteOk() (*QuoteIndex, bool)

GetQuoteOk returns a tuple with the Quote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexResponse) GetRealtime

func (o *IndexResponse) GetRealtime() bool

GetRealtime returns the Realtime field value if set, zero value otherwise.

func (*IndexResponse) GetRealtimeOk

func (o *IndexResponse) GetRealtimeOk() (*bool, bool)

GetRealtimeOk returns a tuple with the Realtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexResponse) GetReference

func (o *IndexResponse) GetReference() ReferenceIndex

GetReference returns the Reference field value if set, zero value otherwise.

func (*IndexResponse) GetReferenceOk

func (o *IndexResponse) GetReferenceOk() (*ReferenceIndex, bool)

GetReferenceOk returns a tuple with the Reference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexResponse) GetSsid

func (o *IndexResponse) GetSsid() int64

GetSsid returns the Ssid field value if set, zero value otherwise.

func (*IndexResponse) GetSsidOk

func (o *IndexResponse) GetSsidOk() (*int64, bool)

GetSsidOk returns a tuple with the Ssid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexResponse) GetSymbol

func (o *IndexResponse) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*IndexResponse) GetSymbolOk

func (o *IndexResponse) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexResponse) HasAssetMainType

func (o *IndexResponse) HasAssetMainType() bool

HasAssetMainType returns a boolean if a field has been set.

func (*IndexResponse) HasQuote

func (o *IndexResponse) HasQuote() bool

HasQuote returns a boolean if a field has been set.

func (*IndexResponse) HasRealtime

func (o *IndexResponse) HasRealtime() bool

HasRealtime returns a boolean if a field has been set.

func (*IndexResponse) HasReference

func (o *IndexResponse) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*IndexResponse) HasSsid

func (o *IndexResponse) HasSsid() bool

HasSsid returns a boolean if a field has been set.

func (*IndexResponse) HasSymbol

func (o *IndexResponse) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (IndexResponse) MarshalJSON

func (o IndexResponse) MarshalJSON() ([]byte, error)

func (*IndexResponse) SetAssetMainType

func (o *IndexResponse) SetAssetMainType(v AssetMainType)

SetAssetMainType gets a reference to the given AssetMainType and assigns it to the AssetMainType field.

func (*IndexResponse) SetQuote

func (o *IndexResponse) SetQuote(v QuoteIndex)

SetQuote gets a reference to the given QuoteIndex and assigns it to the Quote field.

func (*IndexResponse) SetRealtime

func (o *IndexResponse) SetRealtime(v bool)

SetRealtime gets a reference to the given bool and assigns it to the Realtime field.

func (*IndexResponse) SetReference

func (o *IndexResponse) SetReference(v ReferenceIndex)

SetReference gets a reference to the given ReferenceIndex and assigns it to the Reference field.

func (*IndexResponse) SetSsid

func (o *IndexResponse) SetSsid(v int64)

SetSsid gets a reference to the given int64 and assigns it to the Ssid field.

func (*IndexResponse) SetSymbol

func (o *IndexResponse) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (IndexResponse) ToMap

func (o IndexResponse) ToMap() (map[string]interface{}, error)

type Instrument

type Instrument struct {
	Cusip       *string `json:"cusip,omitempty"`
	Symbol      *string `json:"symbol,omitempty"`
	Description *string `json:"description,omitempty"`
	Exchange    *string `json:"exchange,omitempty"`
	AssetType   *string `json:"assetType,omitempty"`
	Type        *string `json:"type,omitempty"`
}

Instrument struct for Instrument

func NewInstrument

func NewInstrument() *Instrument

NewInstrument instantiates a new Instrument object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstrumentWithDefaults

func NewInstrumentWithDefaults() *Instrument

NewInstrumentWithDefaults instantiates a new Instrument object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Instrument) GetAssetType

func (o *Instrument) GetAssetType() string

GetAssetType returns the AssetType field value if set, zero value otherwise.

func (*Instrument) GetAssetTypeOk

func (o *Instrument) GetAssetTypeOk() (*string, bool)

GetAssetTypeOk returns a tuple with the AssetType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instrument) GetCusip

func (o *Instrument) GetCusip() string

GetCusip returns the Cusip field value if set, zero value otherwise.

func (*Instrument) GetCusipOk

func (o *Instrument) GetCusipOk() (*string, bool)

GetCusipOk returns a tuple with the Cusip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instrument) GetDescription

func (o *Instrument) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Instrument) GetDescriptionOk

func (o *Instrument) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instrument) GetExchange

func (o *Instrument) GetExchange() string

GetExchange returns the Exchange field value if set, zero value otherwise.

func (*Instrument) GetExchangeOk

func (o *Instrument) GetExchangeOk() (*string, bool)

GetExchangeOk returns a tuple with the Exchange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instrument) GetSymbol

func (o *Instrument) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*Instrument) GetSymbolOk

func (o *Instrument) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instrument) GetType

func (o *Instrument) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Instrument) GetTypeOk

func (o *Instrument) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Instrument) HasAssetType

func (o *Instrument) HasAssetType() bool

HasAssetType returns a boolean if a field has been set.

func (*Instrument) HasCusip

func (o *Instrument) HasCusip() bool

HasCusip returns a boolean if a field has been set.

func (*Instrument) HasDescription

func (o *Instrument) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Instrument) HasExchange

func (o *Instrument) HasExchange() bool

HasExchange returns a boolean if a field has been set.

func (*Instrument) HasSymbol

func (o *Instrument) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*Instrument) HasType

func (o *Instrument) HasType() bool

HasType returns a boolean if a field has been set.

func (Instrument) MarshalJSON

func (o Instrument) MarshalJSON() ([]byte, error)

func (*Instrument) SetAssetType

func (o *Instrument) SetAssetType(v string)

SetAssetType gets a reference to the given string and assigns it to the AssetType field.

func (*Instrument) SetCusip

func (o *Instrument) SetCusip(v string)

SetCusip gets a reference to the given string and assigns it to the Cusip field.

func (*Instrument) SetDescription

func (o *Instrument) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Instrument) SetExchange

func (o *Instrument) SetExchange(v string)

SetExchange gets a reference to the given string and assigns it to the Exchange field.

func (*Instrument) SetSymbol

func (o *Instrument) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*Instrument) SetType

func (o *Instrument) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Instrument) ToMap

func (o Instrument) ToMap() (map[string]interface{}, error)

type InstrumentResponse

type InstrumentResponse struct {
	Cusip              *string          `json:"cusip,omitempty"`
	Symbol             *string          `json:"symbol,omitempty"`
	Description        *string          `json:"description,omitempty"`
	Exchange           *string          `json:"exchange,omitempty"`
	AssetType          *string          `json:"assetType,omitempty"`
	BondFactor         *string          `json:"bondFactor,omitempty"`
	BondMultiplier     *string          `json:"bondMultiplier,omitempty"`
	BondPrice          *float32         `json:"bondPrice,omitempty"`
	Fundamental        *FundamentalInst `json:"fundamental,omitempty"`
	InstrumentInfo     *Instrument      `json:"instrumentInfo,omitempty"`
	BondInstrumentInfo *Bond            `json:"bondInstrumentInfo,omitempty"`
	Type               *string          `json:"type,omitempty"`
}

InstrumentResponse struct for InstrumentResponse

func NewInstrumentResponse

func NewInstrumentResponse() *InstrumentResponse

NewInstrumentResponse instantiates a new InstrumentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInstrumentResponseWithDefaults

func NewInstrumentResponseWithDefaults() *InstrumentResponse

NewInstrumentResponseWithDefaults instantiates a new InstrumentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InstrumentResponse) GetAssetType

func (o *InstrumentResponse) GetAssetType() string

GetAssetType returns the AssetType field value if set, zero value otherwise.

func (*InstrumentResponse) GetAssetTypeOk

func (o *InstrumentResponse) GetAssetTypeOk() (*string, bool)

GetAssetTypeOk returns a tuple with the AssetType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstrumentResponse) GetBondFactor

func (o *InstrumentResponse) GetBondFactor() string

GetBondFactor returns the BondFactor field value if set, zero value otherwise.

func (*InstrumentResponse) GetBondFactorOk

func (o *InstrumentResponse) GetBondFactorOk() (*string, bool)

GetBondFactorOk returns a tuple with the BondFactor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstrumentResponse) GetBondInstrumentInfo

func (o *InstrumentResponse) GetBondInstrumentInfo() Bond

GetBondInstrumentInfo returns the BondInstrumentInfo field value if set, zero value otherwise.

func (*InstrumentResponse) GetBondInstrumentInfoOk

func (o *InstrumentResponse) GetBondInstrumentInfoOk() (*Bond, bool)

GetBondInstrumentInfoOk returns a tuple with the BondInstrumentInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstrumentResponse) GetBondMultiplier

func (o *InstrumentResponse) GetBondMultiplier() string

GetBondMultiplier returns the BondMultiplier field value if set, zero value otherwise.

func (*InstrumentResponse) GetBondMultiplierOk

func (o *InstrumentResponse) GetBondMultiplierOk() (*string, bool)

GetBondMultiplierOk returns a tuple with the BondMultiplier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstrumentResponse) GetBondPrice

func (o *InstrumentResponse) GetBondPrice() float32

GetBondPrice returns the BondPrice field value if set, zero value otherwise.

func (*InstrumentResponse) GetBondPriceOk

func (o *InstrumentResponse) GetBondPriceOk() (*float32, bool)

GetBondPriceOk returns a tuple with the BondPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstrumentResponse) GetCusip

func (o *InstrumentResponse) GetCusip() string

GetCusip returns the Cusip field value if set, zero value otherwise.

func (*InstrumentResponse) GetCusipOk

func (o *InstrumentResponse) GetCusipOk() (*string, bool)

GetCusipOk returns a tuple with the Cusip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstrumentResponse) GetDescription

func (o *InstrumentResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*InstrumentResponse) GetDescriptionOk

func (o *InstrumentResponse) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstrumentResponse) GetExchange

func (o *InstrumentResponse) GetExchange() string

GetExchange returns the Exchange field value if set, zero value otherwise.

func (*InstrumentResponse) GetExchangeOk

func (o *InstrumentResponse) GetExchangeOk() (*string, bool)

GetExchangeOk returns a tuple with the Exchange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstrumentResponse) GetFundamental

func (o *InstrumentResponse) GetFundamental() FundamentalInst

GetFundamental returns the Fundamental field value if set, zero value otherwise.

func (*InstrumentResponse) GetFundamentalOk

func (o *InstrumentResponse) GetFundamentalOk() (*FundamentalInst, bool)

GetFundamentalOk returns a tuple with the Fundamental field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstrumentResponse) GetInstrumentInfo

func (o *InstrumentResponse) GetInstrumentInfo() Instrument

GetInstrumentInfo returns the InstrumentInfo field value if set, zero value otherwise.

func (*InstrumentResponse) GetInstrumentInfoOk

func (o *InstrumentResponse) GetInstrumentInfoOk() (*Instrument, bool)

GetInstrumentInfoOk returns a tuple with the InstrumentInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstrumentResponse) GetSymbol

func (o *InstrumentResponse) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*InstrumentResponse) GetSymbolOk

func (o *InstrumentResponse) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstrumentResponse) GetType

func (o *InstrumentResponse) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*InstrumentResponse) GetTypeOk

func (o *InstrumentResponse) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstrumentResponse) HasAssetType

func (o *InstrumentResponse) HasAssetType() bool

HasAssetType returns a boolean if a field has been set.

func (*InstrumentResponse) HasBondFactor

func (o *InstrumentResponse) HasBondFactor() bool

HasBondFactor returns a boolean if a field has been set.

func (*InstrumentResponse) HasBondInstrumentInfo

func (o *InstrumentResponse) HasBondInstrumentInfo() bool

HasBondInstrumentInfo returns a boolean if a field has been set.

func (*InstrumentResponse) HasBondMultiplier

func (o *InstrumentResponse) HasBondMultiplier() bool

HasBondMultiplier returns a boolean if a field has been set.

func (*InstrumentResponse) HasBondPrice

func (o *InstrumentResponse) HasBondPrice() bool

HasBondPrice returns a boolean if a field has been set.

func (*InstrumentResponse) HasCusip

func (o *InstrumentResponse) HasCusip() bool

HasCusip returns a boolean if a field has been set.

func (*InstrumentResponse) HasDescription

func (o *InstrumentResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*InstrumentResponse) HasExchange

func (o *InstrumentResponse) HasExchange() bool

HasExchange returns a boolean if a field has been set.

func (*InstrumentResponse) HasFundamental

func (o *InstrumentResponse) HasFundamental() bool

HasFundamental returns a boolean if a field has been set.

func (*InstrumentResponse) HasInstrumentInfo

func (o *InstrumentResponse) HasInstrumentInfo() bool

HasInstrumentInfo returns a boolean if a field has been set.

func (*InstrumentResponse) HasSymbol

func (o *InstrumentResponse) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*InstrumentResponse) HasType

func (o *InstrumentResponse) HasType() bool

HasType returns a boolean if a field has been set.

func (InstrumentResponse) MarshalJSON

func (o InstrumentResponse) MarshalJSON() ([]byte, error)

func (*InstrumentResponse) SetAssetType

func (o *InstrumentResponse) SetAssetType(v string)

SetAssetType gets a reference to the given string and assigns it to the AssetType field.

func (*InstrumentResponse) SetBondFactor

func (o *InstrumentResponse) SetBondFactor(v string)

SetBondFactor gets a reference to the given string and assigns it to the BondFactor field.

func (*InstrumentResponse) SetBondInstrumentInfo

func (o *InstrumentResponse) SetBondInstrumentInfo(v Bond)

SetBondInstrumentInfo gets a reference to the given Bond and assigns it to the BondInstrumentInfo field.

func (*InstrumentResponse) SetBondMultiplier

func (o *InstrumentResponse) SetBondMultiplier(v string)

SetBondMultiplier gets a reference to the given string and assigns it to the BondMultiplier field.

func (*InstrumentResponse) SetBondPrice

func (o *InstrumentResponse) SetBondPrice(v float32)

SetBondPrice gets a reference to the given float32 and assigns it to the BondPrice field.

func (*InstrumentResponse) SetCusip

func (o *InstrumentResponse) SetCusip(v string)

SetCusip gets a reference to the given string and assigns it to the Cusip field.

func (*InstrumentResponse) SetDescription

func (o *InstrumentResponse) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*InstrumentResponse) SetExchange

func (o *InstrumentResponse) SetExchange(v string)

SetExchange gets a reference to the given string and assigns it to the Exchange field.

func (*InstrumentResponse) SetFundamental

func (o *InstrumentResponse) SetFundamental(v FundamentalInst)

SetFundamental gets a reference to the given FundamentalInst and assigns it to the Fundamental field.

func (*InstrumentResponse) SetInstrumentInfo

func (o *InstrumentResponse) SetInstrumentInfo(v Instrument)

SetInstrumentInfo gets a reference to the given Instrument and assigns it to the InstrumentInfo field.

func (*InstrumentResponse) SetSymbol

func (o *InstrumentResponse) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*InstrumentResponse) SetType

func (o *InstrumentResponse) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (InstrumentResponse) ToMap

func (o InstrumentResponse) ToMap() (map[string]interface{}, error)

type InstrumentsAPIService

type InstrumentsAPIService service

InstrumentsAPIService InstrumentsAPI service

func (*InstrumentsAPIService) GetInstruments

GetInstruments Get Instruments by symbols and projections.

Get Instruments details by using different projections. Get more specific fundamental instrument data by using fundamental as the projection.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetInstrumentsRequest

func (*InstrumentsAPIService) GetInstrumentsByCusip

func (a *InstrumentsAPIService) GetInstrumentsByCusip(ctx context.Context, cusipId string) ApiGetInstrumentsByCusipRequest

GetInstrumentsByCusip Get Instrument by specific cusip

Get basic instrument details by cusip

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param cusipId cusip of a security
@return ApiGetInstrumentsByCusipRequest

func (*InstrumentsAPIService) GetInstrumentsByCusipExecute

Execute executes the request

@return InstrumentResponse

func (*InstrumentsAPIService) GetInstrumentsExecute

Execute executes the request

@return GetInstruments200Response

type Interval

type Interval struct {
	Start *string `json:"start,omitempty"`
	End   *string `json:"end,omitempty"`
}

Interval struct for Interval

func NewInterval

func NewInterval() *Interval

NewInterval instantiates a new Interval object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewIntervalWithDefaults

func NewIntervalWithDefaults() *Interval

NewIntervalWithDefaults instantiates a new Interval object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Interval) GetEnd

func (o *Interval) GetEnd() string

GetEnd returns the End field value if set, zero value otherwise.

func (*Interval) GetEndOk

func (o *Interval) GetEndOk() (*string, bool)

GetEndOk returns a tuple with the End field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Interval) GetStart

func (o *Interval) GetStart() string

GetStart returns the Start field value if set, zero value otherwise.

func (*Interval) GetStartOk

func (o *Interval) GetStartOk() (*string, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Interval) HasEnd

func (o *Interval) HasEnd() bool

HasEnd returns a boolean if a field has been set.

func (*Interval) HasStart

func (o *Interval) HasStart() bool

HasStart returns a boolean if a field has been set.

func (Interval) MarshalJSON

func (o Interval) MarshalJSON() ([]byte, error)

func (*Interval) SetEnd

func (o *Interval) SetEnd(v string)

SetEnd gets a reference to the given string and assigns it to the End field.

func (*Interval) SetStart

func (o *Interval) SetStart(v string)

SetStart gets a reference to the given string and assigns it to the Start field.

func (Interval) ToMap

func (o Interval) ToMap() (map[string]interface{}, error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MarketHoursAPIService

type MarketHoursAPIService service

MarketHoursAPIService MarketHoursAPI service

func (*MarketHoursAPIService) GetMarketHour

func (a *MarketHoursAPIService) GetMarketHour(ctx context.Context, marketId string) ApiGetMarketHourRequest

GetMarketHour Get Market Hours for a single market.

Get Market Hours for dates in the future for a single market.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param marketId market id
@return ApiGetMarketHourRequest

func (*MarketHoursAPIService) GetMarketHourExecute

func (a *MarketHoursAPIService) GetMarketHourExecute(r ApiGetMarketHourRequest) (*map[string]map[string]Hours, *http.Response, error)

Execute executes the request

@return map[string]map[string]Hours

func (*MarketHoursAPIService) GetMarketHours

GetMarketHours Get Market Hours for different markets.

Get Market Hours for dates in the future across different markets.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarketHoursRequest

func (*MarketHoursAPIService) GetMarketHoursExecute

func (a *MarketHoursAPIService) GetMarketHoursExecute(r ApiGetMarketHoursRequest) (*map[string]map[string]Hours, *http.Response, error)

Execute executes the request

@return map[string]map[string]Hours

type MoversAPIService

type MoversAPIService service

MoversAPIService MoversAPI service

func (*MoversAPIService) GetMovers

func (a *MoversAPIService) GetMovers(ctx context.Context, symbolId string) ApiGetMoversRequest

GetMovers Get Movers for a specific index.

Get a list of top 10 securities movement for a specific index.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param symbolId Index Symbol
@return ApiGetMoversRequest

func (*MoversAPIService) GetMoversExecute

Execute executes the request

@return GetMovers200Response

type MutualFundAssetSubType

type MutualFundAssetSubType string

MutualFundAssetSubType Asset Sub Type (only there if applicable)

const (
	MUTUALFUNDASSETSUBTYPE_OEF  MutualFundAssetSubType = "OEF"
	MUTUALFUNDASSETSUBTYPE_CEF  MutualFundAssetSubType = "CEF"
	MUTUALFUNDASSETSUBTYPE_MMF  MutualFundAssetSubType = "MMF"
	MUTUALFUNDASSETSUBTYPE_NULL MutualFundAssetSubType = "null"
)

List of MutualFundAssetSubType

func NewMutualFundAssetSubTypeFromValue

func NewMutualFundAssetSubTypeFromValue(v string) (*MutualFundAssetSubType, error)

NewMutualFundAssetSubTypeFromValue returns a pointer to a valid MutualFundAssetSubType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (MutualFundAssetSubType) IsValid

func (v MutualFundAssetSubType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (MutualFundAssetSubType) Ptr

Ptr returns reference to MutualFundAssetSubType value

func (*MutualFundAssetSubType) UnmarshalJSON

func (v *MutualFundAssetSubType) UnmarshalJSON(src []byte) error

type MutualFundResponse

type MutualFundResponse struct {
	AssetMainType *AssetMainType                 `json:"assetMainType,omitempty"`
	AssetSubType  NullableMutualFundAssetSubType `json:"assetSubType,omitempty"`
	// SSID of instrument
	Ssid *int64 `json:"ssid,omitempty"`
	// Symbol of instrument
	Symbol *string `json:"symbol,omitempty"`
	// is quote realtime
	Realtime    *bool                `json:"realtime,omitempty"`
	Fundamental *Fundamental         `json:"fundamental,omitempty"`
	Quote       *QuoteMutualFund     `json:"quote,omitempty"`
	Reference   *ReferenceMutualFund `json:"reference,omitempty"`
}

MutualFundResponse Quote info of MutualFund security

func NewMutualFundResponse

func NewMutualFundResponse() *MutualFundResponse

NewMutualFundResponse instantiates a new MutualFundResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMutualFundResponseWithDefaults

func NewMutualFundResponseWithDefaults() *MutualFundResponse

NewMutualFundResponseWithDefaults instantiates a new MutualFundResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MutualFundResponse) GetAssetMainType

func (o *MutualFundResponse) GetAssetMainType() AssetMainType

GetAssetMainType returns the AssetMainType field value if set, zero value otherwise.

func (*MutualFundResponse) GetAssetMainTypeOk

func (o *MutualFundResponse) GetAssetMainTypeOk() (*AssetMainType, bool)

GetAssetMainTypeOk returns a tuple with the AssetMainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MutualFundResponse) GetAssetSubType

func (o *MutualFundResponse) GetAssetSubType() MutualFundAssetSubType

GetAssetSubType returns the AssetSubType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MutualFundResponse) GetAssetSubTypeOk

func (o *MutualFundResponse) GetAssetSubTypeOk() (*MutualFundAssetSubType, bool)

GetAssetSubTypeOk returns a tuple with the AssetSubType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MutualFundResponse) GetFundamental

func (o *MutualFundResponse) GetFundamental() Fundamental

GetFundamental returns the Fundamental field value if set, zero value otherwise.

func (*MutualFundResponse) GetFundamentalOk

func (o *MutualFundResponse) GetFundamentalOk() (*Fundamental, bool)

GetFundamentalOk returns a tuple with the Fundamental field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MutualFundResponse) GetQuote

func (o *MutualFundResponse) GetQuote() QuoteMutualFund

GetQuote returns the Quote field value if set, zero value otherwise.

func (*MutualFundResponse) GetQuoteOk

func (o *MutualFundResponse) GetQuoteOk() (*QuoteMutualFund, bool)

GetQuoteOk returns a tuple with the Quote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MutualFundResponse) GetRealtime

func (o *MutualFundResponse) GetRealtime() bool

GetRealtime returns the Realtime field value if set, zero value otherwise.

func (*MutualFundResponse) GetRealtimeOk

func (o *MutualFundResponse) GetRealtimeOk() (*bool, bool)

GetRealtimeOk returns a tuple with the Realtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MutualFundResponse) GetReference

func (o *MutualFundResponse) GetReference() ReferenceMutualFund

GetReference returns the Reference field value if set, zero value otherwise.

func (*MutualFundResponse) GetReferenceOk

func (o *MutualFundResponse) GetReferenceOk() (*ReferenceMutualFund, bool)

GetReferenceOk returns a tuple with the Reference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MutualFundResponse) GetSsid

func (o *MutualFundResponse) GetSsid() int64

GetSsid returns the Ssid field value if set, zero value otherwise.

func (*MutualFundResponse) GetSsidOk

func (o *MutualFundResponse) GetSsidOk() (*int64, bool)

GetSsidOk returns a tuple with the Ssid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MutualFundResponse) GetSymbol

func (o *MutualFundResponse) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*MutualFundResponse) GetSymbolOk

func (o *MutualFundResponse) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MutualFundResponse) HasAssetMainType

func (o *MutualFundResponse) HasAssetMainType() bool

HasAssetMainType returns a boolean if a field has been set.

func (*MutualFundResponse) HasAssetSubType

func (o *MutualFundResponse) HasAssetSubType() bool

HasAssetSubType returns a boolean if a field has been set.

func (*MutualFundResponse) HasFundamental

func (o *MutualFundResponse) HasFundamental() bool

HasFundamental returns a boolean if a field has been set.

func (*MutualFundResponse) HasQuote

func (o *MutualFundResponse) HasQuote() bool

HasQuote returns a boolean if a field has been set.

func (*MutualFundResponse) HasRealtime

func (o *MutualFundResponse) HasRealtime() bool

HasRealtime returns a boolean if a field has been set.

func (*MutualFundResponse) HasReference

func (o *MutualFundResponse) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*MutualFundResponse) HasSsid

func (o *MutualFundResponse) HasSsid() bool

HasSsid returns a boolean if a field has been set.

func (*MutualFundResponse) HasSymbol

func (o *MutualFundResponse) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (MutualFundResponse) MarshalJSON

func (o MutualFundResponse) MarshalJSON() ([]byte, error)

func (*MutualFundResponse) SetAssetMainType

func (o *MutualFundResponse) SetAssetMainType(v AssetMainType)

SetAssetMainType gets a reference to the given AssetMainType and assigns it to the AssetMainType field.

func (*MutualFundResponse) SetAssetSubType

func (o *MutualFundResponse) SetAssetSubType(v MutualFundAssetSubType)

SetAssetSubType gets a reference to the given NullableMutualFundAssetSubType and assigns it to the AssetSubType field.

func (*MutualFundResponse) SetAssetSubTypeNil

func (o *MutualFundResponse) SetAssetSubTypeNil()

SetAssetSubTypeNil sets the value for AssetSubType to be an explicit nil

func (*MutualFundResponse) SetFundamental

func (o *MutualFundResponse) SetFundamental(v Fundamental)

SetFundamental gets a reference to the given Fundamental and assigns it to the Fundamental field.

func (*MutualFundResponse) SetQuote

func (o *MutualFundResponse) SetQuote(v QuoteMutualFund)

SetQuote gets a reference to the given QuoteMutualFund and assigns it to the Quote field.

func (*MutualFundResponse) SetRealtime

func (o *MutualFundResponse) SetRealtime(v bool)

SetRealtime gets a reference to the given bool and assigns it to the Realtime field.

func (*MutualFundResponse) SetReference

func (o *MutualFundResponse) SetReference(v ReferenceMutualFund)

SetReference gets a reference to the given ReferenceMutualFund and assigns it to the Reference field.

func (*MutualFundResponse) SetSsid

func (o *MutualFundResponse) SetSsid(v int64)

SetSsid gets a reference to the given int64 and assigns it to the Ssid field.

func (*MutualFundResponse) SetSymbol

func (o *MutualFundResponse) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (MutualFundResponse) ToMap

func (o MutualFundResponse) ToMap() (map[string]interface{}, error)

func (*MutualFundResponse) UnsetAssetSubType

func (o *MutualFundResponse) UnsetAssetSubType()

UnsetAssetSubType ensures that no value is present for AssetSubType, not even an explicit nil

type NullableAssetMainType

type NullableAssetMainType struct {
	// contains filtered or unexported fields
}

func NewNullableAssetMainType

func NewNullableAssetMainType(val *AssetMainType) *NullableAssetMainType

func (NullableAssetMainType) Get

func (NullableAssetMainType) IsSet

func (v NullableAssetMainType) IsSet() bool

func (NullableAssetMainType) MarshalJSON

func (v NullableAssetMainType) MarshalJSON() ([]byte, error)

func (*NullableAssetMainType) Set

func (v *NullableAssetMainType) Set(val *AssetMainType)

func (*NullableAssetMainType) UnmarshalJSON

func (v *NullableAssetMainType) UnmarshalJSON(src []byte) error

func (*NullableAssetMainType) Unset

func (v *NullableAssetMainType) Unset()

type NullableBond

type NullableBond struct {
	// contains filtered or unexported fields
}

func NewNullableBond

func NewNullableBond(val *Bond) *NullableBond

func (NullableBond) Get

func (v NullableBond) Get() *Bond

func (NullableBond) IsSet

func (v NullableBond) IsSet() bool

func (NullableBond) MarshalJSON

func (v NullableBond) MarshalJSON() ([]byte, error)

func (*NullableBond) Set

func (v *NullableBond) Set(val *Bond)

func (*NullableBond) UnmarshalJSON

func (v *NullableBond) UnmarshalJSON(src []byte) error

func (*NullableBond) Unset

func (v *NullableBond) Unset()

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCandle

type NullableCandle struct {
	// contains filtered or unexported fields
}

func NewNullableCandle

func NewNullableCandle(val *Candle) *NullableCandle

func (NullableCandle) Get

func (v NullableCandle) Get() *Candle

func (NullableCandle) IsSet

func (v NullableCandle) IsSet() bool

func (NullableCandle) MarshalJSON

func (v NullableCandle) MarshalJSON() ([]byte, error)

func (*NullableCandle) Set

func (v *NullableCandle) Set(val *Candle)

func (*NullableCandle) UnmarshalJSON

func (v *NullableCandle) UnmarshalJSON(src []byte) error

func (*NullableCandle) Unset

func (v *NullableCandle) Unset()

type NullableCandleList

type NullableCandleList struct {
	// contains filtered or unexported fields
}

func NewNullableCandleList

func NewNullableCandleList(val *CandleList) *NullableCandleList

func (NullableCandleList) Get

func (v NullableCandleList) Get() *CandleList

func (NullableCandleList) IsSet

func (v NullableCandleList) IsSet() bool

func (NullableCandleList) MarshalJSON

func (v NullableCandleList) MarshalJSON() ([]byte, error)

func (*NullableCandleList) Set

func (v *NullableCandleList) Set(val *CandleList)

func (*NullableCandleList) UnmarshalJSON

func (v *NullableCandleList) UnmarshalJSON(src []byte) error

func (*NullableCandleList) Unset

func (v *NullableCandleList) Unset()

type NullableContractType

type NullableContractType struct {
	// contains filtered or unexported fields
}

func NewNullableContractType

func NewNullableContractType(val *ContractType) *NullableContractType

func (NullableContractType) Get

func (NullableContractType) IsSet

func (v NullableContractType) IsSet() bool

func (NullableContractType) MarshalJSON

func (v NullableContractType) MarshalJSON() ([]byte, error)

func (*NullableContractType) Set

func (v *NullableContractType) Set(val *ContractType)

func (*NullableContractType) UnmarshalJSON

func (v *NullableContractType) UnmarshalJSON(src []byte) error

func (*NullableContractType) Unset

func (v *NullableContractType) Unset()

type NullableDivFreq

type NullableDivFreq struct {
	// contains filtered or unexported fields
}

func NewNullableDivFreq

func NewNullableDivFreq(val *DivFreq) *NullableDivFreq

func (NullableDivFreq) Get

func (v NullableDivFreq) Get() *DivFreq

func (NullableDivFreq) IsSet

func (v NullableDivFreq) IsSet() bool

func (NullableDivFreq) MarshalJSON

func (v NullableDivFreq) MarshalJSON() ([]byte, error)

func (*NullableDivFreq) Set

func (v *NullableDivFreq) Set(val *DivFreq)

func (*NullableDivFreq) UnmarshalJSON

func (v *NullableDivFreq) UnmarshalJSON(src []byte) error

func (*NullableDivFreq) Unset

func (v *NullableDivFreq) Unset()

type NullableEquityAssetSubType

type NullableEquityAssetSubType struct {
	// contains filtered or unexported fields
}

func NewNullableEquityAssetSubType

func NewNullableEquityAssetSubType(val *EquityAssetSubType) *NullableEquityAssetSubType

func (NullableEquityAssetSubType) Get

func (NullableEquityAssetSubType) IsSet

func (v NullableEquityAssetSubType) IsSet() bool

func (NullableEquityAssetSubType) MarshalJSON

func (v NullableEquityAssetSubType) MarshalJSON() ([]byte, error)

func (*NullableEquityAssetSubType) Set

func (*NullableEquityAssetSubType) UnmarshalJSON

func (v *NullableEquityAssetSubType) UnmarshalJSON(src []byte) error

func (*NullableEquityAssetSubType) Unset

func (v *NullableEquityAssetSubType) Unset()

type NullableEquityResponse

type NullableEquityResponse struct {
	// contains filtered or unexported fields
}

func NewNullableEquityResponse

func NewNullableEquityResponse(val *EquityResponse) *NullableEquityResponse

func (NullableEquityResponse) Get

func (NullableEquityResponse) IsSet

func (v NullableEquityResponse) IsSet() bool

func (NullableEquityResponse) MarshalJSON

func (v NullableEquityResponse) MarshalJSON() ([]byte, error)

func (*NullableEquityResponse) Set

func (*NullableEquityResponse) UnmarshalJSON

func (v *NullableEquityResponse) UnmarshalJSON(src []byte) error

func (*NullableEquityResponse) Unset

func (v *NullableEquityResponse) Unset()

type NullableError

type NullableError struct {
	// contains filtered or unexported fields
}

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

func (v NullableError) MarshalJSON() ([]byte, error)

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

func (v *NullableError) UnmarshalJSON(src []byte) error

func (*NullableError) Unset

func (v *NullableError) Unset()

type NullableErrorResponse

type NullableErrorResponse struct {
	// contains filtered or unexported fields
}

func NewNullableErrorResponse

func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse

func (NullableErrorResponse) Get

func (NullableErrorResponse) IsSet

func (v NullableErrorResponse) IsSet() bool

func (NullableErrorResponse) MarshalJSON

func (v NullableErrorResponse) MarshalJSON() ([]byte, error)

func (*NullableErrorResponse) Set

func (v *NullableErrorResponse) Set(val *ErrorResponse)

func (*NullableErrorResponse) UnmarshalJSON

func (v *NullableErrorResponse) UnmarshalJSON(src []byte) error

func (*NullableErrorResponse) Unset

func (v *NullableErrorResponse) Unset()

type NullableErrorSource

type NullableErrorSource struct {
	// contains filtered or unexported fields
}

func NewNullableErrorSource

func NewNullableErrorSource(val *ErrorSource) *NullableErrorSource

func (NullableErrorSource) Get

func (NullableErrorSource) IsSet

func (v NullableErrorSource) IsSet() bool

func (NullableErrorSource) MarshalJSON

func (v NullableErrorSource) MarshalJSON() ([]byte, error)

func (*NullableErrorSource) Set

func (v *NullableErrorSource) Set(val *ErrorSource)

func (*NullableErrorSource) UnmarshalJSON

func (v *NullableErrorSource) UnmarshalJSON(src []byte) error

func (*NullableErrorSource) Unset

func (v *NullableErrorSource) Unset()

type NullableExerciseType

type NullableExerciseType struct {
	// contains filtered or unexported fields
}

func NewNullableExerciseType

func NewNullableExerciseType(val *ExerciseType) *NullableExerciseType

func (NullableExerciseType) Get

func (NullableExerciseType) IsSet

func (v NullableExerciseType) IsSet() bool

func (NullableExerciseType) MarshalJSON

func (v NullableExerciseType) MarshalJSON() ([]byte, error)

func (*NullableExerciseType) Set

func (v *NullableExerciseType) Set(val *ExerciseType)

func (*NullableExerciseType) UnmarshalJSON

func (v *NullableExerciseType) UnmarshalJSON(src []byte) error

func (*NullableExerciseType) Unset

func (v *NullableExerciseType) Unset()

type NullableExpiration

type NullableExpiration struct {
	// contains filtered or unexported fields
}

func NewNullableExpiration

func NewNullableExpiration(val *Expiration) *NullableExpiration

func (NullableExpiration) Get

func (v NullableExpiration) Get() *Expiration

func (NullableExpiration) IsSet

func (v NullableExpiration) IsSet() bool

func (NullableExpiration) MarshalJSON

func (v NullableExpiration) MarshalJSON() ([]byte, error)

func (*NullableExpiration) Set

func (v *NullableExpiration) Set(val *Expiration)

func (*NullableExpiration) UnmarshalJSON

func (v *NullableExpiration) UnmarshalJSON(src []byte) error

func (*NullableExpiration) Unset

func (v *NullableExpiration) Unset()

type NullableExpirationChain

type NullableExpirationChain struct {
	// contains filtered or unexported fields
}

func NewNullableExpirationChain

func NewNullableExpirationChain(val *ExpirationChain) *NullableExpirationChain

func (NullableExpirationChain) Get

func (NullableExpirationChain) IsSet

func (v NullableExpirationChain) IsSet() bool

func (NullableExpirationChain) MarshalJSON

func (v NullableExpirationChain) MarshalJSON() ([]byte, error)

func (*NullableExpirationChain) Set

func (*NullableExpirationChain) UnmarshalJSON

func (v *NullableExpirationChain) UnmarshalJSON(src []byte) error

func (*NullableExpirationChain) Unset

func (v *NullableExpirationChain) Unset()

type NullableExpirationType

type NullableExpirationType struct {
	// contains filtered or unexported fields
}

func NewNullableExpirationType

func NewNullableExpirationType(val *ExpirationType) *NullableExpirationType

func (NullableExpirationType) Get

func (NullableExpirationType) IsSet

func (v NullableExpirationType) IsSet() bool

func (NullableExpirationType) MarshalJSON

func (v NullableExpirationType) MarshalJSON() ([]byte, error)

func (*NullableExpirationType) Set

func (*NullableExpirationType) UnmarshalJSON

func (v *NullableExpirationType) UnmarshalJSON(src []byte) error

func (*NullableExpirationType) Unset

func (v *NullableExpirationType) Unset()

type NullableExtendedMarket

type NullableExtendedMarket struct {
	// contains filtered or unexported fields
}

func NewNullableExtendedMarket

func NewNullableExtendedMarket(val *ExtendedMarket) *NullableExtendedMarket

func (NullableExtendedMarket) Get

func (NullableExtendedMarket) IsSet

func (v NullableExtendedMarket) IsSet() bool

func (NullableExtendedMarket) MarshalJSON

func (v NullableExtendedMarket) MarshalJSON() ([]byte, error)

func (*NullableExtendedMarket) Set

func (*NullableExtendedMarket) UnmarshalJSON

func (v *NullableExtendedMarket) UnmarshalJSON(src []byte) error

func (*NullableExtendedMarket) Unset

func (v *NullableExtendedMarket) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableForexResponse

type NullableForexResponse struct {
	// contains filtered or unexported fields
}

func NewNullableForexResponse

func NewNullableForexResponse(val *ForexResponse) *NullableForexResponse

func (NullableForexResponse) Get

func (NullableForexResponse) IsSet

func (v NullableForexResponse) IsSet() bool

func (NullableForexResponse) MarshalJSON

func (v NullableForexResponse) MarshalJSON() ([]byte, error)

func (*NullableForexResponse) Set

func (v *NullableForexResponse) Set(val *ForexResponse)

func (*NullableForexResponse) UnmarshalJSON

func (v *NullableForexResponse) UnmarshalJSON(src []byte) error

func (*NullableForexResponse) Unset

func (v *NullableForexResponse) Unset()

type NullableFundStrategy

type NullableFundStrategy struct {
	// contains filtered or unexported fields
}

func NewNullableFundStrategy

func NewNullableFundStrategy(val *FundStrategy) *NullableFundStrategy

func (NullableFundStrategy) Get

func (NullableFundStrategy) IsSet

func (v NullableFundStrategy) IsSet() bool

func (NullableFundStrategy) MarshalJSON

func (v NullableFundStrategy) MarshalJSON() ([]byte, error)

func (*NullableFundStrategy) Set

func (v *NullableFundStrategy) Set(val *FundStrategy)

func (*NullableFundStrategy) UnmarshalJSON

func (v *NullableFundStrategy) UnmarshalJSON(src []byte) error

func (*NullableFundStrategy) Unset

func (v *NullableFundStrategy) Unset()

type NullableFundamental

type NullableFundamental struct {
	// contains filtered or unexported fields
}

func NewNullableFundamental

func NewNullableFundamental(val *Fundamental) *NullableFundamental

func (NullableFundamental) Get

func (NullableFundamental) IsSet

func (v NullableFundamental) IsSet() bool

func (NullableFundamental) MarshalJSON

func (v NullableFundamental) MarshalJSON() ([]byte, error)

func (*NullableFundamental) Set

func (v *NullableFundamental) Set(val *Fundamental)

func (*NullableFundamental) UnmarshalJSON

func (v *NullableFundamental) UnmarshalJSON(src []byte) error

func (*NullableFundamental) Unset

func (v *NullableFundamental) Unset()

type NullableFundamentalInst

type NullableFundamentalInst struct {
	// contains filtered or unexported fields
}

func NewNullableFundamentalInst

func NewNullableFundamentalInst(val *FundamentalInst) *NullableFundamentalInst

func (NullableFundamentalInst) Get

func (NullableFundamentalInst) IsSet

func (v NullableFundamentalInst) IsSet() bool

func (NullableFundamentalInst) MarshalJSON

func (v NullableFundamentalInst) MarshalJSON() ([]byte, error)

func (*NullableFundamentalInst) Set

func (*NullableFundamentalInst) UnmarshalJSON

func (v *NullableFundamentalInst) UnmarshalJSON(src []byte) error

func (*NullableFundamentalInst) Unset

func (v *NullableFundamentalInst) Unset()

type NullableFutureOptionResponse

type NullableFutureOptionResponse struct {
	// contains filtered or unexported fields
}

func NewNullableFutureOptionResponse

func NewNullableFutureOptionResponse(val *FutureOptionResponse) *NullableFutureOptionResponse

func (NullableFutureOptionResponse) Get

func (NullableFutureOptionResponse) IsSet

func (NullableFutureOptionResponse) MarshalJSON

func (v NullableFutureOptionResponse) MarshalJSON() ([]byte, error)

func (*NullableFutureOptionResponse) Set

func (*NullableFutureOptionResponse) UnmarshalJSON

func (v *NullableFutureOptionResponse) UnmarshalJSON(src []byte) error

func (*NullableFutureOptionResponse) Unset

func (v *NullableFutureOptionResponse) Unset()

type NullableFutureResponse

type NullableFutureResponse struct {
	// contains filtered or unexported fields
}

func NewNullableFutureResponse

func NewNullableFutureResponse(val *FutureResponse) *NullableFutureResponse

func (NullableFutureResponse) Get

func (NullableFutureResponse) IsSet

func (v NullableFutureResponse) IsSet() bool

func (NullableFutureResponse) MarshalJSON

func (v NullableFutureResponse) MarshalJSON() ([]byte, error)

func (*NullableFutureResponse) Set

func (*NullableFutureResponse) UnmarshalJSON

func (v *NullableFutureResponse) UnmarshalJSON(src []byte) error

func (*NullableFutureResponse) Unset

func (v *NullableFutureResponse) Unset()

type NullableGetInstruments200Response

type NullableGetInstruments200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetInstruments200Response) Get

func (NullableGetInstruments200Response) IsSet

func (NullableGetInstruments200Response) MarshalJSON

func (v NullableGetInstruments200Response) MarshalJSON() ([]byte, error)

func (*NullableGetInstruments200Response) Set

func (*NullableGetInstruments200Response) UnmarshalJSON

func (v *NullableGetInstruments200Response) UnmarshalJSON(src []byte) error

func (*NullableGetInstruments200Response) Unset

type NullableGetMovers200Response

type NullableGetMovers200Response struct {
	// contains filtered or unexported fields
}

func NewNullableGetMovers200Response

func NewNullableGetMovers200Response(val *GetMovers200Response) *NullableGetMovers200Response

func (NullableGetMovers200Response) Get

func (NullableGetMovers200Response) IsSet

func (NullableGetMovers200Response) MarshalJSON

func (v NullableGetMovers200Response) MarshalJSON() ([]byte, error)

func (*NullableGetMovers200Response) Set

func (*NullableGetMovers200Response) UnmarshalJSON

func (v *NullableGetMovers200Response) UnmarshalJSON(src []byte) error

func (*NullableGetMovers200Response) Unset

func (v *NullableGetMovers200Response) Unset()

type NullableHours

type NullableHours struct {
	// contains filtered or unexported fields
}

func NewNullableHours

func NewNullableHours(val *Hours) *NullableHours

func (NullableHours) Get

func (v NullableHours) Get() *Hours

func (NullableHours) IsSet

func (v NullableHours) IsSet() bool

func (NullableHours) MarshalJSON

func (v NullableHours) MarshalJSON() ([]byte, error)

func (*NullableHours) Set

func (v *NullableHours) Set(val *Hours)

func (*NullableHours) UnmarshalJSON

func (v *NullableHours) UnmarshalJSON(src []byte) error

func (*NullableHours) Unset

func (v *NullableHours) Unset()

type NullableIndexResponse

type NullableIndexResponse struct {
	// contains filtered or unexported fields
}

func NewNullableIndexResponse

func NewNullableIndexResponse(val *IndexResponse) *NullableIndexResponse

func (NullableIndexResponse) Get

func (NullableIndexResponse) IsSet

func (v NullableIndexResponse) IsSet() bool

func (NullableIndexResponse) MarshalJSON

func (v NullableIndexResponse) MarshalJSON() ([]byte, error)

func (*NullableIndexResponse) Set

func (v *NullableIndexResponse) Set(val *IndexResponse)

func (*NullableIndexResponse) UnmarshalJSON

func (v *NullableIndexResponse) UnmarshalJSON(src []byte) error

func (*NullableIndexResponse) Unset

func (v *NullableIndexResponse) Unset()

type NullableInstrument

type NullableInstrument struct {
	// contains filtered or unexported fields
}

func NewNullableInstrument

func NewNullableInstrument(val *Instrument) *NullableInstrument

func (NullableInstrument) Get

func (v NullableInstrument) Get() *Instrument

func (NullableInstrument) IsSet

func (v NullableInstrument) IsSet() bool

func (NullableInstrument) MarshalJSON

func (v NullableInstrument) MarshalJSON() ([]byte, error)

func (*NullableInstrument) Set

func (v *NullableInstrument) Set(val *Instrument)

func (*NullableInstrument) UnmarshalJSON

func (v *NullableInstrument) UnmarshalJSON(src []byte) error

func (*NullableInstrument) Unset

func (v *NullableInstrument) Unset()

type NullableInstrumentResponse

type NullableInstrumentResponse struct {
	// contains filtered or unexported fields
}

func NewNullableInstrumentResponse

func NewNullableInstrumentResponse(val *InstrumentResponse) *NullableInstrumentResponse

func (NullableInstrumentResponse) Get

func (NullableInstrumentResponse) IsSet

func (v NullableInstrumentResponse) IsSet() bool

func (NullableInstrumentResponse) MarshalJSON

func (v NullableInstrumentResponse) MarshalJSON() ([]byte, error)

func (*NullableInstrumentResponse) Set

func (*NullableInstrumentResponse) UnmarshalJSON

func (v *NullableInstrumentResponse) UnmarshalJSON(src []byte) error

func (*NullableInstrumentResponse) Unset

func (v *NullableInstrumentResponse) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInterval

type NullableInterval struct {
	// contains filtered or unexported fields
}

func NewNullableInterval

func NewNullableInterval(val *Interval) *NullableInterval

func (NullableInterval) Get

func (v NullableInterval) Get() *Interval

func (NullableInterval) IsSet

func (v NullableInterval) IsSet() bool

func (NullableInterval) MarshalJSON

func (v NullableInterval) MarshalJSON() ([]byte, error)

func (*NullableInterval) Set

func (v *NullableInterval) Set(val *Interval)

func (*NullableInterval) UnmarshalJSON

func (v *NullableInterval) UnmarshalJSON(src []byte) error

func (*NullableInterval) Unset

func (v *NullableInterval) Unset()

type NullableMutualFundAssetSubType

type NullableMutualFundAssetSubType struct {
	// contains filtered or unexported fields
}

func (NullableMutualFundAssetSubType) Get

func (NullableMutualFundAssetSubType) IsSet

func (NullableMutualFundAssetSubType) MarshalJSON

func (v NullableMutualFundAssetSubType) MarshalJSON() ([]byte, error)

func (*NullableMutualFundAssetSubType) Set

func (*NullableMutualFundAssetSubType) UnmarshalJSON

func (v *NullableMutualFundAssetSubType) UnmarshalJSON(src []byte) error

func (*NullableMutualFundAssetSubType) Unset

func (v *NullableMutualFundAssetSubType) Unset()

type NullableMutualFundResponse

type NullableMutualFundResponse struct {
	// contains filtered or unexported fields
}

func NewNullableMutualFundResponse

func NewNullableMutualFundResponse(val *MutualFundResponse) *NullableMutualFundResponse

func (NullableMutualFundResponse) Get

func (NullableMutualFundResponse) IsSet

func (v NullableMutualFundResponse) IsSet() bool

func (NullableMutualFundResponse) MarshalJSON

func (v NullableMutualFundResponse) MarshalJSON() ([]byte, error)

func (*NullableMutualFundResponse) Set

func (*NullableMutualFundResponse) UnmarshalJSON

func (v *NullableMutualFundResponse) UnmarshalJSON(src []byte) error

func (*NullableMutualFundResponse) Unset

func (v *NullableMutualFundResponse) Unset()

type NullableOptionChain

type NullableOptionChain struct {
	// contains filtered or unexported fields
}

func NewNullableOptionChain

func NewNullableOptionChain(val *OptionChain) *NullableOptionChain

func (NullableOptionChain) Get

func (NullableOptionChain) IsSet

func (v NullableOptionChain) IsSet() bool

func (NullableOptionChain) MarshalJSON

func (v NullableOptionChain) MarshalJSON() ([]byte, error)

func (*NullableOptionChain) Set

func (v *NullableOptionChain) Set(val *OptionChain)

func (*NullableOptionChain) UnmarshalJSON

func (v *NullableOptionChain) UnmarshalJSON(src []byte) error

func (*NullableOptionChain) Unset

func (v *NullableOptionChain) Unset()

type NullableOptionContract

type NullableOptionContract struct {
	// contains filtered or unexported fields
}

func NewNullableOptionContract

func NewNullableOptionContract(val *OptionContract) *NullableOptionContract

func (NullableOptionContract) Get

func (NullableOptionContract) IsSet

func (v NullableOptionContract) IsSet() bool

func (NullableOptionContract) MarshalJSON

func (v NullableOptionContract) MarshalJSON() ([]byte, error)

func (*NullableOptionContract) Set

func (*NullableOptionContract) UnmarshalJSON

func (v *NullableOptionContract) UnmarshalJSON(src []byte) error

func (*NullableOptionContract) Unset

func (v *NullableOptionContract) Unset()

type NullableOptionDeliverables

type NullableOptionDeliverables struct {
	// contains filtered or unexported fields
}

func NewNullableOptionDeliverables

func NewNullableOptionDeliverables(val *OptionDeliverables) *NullableOptionDeliverables

func (NullableOptionDeliverables) Get

func (NullableOptionDeliverables) IsSet

func (v NullableOptionDeliverables) IsSet() bool

func (NullableOptionDeliverables) MarshalJSON

func (v NullableOptionDeliverables) MarshalJSON() ([]byte, error)

func (*NullableOptionDeliverables) Set

func (*NullableOptionDeliverables) UnmarshalJSON

func (v *NullableOptionDeliverables) UnmarshalJSON(src []byte) error

func (*NullableOptionDeliverables) Unset

func (v *NullableOptionDeliverables) Unset()

type NullableOptionResponse

type NullableOptionResponse struct {
	// contains filtered or unexported fields
}

func NewNullableOptionResponse

func NewNullableOptionResponse(val *OptionResponse) *NullableOptionResponse

func (NullableOptionResponse) Get

func (NullableOptionResponse) IsSet

func (v NullableOptionResponse) IsSet() bool

func (NullableOptionResponse) MarshalJSON

func (v NullableOptionResponse) MarshalJSON() ([]byte, error)

func (*NullableOptionResponse) Set

func (*NullableOptionResponse) UnmarshalJSON

func (v *NullableOptionResponse) UnmarshalJSON(src []byte) error

func (*NullableOptionResponse) Unset

func (v *NullableOptionResponse) Unset()

type NullableQuoteEquity

type NullableQuoteEquity struct {
	// contains filtered or unexported fields
}

func NewNullableQuoteEquity

func NewNullableQuoteEquity(val *QuoteEquity) *NullableQuoteEquity

func (NullableQuoteEquity) Get

func (NullableQuoteEquity) IsSet

func (v NullableQuoteEquity) IsSet() bool

func (NullableQuoteEquity) MarshalJSON

func (v NullableQuoteEquity) MarshalJSON() ([]byte, error)

func (*NullableQuoteEquity) Set

func (v *NullableQuoteEquity) Set(val *QuoteEquity)

func (*NullableQuoteEquity) UnmarshalJSON

func (v *NullableQuoteEquity) UnmarshalJSON(src []byte) error

func (*NullableQuoteEquity) Unset

func (v *NullableQuoteEquity) Unset()

type NullableQuoteError

type NullableQuoteError struct {
	// contains filtered or unexported fields
}

func NewNullableQuoteError

func NewNullableQuoteError(val *QuoteError) *NullableQuoteError

func (NullableQuoteError) Get

func (v NullableQuoteError) Get() *QuoteError

func (NullableQuoteError) IsSet

func (v NullableQuoteError) IsSet() bool

func (NullableQuoteError) MarshalJSON

func (v NullableQuoteError) MarshalJSON() ([]byte, error)

func (*NullableQuoteError) Set

func (v *NullableQuoteError) Set(val *QuoteError)

func (*NullableQuoteError) UnmarshalJSON

func (v *NullableQuoteError) UnmarshalJSON(src []byte) error

func (*NullableQuoteError) Unset

func (v *NullableQuoteError) Unset()

type NullableQuoteForex

type NullableQuoteForex struct {
	// contains filtered or unexported fields
}

func NewNullableQuoteForex

func NewNullableQuoteForex(val *QuoteForex) *NullableQuoteForex

func (NullableQuoteForex) Get

func (v NullableQuoteForex) Get() *QuoteForex

func (NullableQuoteForex) IsSet

func (v NullableQuoteForex) IsSet() bool

func (NullableQuoteForex) MarshalJSON

func (v NullableQuoteForex) MarshalJSON() ([]byte, error)

func (*NullableQuoteForex) Set

func (v *NullableQuoteForex) Set(val *QuoteForex)

func (*NullableQuoteForex) UnmarshalJSON

func (v *NullableQuoteForex) UnmarshalJSON(src []byte) error

func (*NullableQuoteForex) Unset

func (v *NullableQuoteForex) Unset()

type NullableQuoteFuture

type NullableQuoteFuture struct {
	// contains filtered or unexported fields
}

func NewNullableQuoteFuture

func NewNullableQuoteFuture(val *QuoteFuture) *NullableQuoteFuture

func (NullableQuoteFuture) Get

func (NullableQuoteFuture) IsSet

func (v NullableQuoteFuture) IsSet() bool

func (NullableQuoteFuture) MarshalJSON

func (v NullableQuoteFuture) MarshalJSON() ([]byte, error)

func (*NullableQuoteFuture) Set

func (v *NullableQuoteFuture) Set(val *QuoteFuture)

func (*NullableQuoteFuture) UnmarshalJSON

func (v *NullableQuoteFuture) UnmarshalJSON(src []byte) error

func (*NullableQuoteFuture) Unset

func (v *NullableQuoteFuture) Unset()

type NullableQuoteFutureOption

type NullableQuoteFutureOption struct {
	// contains filtered or unexported fields
}

func NewNullableQuoteFutureOption

func NewNullableQuoteFutureOption(val *QuoteFutureOption) *NullableQuoteFutureOption

func (NullableQuoteFutureOption) Get

func (NullableQuoteFutureOption) IsSet

func (v NullableQuoteFutureOption) IsSet() bool

func (NullableQuoteFutureOption) MarshalJSON

func (v NullableQuoteFutureOption) MarshalJSON() ([]byte, error)

func (*NullableQuoteFutureOption) Set

func (*NullableQuoteFutureOption) UnmarshalJSON

func (v *NullableQuoteFutureOption) UnmarshalJSON(src []byte) error

func (*NullableQuoteFutureOption) Unset

func (v *NullableQuoteFutureOption) Unset()

type NullableQuoteIndex

type NullableQuoteIndex struct {
	// contains filtered or unexported fields
}

func NewNullableQuoteIndex

func NewNullableQuoteIndex(val *QuoteIndex) *NullableQuoteIndex

func (NullableQuoteIndex) Get

func (v NullableQuoteIndex) Get() *QuoteIndex

func (NullableQuoteIndex) IsSet

func (v NullableQuoteIndex) IsSet() bool

func (NullableQuoteIndex) MarshalJSON

func (v NullableQuoteIndex) MarshalJSON() ([]byte, error)

func (*NullableQuoteIndex) Set

func (v *NullableQuoteIndex) Set(val *QuoteIndex)

func (*NullableQuoteIndex) UnmarshalJSON

func (v *NullableQuoteIndex) UnmarshalJSON(src []byte) error

func (*NullableQuoteIndex) Unset

func (v *NullableQuoteIndex) Unset()

type NullableQuoteMutualFund

type NullableQuoteMutualFund struct {
	// contains filtered or unexported fields
}

func NewNullableQuoteMutualFund

func NewNullableQuoteMutualFund(val *QuoteMutualFund) *NullableQuoteMutualFund

func (NullableQuoteMutualFund) Get

func (NullableQuoteMutualFund) IsSet

func (v NullableQuoteMutualFund) IsSet() bool

func (NullableQuoteMutualFund) MarshalJSON

func (v NullableQuoteMutualFund) MarshalJSON() ([]byte, error)

func (*NullableQuoteMutualFund) Set

func (*NullableQuoteMutualFund) UnmarshalJSON

func (v *NullableQuoteMutualFund) UnmarshalJSON(src []byte) error

func (*NullableQuoteMutualFund) Unset

func (v *NullableQuoteMutualFund) Unset()

type NullableQuoteOption

type NullableQuoteOption struct {
	// contains filtered or unexported fields
}

func NewNullableQuoteOption

func NewNullableQuoteOption(val *QuoteOption) *NullableQuoteOption

func (NullableQuoteOption) Get

func (NullableQuoteOption) IsSet

func (v NullableQuoteOption) IsSet() bool

func (NullableQuoteOption) MarshalJSON

func (v NullableQuoteOption) MarshalJSON() ([]byte, error)

func (*NullableQuoteOption) Set

func (v *NullableQuoteOption) Set(val *QuoteOption)

func (*NullableQuoteOption) UnmarshalJSON

func (v *NullableQuoteOption) UnmarshalJSON(src []byte) error

func (*NullableQuoteOption) Unset

func (v *NullableQuoteOption) Unset()

type NullableQuoteRequest

type NullableQuoteRequest struct {
	// contains filtered or unexported fields
}

func NewNullableQuoteRequest

func NewNullableQuoteRequest(val *QuoteRequest) *NullableQuoteRequest

func (NullableQuoteRequest) Get

func (NullableQuoteRequest) IsSet

func (v NullableQuoteRequest) IsSet() bool

func (NullableQuoteRequest) MarshalJSON

func (v NullableQuoteRequest) MarshalJSON() ([]byte, error)

func (*NullableQuoteRequest) Set

func (v *NullableQuoteRequest) Set(val *QuoteRequest)

func (*NullableQuoteRequest) UnmarshalJSON

func (v *NullableQuoteRequest) UnmarshalJSON(src []byte) error

func (*NullableQuoteRequest) Unset

func (v *NullableQuoteRequest) Unset()

type NullableQuoteResponseObject

type NullableQuoteResponseObject struct {
	// contains filtered or unexported fields
}

func NewNullableQuoteResponseObject

func NewNullableQuoteResponseObject(val *QuoteResponseObject) *NullableQuoteResponseObject

func (NullableQuoteResponseObject) Get

func (NullableQuoteResponseObject) IsSet

func (NullableQuoteResponseObject) MarshalJSON

func (v NullableQuoteResponseObject) MarshalJSON() ([]byte, error)

func (*NullableQuoteResponseObject) Set

func (*NullableQuoteResponseObject) UnmarshalJSON

func (v *NullableQuoteResponseObject) UnmarshalJSON(src []byte) error

func (*NullableQuoteResponseObject) Unset

func (v *NullableQuoteResponseObject) Unset()

type NullableQuoteType

type NullableQuoteType struct {
	// contains filtered or unexported fields
}

func NewNullableQuoteType

func NewNullableQuoteType(val *QuoteType) *NullableQuoteType

func (NullableQuoteType) Get

func (v NullableQuoteType) Get() *QuoteType

func (NullableQuoteType) IsSet

func (v NullableQuoteType) IsSet() bool

func (NullableQuoteType) MarshalJSON

func (v NullableQuoteType) MarshalJSON() ([]byte, error)

func (*NullableQuoteType) Set

func (v *NullableQuoteType) Set(val *QuoteType)

func (*NullableQuoteType) UnmarshalJSON

func (v *NullableQuoteType) UnmarshalJSON(src []byte) error

func (*NullableQuoteType) Unset

func (v *NullableQuoteType) Unset()

type NullableReferenceEquity

type NullableReferenceEquity struct {
	// contains filtered or unexported fields
}

func NewNullableReferenceEquity

func NewNullableReferenceEquity(val *ReferenceEquity) *NullableReferenceEquity

func (NullableReferenceEquity) Get

func (NullableReferenceEquity) IsSet

func (v NullableReferenceEquity) IsSet() bool

func (NullableReferenceEquity) MarshalJSON

func (v NullableReferenceEquity) MarshalJSON() ([]byte, error)

func (*NullableReferenceEquity) Set

func (*NullableReferenceEquity) UnmarshalJSON

func (v *NullableReferenceEquity) UnmarshalJSON(src []byte) error

func (*NullableReferenceEquity) Unset

func (v *NullableReferenceEquity) Unset()

type NullableReferenceForex

type NullableReferenceForex struct {
	// contains filtered or unexported fields
}

func NewNullableReferenceForex

func NewNullableReferenceForex(val *ReferenceForex) *NullableReferenceForex

func (NullableReferenceForex) Get

func (NullableReferenceForex) IsSet

func (v NullableReferenceForex) IsSet() bool

func (NullableReferenceForex) MarshalJSON

func (v NullableReferenceForex) MarshalJSON() ([]byte, error)

func (*NullableReferenceForex) Set

func (*NullableReferenceForex) UnmarshalJSON

func (v *NullableReferenceForex) UnmarshalJSON(src []byte) error

func (*NullableReferenceForex) Unset

func (v *NullableReferenceForex) Unset()

type NullableReferenceFuture

type NullableReferenceFuture struct {
	// contains filtered or unexported fields
}

func NewNullableReferenceFuture

func NewNullableReferenceFuture(val *ReferenceFuture) *NullableReferenceFuture

func (NullableReferenceFuture) Get

func (NullableReferenceFuture) IsSet

func (v NullableReferenceFuture) IsSet() bool

func (NullableReferenceFuture) MarshalJSON

func (v NullableReferenceFuture) MarshalJSON() ([]byte, error)

func (*NullableReferenceFuture) Set

func (*NullableReferenceFuture) UnmarshalJSON

func (v *NullableReferenceFuture) UnmarshalJSON(src []byte) error

func (*NullableReferenceFuture) Unset

func (v *NullableReferenceFuture) Unset()

type NullableReferenceFutureOption

type NullableReferenceFutureOption struct {
	// contains filtered or unexported fields
}

func (NullableReferenceFutureOption) Get

func (NullableReferenceFutureOption) IsSet

func (NullableReferenceFutureOption) MarshalJSON

func (v NullableReferenceFutureOption) MarshalJSON() ([]byte, error)

func (*NullableReferenceFutureOption) Set

func (*NullableReferenceFutureOption) UnmarshalJSON

func (v *NullableReferenceFutureOption) UnmarshalJSON(src []byte) error

func (*NullableReferenceFutureOption) Unset

func (v *NullableReferenceFutureOption) Unset()

type NullableReferenceIndex

type NullableReferenceIndex struct {
	// contains filtered or unexported fields
}

func NewNullableReferenceIndex

func NewNullableReferenceIndex(val *ReferenceIndex) *NullableReferenceIndex

func (NullableReferenceIndex) Get

func (NullableReferenceIndex) IsSet

func (v NullableReferenceIndex) IsSet() bool

func (NullableReferenceIndex) MarshalJSON

func (v NullableReferenceIndex) MarshalJSON() ([]byte, error)

func (*NullableReferenceIndex) Set

func (*NullableReferenceIndex) UnmarshalJSON

func (v *NullableReferenceIndex) UnmarshalJSON(src []byte) error

func (*NullableReferenceIndex) Unset

func (v *NullableReferenceIndex) Unset()

type NullableReferenceMutualFund

type NullableReferenceMutualFund struct {
	// contains filtered or unexported fields
}

func NewNullableReferenceMutualFund

func NewNullableReferenceMutualFund(val *ReferenceMutualFund) *NullableReferenceMutualFund

func (NullableReferenceMutualFund) Get

func (NullableReferenceMutualFund) IsSet

func (NullableReferenceMutualFund) MarshalJSON

func (v NullableReferenceMutualFund) MarshalJSON() ([]byte, error)

func (*NullableReferenceMutualFund) Set

func (*NullableReferenceMutualFund) UnmarshalJSON

func (v *NullableReferenceMutualFund) UnmarshalJSON(src []byte) error

func (*NullableReferenceMutualFund) Unset

func (v *NullableReferenceMutualFund) Unset()

type NullableReferenceOption

type NullableReferenceOption struct {
	// contains filtered or unexported fields
}

func NewNullableReferenceOption

func NewNullableReferenceOption(val *ReferenceOption) *NullableReferenceOption

func (NullableReferenceOption) Get

func (NullableReferenceOption) IsSet

func (v NullableReferenceOption) IsSet() bool

func (NullableReferenceOption) MarshalJSON

func (v NullableReferenceOption) MarshalJSON() ([]byte, error)

func (*NullableReferenceOption) Set

func (*NullableReferenceOption) UnmarshalJSON

func (v *NullableReferenceOption) UnmarshalJSON(src []byte) error

func (*NullableReferenceOption) Unset

func (v *NullableReferenceOption) Unset()

type NullableRegularMarket

type NullableRegularMarket struct {
	// contains filtered or unexported fields
}

func NewNullableRegularMarket

func NewNullableRegularMarket(val *RegularMarket) *NullableRegularMarket

func (NullableRegularMarket) Get

func (NullableRegularMarket) IsSet

func (v NullableRegularMarket) IsSet() bool

func (NullableRegularMarket) MarshalJSON

func (v NullableRegularMarket) MarshalJSON() ([]byte, error)

func (*NullableRegularMarket) Set

func (v *NullableRegularMarket) Set(val *RegularMarket)

func (*NullableRegularMarket) UnmarshalJSON

func (v *NullableRegularMarket) UnmarshalJSON(src []byte) error

func (*NullableRegularMarket) Unset

func (v *NullableRegularMarket) Unset()

type NullableScreener

type NullableScreener struct {
	// contains filtered or unexported fields
}

func NewNullableScreener

func NewNullableScreener(val *Screener) *NullableScreener

func (NullableScreener) Get

func (v NullableScreener) Get() *Screener

func (NullableScreener) IsSet

func (v NullableScreener) IsSet() bool

func (NullableScreener) MarshalJSON

func (v NullableScreener) MarshalJSON() ([]byte, error)

func (*NullableScreener) Set

func (v *NullableScreener) Set(val *Screener)

func (*NullableScreener) UnmarshalJSON

func (v *NullableScreener) UnmarshalJSON(src []byte) error

func (*NullableScreener) Unset

func (v *NullableScreener) Unset()

type NullableSettlementType

type NullableSettlementType struct {
	// contains filtered or unexported fields
}

func NewNullableSettlementType

func NewNullableSettlementType(val *SettlementType) *NullableSettlementType

func (NullableSettlementType) Get

func (NullableSettlementType) IsSet

func (v NullableSettlementType) IsSet() bool

func (NullableSettlementType) MarshalJSON

func (v NullableSettlementType) MarshalJSON() ([]byte, error)

func (*NullableSettlementType) Set

func (*NullableSettlementType) UnmarshalJSON

func (v *NullableSettlementType) UnmarshalJSON(src []byte) error

func (*NullableSettlementType) Unset

func (v *NullableSettlementType) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUnderlying

type NullableUnderlying struct {
	// contains filtered or unexported fields
}

func NewNullableUnderlying

func NewNullableUnderlying(val *Underlying) *NullableUnderlying

func (NullableUnderlying) Get

func (v NullableUnderlying) Get() *Underlying

func (NullableUnderlying) IsSet

func (v NullableUnderlying) IsSet() bool

func (NullableUnderlying) MarshalJSON

func (v NullableUnderlying) MarshalJSON() ([]byte, error)

func (*NullableUnderlying) Set

func (v *NullableUnderlying) Set(val *Underlying)

func (*NullableUnderlying) UnmarshalJSON

func (v *NullableUnderlying) UnmarshalJSON(src []byte) error

func (*NullableUnderlying) Unset

func (v *NullableUnderlying) Unset()

type OptionChain

type OptionChain struct {
	Symbol           *string                               `json:"symbol,omitempty"`
	Status           *string                               `json:"status,omitempty"`
	Underlying       *Underlying                           `json:"underlying,omitempty"`
	Strategy         *string                               `json:"strategy,omitempty"`
	Interval         *float64                              `json:"interval,omitempty"`
	IsDelayed        *bool                                 `json:"isDelayed,omitempty"`
	IsIndex          *bool                                 `json:"isIndex,omitempty"`
	DaysToExpiration *float64                              `json:"daysToExpiration,omitempty"`
	InterestRate     *float64                              `json:"interestRate,omitempty"`
	UnderlyingPrice  *float64                              `json:"underlyingPrice,omitempty"`
	Volatility       *float64                              `json:"volatility,omitempty"`
	CallExpDateMap   *map[string]map[string]OptionContract `json:"callExpDateMap,omitempty"`
	PutExpDateMap    *map[string]map[string]OptionContract `json:"putExpDateMap,omitempty"`
}

OptionChain struct for OptionChain

func NewOptionChain

func NewOptionChain() *OptionChain

NewOptionChain instantiates a new OptionChain object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOptionChainWithDefaults

func NewOptionChainWithDefaults() *OptionChain

NewOptionChainWithDefaults instantiates a new OptionChain object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OptionChain) GetCallExpDateMap

func (o *OptionChain) GetCallExpDateMap() map[string]map[string]OptionContract

GetCallExpDateMap returns the CallExpDateMap field value if set, zero value otherwise.

func (*OptionChain) GetCallExpDateMapOk

func (o *OptionChain) GetCallExpDateMapOk() (*map[string]map[string]OptionContract, bool)

GetCallExpDateMapOk returns a tuple with the CallExpDateMap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) GetDaysToExpiration

func (o *OptionChain) GetDaysToExpiration() float64

GetDaysToExpiration returns the DaysToExpiration field value if set, zero value otherwise.

func (*OptionChain) GetDaysToExpirationOk

func (o *OptionChain) GetDaysToExpirationOk() (*float64, bool)

GetDaysToExpirationOk returns a tuple with the DaysToExpiration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) GetInterestRate

func (o *OptionChain) GetInterestRate() float64

GetInterestRate returns the InterestRate field value if set, zero value otherwise.

func (*OptionChain) GetInterestRateOk

func (o *OptionChain) GetInterestRateOk() (*float64, bool)

GetInterestRateOk returns a tuple with the InterestRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) GetInterval

func (o *OptionChain) GetInterval() float64

GetInterval returns the Interval field value if set, zero value otherwise.

func (*OptionChain) GetIntervalOk

func (o *OptionChain) GetIntervalOk() (*float64, bool)

GetIntervalOk returns a tuple with the Interval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) GetIsDelayed

func (o *OptionChain) GetIsDelayed() bool

GetIsDelayed returns the IsDelayed field value if set, zero value otherwise.

func (*OptionChain) GetIsDelayedOk

func (o *OptionChain) GetIsDelayedOk() (*bool, bool)

GetIsDelayedOk returns a tuple with the IsDelayed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) GetIsIndex

func (o *OptionChain) GetIsIndex() bool

GetIsIndex returns the IsIndex field value if set, zero value otherwise.

func (*OptionChain) GetIsIndexOk

func (o *OptionChain) GetIsIndexOk() (*bool, bool)

GetIsIndexOk returns a tuple with the IsIndex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) GetPutExpDateMap

func (o *OptionChain) GetPutExpDateMap() map[string]map[string]OptionContract

GetPutExpDateMap returns the PutExpDateMap field value if set, zero value otherwise.

func (*OptionChain) GetPutExpDateMapOk

func (o *OptionChain) GetPutExpDateMapOk() (*map[string]map[string]OptionContract, bool)

GetPutExpDateMapOk returns a tuple with the PutExpDateMap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) GetStatus

func (o *OptionChain) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*OptionChain) GetStatusOk

func (o *OptionChain) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) GetStrategy

func (o *OptionChain) GetStrategy() string

GetStrategy returns the Strategy field value if set, zero value otherwise.

func (*OptionChain) GetStrategyOk

func (o *OptionChain) GetStrategyOk() (*string, bool)

GetStrategyOk returns a tuple with the Strategy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) GetSymbol

func (o *OptionChain) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*OptionChain) GetSymbolOk

func (o *OptionChain) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) GetUnderlying

func (o *OptionChain) GetUnderlying() Underlying

GetUnderlying returns the Underlying field value if set, zero value otherwise.

func (*OptionChain) GetUnderlyingOk

func (o *OptionChain) GetUnderlyingOk() (*Underlying, bool)

GetUnderlyingOk returns a tuple with the Underlying field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) GetUnderlyingPrice

func (o *OptionChain) GetUnderlyingPrice() float64

GetUnderlyingPrice returns the UnderlyingPrice field value if set, zero value otherwise.

func (*OptionChain) GetUnderlyingPriceOk

func (o *OptionChain) GetUnderlyingPriceOk() (*float64, bool)

GetUnderlyingPriceOk returns a tuple with the UnderlyingPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) GetVolatility

func (o *OptionChain) GetVolatility() float64

GetVolatility returns the Volatility field value if set, zero value otherwise.

func (*OptionChain) GetVolatilityOk

func (o *OptionChain) GetVolatilityOk() (*float64, bool)

GetVolatilityOk returns a tuple with the Volatility field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionChain) HasCallExpDateMap

func (o *OptionChain) HasCallExpDateMap() bool

HasCallExpDateMap returns a boolean if a field has been set.

func (*OptionChain) HasDaysToExpiration

func (o *OptionChain) HasDaysToExpiration() bool

HasDaysToExpiration returns a boolean if a field has been set.

func (*OptionChain) HasInterestRate

func (o *OptionChain) HasInterestRate() bool

HasInterestRate returns a boolean if a field has been set.

func (*OptionChain) HasInterval

func (o *OptionChain) HasInterval() bool

HasInterval returns a boolean if a field has been set.

func (*OptionChain) HasIsDelayed

func (o *OptionChain) HasIsDelayed() bool

HasIsDelayed returns a boolean if a field has been set.

func (*OptionChain) HasIsIndex

func (o *OptionChain) HasIsIndex() bool

HasIsIndex returns a boolean if a field has been set.

func (*OptionChain) HasPutExpDateMap

func (o *OptionChain) HasPutExpDateMap() bool

HasPutExpDateMap returns a boolean if a field has been set.

func (*OptionChain) HasStatus

func (o *OptionChain) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*OptionChain) HasStrategy

func (o *OptionChain) HasStrategy() bool

HasStrategy returns a boolean if a field has been set.

func (*OptionChain) HasSymbol

func (o *OptionChain) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*OptionChain) HasUnderlying

func (o *OptionChain) HasUnderlying() bool

HasUnderlying returns a boolean if a field has been set.

func (*OptionChain) HasUnderlyingPrice

func (o *OptionChain) HasUnderlyingPrice() bool

HasUnderlyingPrice returns a boolean if a field has been set.

func (*OptionChain) HasVolatility

func (o *OptionChain) HasVolatility() bool

HasVolatility returns a boolean if a field has been set.

func (OptionChain) MarshalJSON

func (o OptionChain) MarshalJSON() ([]byte, error)

func (*OptionChain) SetCallExpDateMap

func (o *OptionChain) SetCallExpDateMap(v map[string]map[string]OptionContract)

SetCallExpDateMap gets a reference to the given map[string]map[string]OptionContract and assigns it to the CallExpDateMap field.

func (*OptionChain) SetDaysToExpiration

func (o *OptionChain) SetDaysToExpiration(v float64)

SetDaysToExpiration gets a reference to the given float64 and assigns it to the DaysToExpiration field.

func (*OptionChain) SetInterestRate

func (o *OptionChain) SetInterestRate(v float64)

SetInterestRate gets a reference to the given float64 and assigns it to the InterestRate field.

func (*OptionChain) SetInterval

func (o *OptionChain) SetInterval(v float64)

SetInterval gets a reference to the given float64 and assigns it to the Interval field.

func (*OptionChain) SetIsDelayed

func (o *OptionChain) SetIsDelayed(v bool)

SetIsDelayed gets a reference to the given bool and assigns it to the IsDelayed field.

func (*OptionChain) SetIsIndex

func (o *OptionChain) SetIsIndex(v bool)

SetIsIndex gets a reference to the given bool and assigns it to the IsIndex field.

func (*OptionChain) SetPutExpDateMap

func (o *OptionChain) SetPutExpDateMap(v map[string]map[string]OptionContract)

SetPutExpDateMap gets a reference to the given map[string]map[string]OptionContract and assigns it to the PutExpDateMap field.

func (*OptionChain) SetStatus

func (o *OptionChain) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*OptionChain) SetStrategy

func (o *OptionChain) SetStrategy(v string)

SetStrategy gets a reference to the given string and assigns it to the Strategy field.

func (*OptionChain) SetSymbol

func (o *OptionChain) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*OptionChain) SetUnderlying

func (o *OptionChain) SetUnderlying(v Underlying)

SetUnderlying gets a reference to the given Underlying and assigns it to the Underlying field.

func (*OptionChain) SetUnderlyingPrice

func (o *OptionChain) SetUnderlyingPrice(v float64)

SetUnderlyingPrice gets a reference to the given float64 and assigns it to the UnderlyingPrice field.

func (*OptionChain) SetVolatility

func (o *OptionChain) SetVolatility(v float64)

SetVolatility gets a reference to the given float64 and assigns it to the Volatility field.

func (OptionChain) ToMap

func (o OptionChain) ToMap() (map[string]interface{}, error)

type OptionChainsAPIService

type OptionChainsAPIService service

OptionChainsAPIService OptionChainsAPI service

func (*OptionChainsAPIService) GetChain

GetChain Get option chain for an optionable Symbol

Get Option Chain including information on options contracts associated with each expiration.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetChainRequest

func (*OptionChainsAPIService) GetChainExecute

Execute executes the request

@return OptionChain

type OptionContract

type OptionContract struct {
	PutCall                *string              `json:"putCall,omitempty"`
	Symbol                 *string              `json:"symbol,omitempty"`
	Description            *string              `json:"description,omitempty"`
	ExchangeName           *string              `json:"exchangeName,omitempty"`
	BidPrice               *float64             `json:"bidPrice,omitempty"`
	AskPrice               *float64             `json:"askPrice,omitempty"`
	LastPrice              *float64             `json:"lastPrice,omitempty"`
	MarkPrice              *float64             `json:"markPrice,omitempty"`
	BidSize                *int32               `json:"bidSize,omitempty"`
	AskSize                *int32               `json:"askSize,omitempty"`
	LastSize               *int32               `json:"lastSize,omitempty"`
	HighPrice              *float64             `json:"highPrice,omitempty"`
	LowPrice               *float64             `json:"lowPrice,omitempty"`
	OpenPrice              *float64             `json:"openPrice,omitempty"`
	ClosePrice             *float64             `json:"closePrice,omitempty"`
	TotalVolume            *int32               `json:"totalVolume,omitempty"`
	TradeDate              *float32             `json:"tradeDate,omitempty"`
	QuoteTimeInLong        *int32               `json:"quoteTimeInLong,omitempty"`
	TradeTimeInLong        *int32               `json:"tradeTimeInLong,omitempty"`
	NetChange              *float64             `json:"netChange,omitempty"`
	Volatility             *float64             `json:"volatility,omitempty"`
	Delta                  *float64             `json:"delta,omitempty"`
	Gamma                  *float64             `json:"gamma,omitempty"`
	Theta                  *float64             `json:"theta,omitempty"`
	Vega                   *float64             `json:"vega,omitempty"`
	Rho                    *float64             `json:"rho,omitempty"`
	TimeValue              *float64             `json:"timeValue,omitempty"`
	OpenInterest           *float64             `json:"openInterest,omitempty"`
	IsInTheMoney           *bool                `json:"isInTheMoney,omitempty"`
	TheoreticalOptionValue *float64             `json:"theoreticalOptionValue,omitempty"`
	TheoreticalVolatility  *float64             `json:"theoreticalVolatility,omitempty"`
	IsMini                 *bool                `json:"isMini,omitempty"`
	IsNonStandard          *bool                `json:"isNonStandard,omitempty"`
	OptionDeliverablesList []OptionDeliverables `json:"optionDeliverablesList,omitempty"`
	StrikePrice            *float64             `json:"strikePrice,omitempty"`
	ExpirationDate         *string              `json:"expirationDate,omitempty"`
	DaysToExpiration       *float32             `json:"daysToExpiration,omitempty"`
	ExpirationType         *ExpirationType      `json:"expirationType,omitempty"`
	LastTradingDay         *float32             `json:"lastTradingDay,omitempty"`
	Multiplier             *float64             `json:"multiplier,omitempty"`
	SettlementType         *SettlementType      `json:"settlementType,omitempty"`
	DeliverableNote        *string              `json:"deliverableNote,omitempty"`
	IsIndexOption          *bool                `json:"isIndexOption,omitempty"`
	PercentChange          *float64             `json:"percentChange,omitempty"`
	MarkChange             *float64             `json:"markChange,omitempty"`
	MarkPercentChange      *float64             `json:"markPercentChange,omitempty"`
	IsPennyPilot           *bool                `json:"isPennyPilot,omitempty"`
	IntrinsicValue         *float64             `json:"intrinsicValue,omitempty"`
	OptionRoot             *string              `json:"optionRoot,omitempty"`
}

OptionContract struct for OptionContract

func NewOptionContract

func NewOptionContract() *OptionContract

NewOptionContract instantiates a new OptionContract object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOptionContractWithDefaults

func NewOptionContractWithDefaults() *OptionContract

NewOptionContractWithDefaults instantiates a new OptionContract object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OptionContract) GetAskPrice

func (o *OptionContract) GetAskPrice() float64

GetAskPrice returns the AskPrice field value if set, zero value otherwise.

func (*OptionContract) GetAskPriceOk

func (o *OptionContract) GetAskPriceOk() (*float64, bool)

GetAskPriceOk returns a tuple with the AskPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetAskSize

func (o *OptionContract) GetAskSize() int32

GetAskSize returns the AskSize field value if set, zero value otherwise.

func (*OptionContract) GetAskSizeOk

func (o *OptionContract) GetAskSizeOk() (*int32, bool)

GetAskSizeOk returns a tuple with the AskSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetBidPrice

func (o *OptionContract) GetBidPrice() float64

GetBidPrice returns the BidPrice field value if set, zero value otherwise.

func (*OptionContract) GetBidPriceOk

func (o *OptionContract) GetBidPriceOk() (*float64, bool)

GetBidPriceOk returns a tuple with the BidPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetBidSize

func (o *OptionContract) GetBidSize() int32

GetBidSize returns the BidSize field value if set, zero value otherwise.

func (*OptionContract) GetBidSizeOk

func (o *OptionContract) GetBidSizeOk() (*int32, bool)

GetBidSizeOk returns a tuple with the BidSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetClosePrice

func (o *OptionContract) GetClosePrice() float64

GetClosePrice returns the ClosePrice field value if set, zero value otherwise.

func (*OptionContract) GetClosePriceOk

func (o *OptionContract) GetClosePriceOk() (*float64, bool)

GetClosePriceOk returns a tuple with the ClosePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetDaysToExpiration

func (o *OptionContract) GetDaysToExpiration() float32

GetDaysToExpiration returns the DaysToExpiration field value if set, zero value otherwise.

func (*OptionContract) GetDaysToExpirationOk

func (o *OptionContract) GetDaysToExpirationOk() (*float32, bool)

GetDaysToExpirationOk returns a tuple with the DaysToExpiration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetDeliverableNote

func (o *OptionContract) GetDeliverableNote() string

GetDeliverableNote returns the DeliverableNote field value if set, zero value otherwise.

func (*OptionContract) GetDeliverableNoteOk

func (o *OptionContract) GetDeliverableNoteOk() (*string, bool)

GetDeliverableNoteOk returns a tuple with the DeliverableNote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetDelta

func (o *OptionContract) GetDelta() float64

GetDelta returns the Delta field value if set, zero value otherwise.

func (*OptionContract) GetDeltaOk

func (o *OptionContract) GetDeltaOk() (*float64, bool)

GetDeltaOk returns a tuple with the Delta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetDescription

func (o *OptionContract) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*OptionContract) GetDescriptionOk

func (o *OptionContract) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetExchangeName

func (o *OptionContract) GetExchangeName() string

GetExchangeName returns the ExchangeName field value if set, zero value otherwise.

func (*OptionContract) GetExchangeNameOk

func (o *OptionContract) GetExchangeNameOk() (*string, bool)

GetExchangeNameOk returns a tuple with the ExchangeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetExpirationDate

func (o *OptionContract) GetExpirationDate() string

GetExpirationDate returns the ExpirationDate field value if set, zero value otherwise.

func (*OptionContract) GetExpirationDateOk

func (o *OptionContract) GetExpirationDateOk() (*string, bool)

GetExpirationDateOk returns a tuple with the ExpirationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetExpirationType

func (o *OptionContract) GetExpirationType() ExpirationType

GetExpirationType returns the ExpirationType field value if set, zero value otherwise.

func (*OptionContract) GetExpirationTypeOk

func (o *OptionContract) GetExpirationTypeOk() (*ExpirationType, bool)

GetExpirationTypeOk returns a tuple with the ExpirationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetGamma

func (o *OptionContract) GetGamma() float64

GetGamma returns the Gamma field value if set, zero value otherwise.

func (*OptionContract) GetGammaOk

func (o *OptionContract) GetGammaOk() (*float64, bool)

GetGammaOk returns a tuple with the Gamma field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetHighPrice

func (o *OptionContract) GetHighPrice() float64

GetHighPrice returns the HighPrice field value if set, zero value otherwise.

func (*OptionContract) GetHighPriceOk

func (o *OptionContract) GetHighPriceOk() (*float64, bool)

GetHighPriceOk returns a tuple with the HighPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetIntrinsicValue

func (o *OptionContract) GetIntrinsicValue() float64

GetIntrinsicValue returns the IntrinsicValue field value if set, zero value otherwise.

func (*OptionContract) GetIntrinsicValueOk

func (o *OptionContract) GetIntrinsicValueOk() (*float64, bool)

GetIntrinsicValueOk returns a tuple with the IntrinsicValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetIsInTheMoney

func (o *OptionContract) GetIsInTheMoney() bool

GetIsInTheMoney returns the IsInTheMoney field value if set, zero value otherwise.

func (*OptionContract) GetIsInTheMoneyOk

func (o *OptionContract) GetIsInTheMoneyOk() (*bool, bool)

GetIsInTheMoneyOk returns a tuple with the IsInTheMoney field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetIsIndexOption

func (o *OptionContract) GetIsIndexOption() bool

GetIsIndexOption returns the IsIndexOption field value if set, zero value otherwise.

func (*OptionContract) GetIsIndexOptionOk

func (o *OptionContract) GetIsIndexOptionOk() (*bool, bool)

GetIsIndexOptionOk returns a tuple with the IsIndexOption field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetIsMini

func (o *OptionContract) GetIsMini() bool

GetIsMini returns the IsMini field value if set, zero value otherwise.

func (*OptionContract) GetIsMiniOk

func (o *OptionContract) GetIsMiniOk() (*bool, bool)

GetIsMiniOk returns a tuple with the IsMini field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetIsNonStandard

func (o *OptionContract) GetIsNonStandard() bool

GetIsNonStandard returns the IsNonStandard field value if set, zero value otherwise.

func (*OptionContract) GetIsNonStandardOk

func (o *OptionContract) GetIsNonStandardOk() (*bool, bool)

GetIsNonStandardOk returns a tuple with the IsNonStandard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetIsPennyPilot

func (o *OptionContract) GetIsPennyPilot() bool

GetIsPennyPilot returns the IsPennyPilot field value if set, zero value otherwise.

func (*OptionContract) GetIsPennyPilotOk

func (o *OptionContract) GetIsPennyPilotOk() (*bool, bool)

GetIsPennyPilotOk returns a tuple with the IsPennyPilot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetLastPrice

func (o *OptionContract) GetLastPrice() float64

GetLastPrice returns the LastPrice field value if set, zero value otherwise.

func (*OptionContract) GetLastPriceOk

func (o *OptionContract) GetLastPriceOk() (*float64, bool)

GetLastPriceOk returns a tuple with the LastPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetLastSize

func (o *OptionContract) GetLastSize() int32

GetLastSize returns the LastSize field value if set, zero value otherwise.

func (*OptionContract) GetLastSizeOk

func (o *OptionContract) GetLastSizeOk() (*int32, bool)

GetLastSizeOk returns a tuple with the LastSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetLastTradingDay

func (o *OptionContract) GetLastTradingDay() float32

GetLastTradingDay returns the LastTradingDay field value if set, zero value otherwise.

func (*OptionContract) GetLastTradingDayOk

func (o *OptionContract) GetLastTradingDayOk() (*float32, bool)

GetLastTradingDayOk returns a tuple with the LastTradingDay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetLowPrice

func (o *OptionContract) GetLowPrice() float64

GetLowPrice returns the LowPrice field value if set, zero value otherwise.

func (*OptionContract) GetLowPriceOk

func (o *OptionContract) GetLowPriceOk() (*float64, bool)

GetLowPriceOk returns a tuple with the LowPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetMarkChange

func (o *OptionContract) GetMarkChange() float64

GetMarkChange returns the MarkChange field value if set, zero value otherwise.

func (*OptionContract) GetMarkChangeOk

func (o *OptionContract) GetMarkChangeOk() (*float64, bool)

GetMarkChangeOk returns a tuple with the MarkChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetMarkPercentChange

func (o *OptionContract) GetMarkPercentChange() float64

GetMarkPercentChange returns the MarkPercentChange field value if set, zero value otherwise.

func (*OptionContract) GetMarkPercentChangeOk

func (o *OptionContract) GetMarkPercentChangeOk() (*float64, bool)

GetMarkPercentChangeOk returns a tuple with the MarkPercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetMarkPrice

func (o *OptionContract) GetMarkPrice() float64

GetMarkPrice returns the MarkPrice field value if set, zero value otherwise.

func (*OptionContract) GetMarkPriceOk

func (o *OptionContract) GetMarkPriceOk() (*float64, bool)

GetMarkPriceOk returns a tuple with the MarkPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetMultiplier

func (o *OptionContract) GetMultiplier() float64

GetMultiplier returns the Multiplier field value if set, zero value otherwise.

func (*OptionContract) GetMultiplierOk

func (o *OptionContract) GetMultiplierOk() (*float64, bool)

GetMultiplierOk returns a tuple with the Multiplier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetNetChange

func (o *OptionContract) GetNetChange() float64

GetNetChange returns the NetChange field value if set, zero value otherwise.

func (*OptionContract) GetNetChangeOk

func (o *OptionContract) GetNetChangeOk() (*float64, bool)

GetNetChangeOk returns a tuple with the NetChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetOpenInterest

func (o *OptionContract) GetOpenInterest() float64

GetOpenInterest returns the OpenInterest field value if set, zero value otherwise.

func (*OptionContract) GetOpenInterestOk

func (o *OptionContract) GetOpenInterestOk() (*float64, bool)

GetOpenInterestOk returns a tuple with the OpenInterest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetOpenPrice

func (o *OptionContract) GetOpenPrice() float64

GetOpenPrice returns the OpenPrice field value if set, zero value otherwise.

func (*OptionContract) GetOpenPriceOk

func (o *OptionContract) GetOpenPriceOk() (*float64, bool)

GetOpenPriceOk returns a tuple with the OpenPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetOptionDeliverablesList

func (o *OptionContract) GetOptionDeliverablesList() []OptionDeliverables

GetOptionDeliverablesList returns the OptionDeliverablesList field value if set, zero value otherwise.

func (*OptionContract) GetOptionDeliverablesListOk

func (o *OptionContract) GetOptionDeliverablesListOk() ([]OptionDeliverables, bool)

GetOptionDeliverablesListOk returns a tuple with the OptionDeliverablesList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetOptionRoot

func (o *OptionContract) GetOptionRoot() string

GetOptionRoot returns the OptionRoot field value if set, zero value otherwise.

func (*OptionContract) GetOptionRootOk

func (o *OptionContract) GetOptionRootOk() (*string, bool)

GetOptionRootOk returns a tuple with the OptionRoot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetPercentChange

func (o *OptionContract) GetPercentChange() float64

GetPercentChange returns the PercentChange field value if set, zero value otherwise.

func (*OptionContract) GetPercentChangeOk

func (o *OptionContract) GetPercentChangeOk() (*float64, bool)

GetPercentChangeOk returns a tuple with the PercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetPutCall

func (o *OptionContract) GetPutCall() string

GetPutCall returns the PutCall field value if set, zero value otherwise.

func (*OptionContract) GetPutCallOk

func (o *OptionContract) GetPutCallOk() (*string, bool)

GetPutCallOk returns a tuple with the PutCall field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetQuoteTimeInLong

func (o *OptionContract) GetQuoteTimeInLong() int32

GetQuoteTimeInLong returns the QuoteTimeInLong field value if set, zero value otherwise.

func (*OptionContract) GetQuoteTimeInLongOk

func (o *OptionContract) GetQuoteTimeInLongOk() (*int32, bool)

GetQuoteTimeInLongOk returns a tuple with the QuoteTimeInLong field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetRho

func (o *OptionContract) GetRho() float64

GetRho returns the Rho field value if set, zero value otherwise.

func (*OptionContract) GetRhoOk

func (o *OptionContract) GetRhoOk() (*float64, bool)

GetRhoOk returns a tuple with the Rho field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetSettlementType

func (o *OptionContract) GetSettlementType() SettlementType

GetSettlementType returns the SettlementType field value if set, zero value otherwise.

func (*OptionContract) GetSettlementTypeOk

func (o *OptionContract) GetSettlementTypeOk() (*SettlementType, bool)

GetSettlementTypeOk returns a tuple with the SettlementType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetStrikePrice

func (o *OptionContract) GetStrikePrice() float64

GetStrikePrice returns the StrikePrice field value if set, zero value otherwise.

func (*OptionContract) GetStrikePriceOk

func (o *OptionContract) GetStrikePriceOk() (*float64, bool)

GetStrikePriceOk returns a tuple with the StrikePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetSymbol

func (o *OptionContract) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*OptionContract) GetSymbolOk

func (o *OptionContract) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetTheoreticalOptionValue

func (o *OptionContract) GetTheoreticalOptionValue() float64

GetTheoreticalOptionValue returns the TheoreticalOptionValue field value if set, zero value otherwise.

func (*OptionContract) GetTheoreticalOptionValueOk

func (o *OptionContract) GetTheoreticalOptionValueOk() (*float64, bool)

GetTheoreticalOptionValueOk returns a tuple with the TheoreticalOptionValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetTheoreticalVolatility

func (o *OptionContract) GetTheoreticalVolatility() float64

GetTheoreticalVolatility returns the TheoreticalVolatility field value if set, zero value otherwise.

func (*OptionContract) GetTheoreticalVolatilityOk

func (o *OptionContract) GetTheoreticalVolatilityOk() (*float64, bool)

GetTheoreticalVolatilityOk returns a tuple with the TheoreticalVolatility field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetTheta

func (o *OptionContract) GetTheta() float64

GetTheta returns the Theta field value if set, zero value otherwise.

func (*OptionContract) GetThetaOk

func (o *OptionContract) GetThetaOk() (*float64, bool)

GetThetaOk returns a tuple with the Theta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetTimeValue

func (o *OptionContract) GetTimeValue() float64

GetTimeValue returns the TimeValue field value if set, zero value otherwise.

func (*OptionContract) GetTimeValueOk

func (o *OptionContract) GetTimeValueOk() (*float64, bool)

GetTimeValueOk returns a tuple with the TimeValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetTotalVolume

func (o *OptionContract) GetTotalVolume() int32

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*OptionContract) GetTotalVolumeOk

func (o *OptionContract) GetTotalVolumeOk() (*int32, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetTradeDate

func (o *OptionContract) GetTradeDate() float32

GetTradeDate returns the TradeDate field value if set, zero value otherwise.

func (*OptionContract) GetTradeDateOk

func (o *OptionContract) GetTradeDateOk() (*float32, bool)

GetTradeDateOk returns a tuple with the TradeDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetTradeTimeInLong

func (o *OptionContract) GetTradeTimeInLong() int32

GetTradeTimeInLong returns the TradeTimeInLong field value if set, zero value otherwise.

func (*OptionContract) GetTradeTimeInLongOk

func (o *OptionContract) GetTradeTimeInLongOk() (*int32, bool)

GetTradeTimeInLongOk returns a tuple with the TradeTimeInLong field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetVega

func (o *OptionContract) GetVega() float64

GetVega returns the Vega field value if set, zero value otherwise.

func (*OptionContract) GetVegaOk

func (o *OptionContract) GetVegaOk() (*float64, bool)

GetVegaOk returns a tuple with the Vega field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) GetVolatility

func (o *OptionContract) GetVolatility() float64

GetVolatility returns the Volatility field value if set, zero value otherwise.

func (*OptionContract) GetVolatilityOk

func (o *OptionContract) GetVolatilityOk() (*float64, bool)

GetVolatilityOk returns a tuple with the Volatility field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionContract) HasAskPrice

func (o *OptionContract) HasAskPrice() bool

HasAskPrice returns a boolean if a field has been set.

func (*OptionContract) HasAskSize

func (o *OptionContract) HasAskSize() bool

HasAskSize returns a boolean if a field has been set.

func (*OptionContract) HasBidPrice

func (o *OptionContract) HasBidPrice() bool

HasBidPrice returns a boolean if a field has been set.

func (*OptionContract) HasBidSize

func (o *OptionContract) HasBidSize() bool

HasBidSize returns a boolean if a field has been set.

func (*OptionContract) HasClosePrice

func (o *OptionContract) HasClosePrice() bool

HasClosePrice returns a boolean if a field has been set.

func (*OptionContract) HasDaysToExpiration

func (o *OptionContract) HasDaysToExpiration() bool

HasDaysToExpiration returns a boolean if a field has been set.

func (*OptionContract) HasDeliverableNote

func (o *OptionContract) HasDeliverableNote() bool

HasDeliverableNote returns a boolean if a field has been set.

func (*OptionContract) HasDelta

func (o *OptionContract) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*OptionContract) HasDescription

func (o *OptionContract) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*OptionContract) HasExchangeName

func (o *OptionContract) HasExchangeName() bool

HasExchangeName returns a boolean if a field has been set.

func (*OptionContract) HasExpirationDate

func (o *OptionContract) HasExpirationDate() bool

HasExpirationDate returns a boolean if a field has been set.

func (*OptionContract) HasExpirationType

func (o *OptionContract) HasExpirationType() bool

HasExpirationType returns a boolean if a field has been set.

func (*OptionContract) HasGamma

func (o *OptionContract) HasGamma() bool

HasGamma returns a boolean if a field has been set.

func (*OptionContract) HasHighPrice

func (o *OptionContract) HasHighPrice() bool

HasHighPrice returns a boolean if a field has been set.

func (*OptionContract) HasIntrinsicValue

func (o *OptionContract) HasIntrinsicValue() bool

HasIntrinsicValue returns a boolean if a field has been set.

func (*OptionContract) HasIsInTheMoney

func (o *OptionContract) HasIsInTheMoney() bool

HasIsInTheMoney returns a boolean if a field has been set.

func (*OptionContract) HasIsIndexOption

func (o *OptionContract) HasIsIndexOption() bool

HasIsIndexOption returns a boolean if a field has been set.

func (*OptionContract) HasIsMini

func (o *OptionContract) HasIsMini() bool

HasIsMini returns a boolean if a field has been set.

func (*OptionContract) HasIsNonStandard

func (o *OptionContract) HasIsNonStandard() bool

HasIsNonStandard returns a boolean if a field has been set.

func (*OptionContract) HasIsPennyPilot

func (o *OptionContract) HasIsPennyPilot() bool

HasIsPennyPilot returns a boolean if a field has been set.

func (*OptionContract) HasLastPrice

func (o *OptionContract) HasLastPrice() bool

HasLastPrice returns a boolean if a field has been set.

func (*OptionContract) HasLastSize

func (o *OptionContract) HasLastSize() bool

HasLastSize returns a boolean if a field has been set.

func (*OptionContract) HasLastTradingDay

func (o *OptionContract) HasLastTradingDay() bool

HasLastTradingDay returns a boolean if a field has been set.

func (*OptionContract) HasLowPrice

func (o *OptionContract) HasLowPrice() bool

HasLowPrice returns a boolean if a field has been set.

func (*OptionContract) HasMarkChange

func (o *OptionContract) HasMarkChange() bool

HasMarkChange returns a boolean if a field has been set.

func (*OptionContract) HasMarkPercentChange

func (o *OptionContract) HasMarkPercentChange() bool

HasMarkPercentChange returns a boolean if a field has been set.

func (*OptionContract) HasMarkPrice

func (o *OptionContract) HasMarkPrice() bool

HasMarkPrice returns a boolean if a field has been set.

func (*OptionContract) HasMultiplier

func (o *OptionContract) HasMultiplier() bool

HasMultiplier returns a boolean if a field has been set.

func (*OptionContract) HasNetChange

func (o *OptionContract) HasNetChange() bool

HasNetChange returns a boolean if a field has been set.

func (*OptionContract) HasOpenInterest

func (o *OptionContract) HasOpenInterest() bool

HasOpenInterest returns a boolean if a field has been set.

func (*OptionContract) HasOpenPrice

func (o *OptionContract) HasOpenPrice() bool

HasOpenPrice returns a boolean if a field has been set.

func (*OptionContract) HasOptionDeliverablesList

func (o *OptionContract) HasOptionDeliverablesList() bool

HasOptionDeliverablesList returns a boolean if a field has been set.

func (*OptionContract) HasOptionRoot

func (o *OptionContract) HasOptionRoot() bool

HasOptionRoot returns a boolean if a field has been set.

func (*OptionContract) HasPercentChange

func (o *OptionContract) HasPercentChange() bool

HasPercentChange returns a boolean if a field has been set.

func (*OptionContract) HasPutCall

func (o *OptionContract) HasPutCall() bool

HasPutCall returns a boolean if a field has been set.

func (*OptionContract) HasQuoteTimeInLong

func (o *OptionContract) HasQuoteTimeInLong() bool

HasQuoteTimeInLong returns a boolean if a field has been set.

func (*OptionContract) HasRho

func (o *OptionContract) HasRho() bool

HasRho returns a boolean if a field has been set.

func (*OptionContract) HasSettlementType

func (o *OptionContract) HasSettlementType() bool

HasSettlementType returns a boolean if a field has been set.

func (*OptionContract) HasStrikePrice

func (o *OptionContract) HasStrikePrice() bool

HasStrikePrice returns a boolean if a field has been set.

func (*OptionContract) HasSymbol

func (o *OptionContract) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*OptionContract) HasTheoreticalOptionValue

func (o *OptionContract) HasTheoreticalOptionValue() bool

HasTheoreticalOptionValue returns a boolean if a field has been set.

func (*OptionContract) HasTheoreticalVolatility

func (o *OptionContract) HasTheoreticalVolatility() bool

HasTheoreticalVolatility returns a boolean if a field has been set.

func (*OptionContract) HasTheta

func (o *OptionContract) HasTheta() bool

HasTheta returns a boolean if a field has been set.

func (*OptionContract) HasTimeValue

func (o *OptionContract) HasTimeValue() bool

HasTimeValue returns a boolean if a field has been set.

func (*OptionContract) HasTotalVolume

func (o *OptionContract) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*OptionContract) HasTradeDate

func (o *OptionContract) HasTradeDate() bool

HasTradeDate returns a boolean if a field has been set.

func (*OptionContract) HasTradeTimeInLong

func (o *OptionContract) HasTradeTimeInLong() bool

HasTradeTimeInLong returns a boolean if a field has been set.

func (*OptionContract) HasVega

func (o *OptionContract) HasVega() bool

HasVega returns a boolean if a field has been set.

func (*OptionContract) HasVolatility

func (o *OptionContract) HasVolatility() bool

HasVolatility returns a boolean if a field has been set.

func (OptionContract) MarshalJSON

func (o OptionContract) MarshalJSON() ([]byte, error)

func (*OptionContract) SetAskPrice

func (o *OptionContract) SetAskPrice(v float64)

SetAskPrice gets a reference to the given float64 and assigns it to the AskPrice field.

func (*OptionContract) SetAskSize

func (o *OptionContract) SetAskSize(v int32)

SetAskSize gets a reference to the given int32 and assigns it to the AskSize field.

func (*OptionContract) SetBidPrice

func (o *OptionContract) SetBidPrice(v float64)

SetBidPrice gets a reference to the given float64 and assigns it to the BidPrice field.

func (*OptionContract) SetBidSize

func (o *OptionContract) SetBidSize(v int32)

SetBidSize gets a reference to the given int32 and assigns it to the BidSize field.

func (*OptionContract) SetClosePrice

func (o *OptionContract) SetClosePrice(v float64)

SetClosePrice gets a reference to the given float64 and assigns it to the ClosePrice field.

func (*OptionContract) SetDaysToExpiration

func (o *OptionContract) SetDaysToExpiration(v float32)

SetDaysToExpiration gets a reference to the given float32 and assigns it to the DaysToExpiration field.

func (*OptionContract) SetDeliverableNote

func (o *OptionContract) SetDeliverableNote(v string)

SetDeliverableNote gets a reference to the given string and assigns it to the DeliverableNote field.

func (*OptionContract) SetDelta

func (o *OptionContract) SetDelta(v float64)

SetDelta gets a reference to the given float64 and assigns it to the Delta field.

func (*OptionContract) SetDescription

func (o *OptionContract) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*OptionContract) SetExchangeName

func (o *OptionContract) SetExchangeName(v string)

SetExchangeName gets a reference to the given string and assigns it to the ExchangeName field.

func (*OptionContract) SetExpirationDate

func (o *OptionContract) SetExpirationDate(v string)

SetExpirationDate gets a reference to the given string and assigns it to the ExpirationDate field.

func (*OptionContract) SetExpirationType

func (o *OptionContract) SetExpirationType(v ExpirationType)

SetExpirationType gets a reference to the given ExpirationType and assigns it to the ExpirationType field.

func (*OptionContract) SetGamma

func (o *OptionContract) SetGamma(v float64)

SetGamma gets a reference to the given float64 and assigns it to the Gamma field.

func (*OptionContract) SetHighPrice

func (o *OptionContract) SetHighPrice(v float64)

SetHighPrice gets a reference to the given float64 and assigns it to the HighPrice field.

func (*OptionContract) SetIntrinsicValue

func (o *OptionContract) SetIntrinsicValue(v float64)

SetIntrinsicValue gets a reference to the given float64 and assigns it to the IntrinsicValue field.

func (*OptionContract) SetIsInTheMoney

func (o *OptionContract) SetIsInTheMoney(v bool)

SetIsInTheMoney gets a reference to the given bool and assigns it to the IsInTheMoney field.

func (*OptionContract) SetIsIndexOption

func (o *OptionContract) SetIsIndexOption(v bool)

SetIsIndexOption gets a reference to the given bool and assigns it to the IsIndexOption field.

func (*OptionContract) SetIsMini

func (o *OptionContract) SetIsMini(v bool)

SetIsMini gets a reference to the given bool and assigns it to the IsMini field.

func (*OptionContract) SetIsNonStandard

func (o *OptionContract) SetIsNonStandard(v bool)

SetIsNonStandard gets a reference to the given bool and assigns it to the IsNonStandard field.

func (*OptionContract) SetIsPennyPilot

func (o *OptionContract) SetIsPennyPilot(v bool)

SetIsPennyPilot gets a reference to the given bool and assigns it to the IsPennyPilot field.

func (*OptionContract) SetLastPrice

func (o *OptionContract) SetLastPrice(v float64)

SetLastPrice gets a reference to the given float64 and assigns it to the LastPrice field.

func (*OptionContract) SetLastSize

func (o *OptionContract) SetLastSize(v int32)

SetLastSize gets a reference to the given int32 and assigns it to the LastSize field.

func (*OptionContract) SetLastTradingDay

func (o *OptionContract) SetLastTradingDay(v float32)

SetLastTradingDay gets a reference to the given float32 and assigns it to the LastTradingDay field.

func (*OptionContract) SetLowPrice

func (o *OptionContract) SetLowPrice(v float64)

SetLowPrice gets a reference to the given float64 and assigns it to the LowPrice field.

func (*OptionContract) SetMarkChange

func (o *OptionContract) SetMarkChange(v float64)

SetMarkChange gets a reference to the given float64 and assigns it to the MarkChange field.

func (*OptionContract) SetMarkPercentChange

func (o *OptionContract) SetMarkPercentChange(v float64)

SetMarkPercentChange gets a reference to the given float64 and assigns it to the MarkPercentChange field.

func (*OptionContract) SetMarkPrice

func (o *OptionContract) SetMarkPrice(v float64)

SetMarkPrice gets a reference to the given float64 and assigns it to the MarkPrice field.

func (*OptionContract) SetMultiplier

func (o *OptionContract) SetMultiplier(v float64)

SetMultiplier gets a reference to the given float64 and assigns it to the Multiplier field.

func (*OptionContract) SetNetChange

func (o *OptionContract) SetNetChange(v float64)

SetNetChange gets a reference to the given float64 and assigns it to the NetChange field.

func (*OptionContract) SetOpenInterest

func (o *OptionContract) SetOpenInterest(v float64)

SetOpenInterest gets a reference to the given float64 and assigns it to the OpenInterest field.

func (*OptionContract) SetOpenPrice

func (o *OptionContract) SetOpenPrice(v float64)

SetOpenPrice gets a reference to the given float64 and assigns it to the OpenPrice field.

func (*OptionContract) SetOptionDeliverablesList

func (o *OptionContract) SetOptionDeliverablesList(v []OptionDeliverables)

SetOptionDeliverablesList gets a reference to the given []OptionDeliverables and assigns it to the OptionDeliverablesList field.

func (*OptionContract) SetOptionRoot

func (o *OptionContract) SetOptionRoot(v string)

SetOptionRoot gets a reference to the given string and assigns it to the OptionRoot field.

func (*OptionContract) SetPercentChange

func (o *OptionContract) SetPercentChange(v float64)

SetPercentChange gets a reference to the given float64 and assigns it to the PercentChange field.

func (*OptionContract) SetPutCall

func (o *OptionContract) SetPutCall(v string)

SetPutCall gets a reference to the given string and assigns it to the PutCall field.

func (*OptionContract) SetQuoteTimeInLong

func (o *OptionContract) SetQuoteTimeInLong(v int32)

SetQuoteTimeInLong gets a reference to the given int32 and assigns it to the QuoteTimeInLong field.

func (*OptionContract) SetRho

func (o *OptionContract) SetRho(v float64)

SetRho gets a reference to the given float64 and assigns it to the Rho field.

func (*OptionContract) SetSettlementType

func (o *OptionContract) SetSettlementType(v SettlementType)

SetSettlementType gets a reference to the given SettlementType and assigns it to the SettlementType field.

func (*OptionContract) SetStrikePrice

func (o *OptionContract) SetStrikePrice(v float64)

SetStrikePrice gets a reference to the given float64 and assigns it to the StrikePrice field.

func (*OptionContract) SetSymbol

func (o *OptionContract) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*OptionContract) SetTheoreticalOptionValue

func (o *OptionContract) SetTheoreticalOptionValue(v float64)

SetTheoreticalOptionValue gets a reference to the given float64 and assigns it to the TheoreticalOptionValue field.

func (*OptionContract) SetTheoreticalVolatility

func (o *OptionContract) SetTheoreticalVolatility(v float64)

SetTheoreticalVolatility gets a reference to the given float64 and assigns it to the TheoreticalVolatility field.

func (*OptionContract) SetTheta

func (o *OptionContract) SetTheta(v float64)

SetTheta gets a reference to the given float64 and assigns it to the Theta field.

func (*OptionContract) SetTimeValue

func (o *OptionContract) SetTimeValue(v float64)

SetTimeValue gets a reference to the given float64 and assigns it to the TimeValue field.

func (*OptionContract) SetTotalVolume

func (o *OptionContract) SetTotalVolume(v int32)

SetTotalVolume gets a reference to the given int32 and assigns it to the TotalVolume field.

func (*OptionContract) SetTradeDate

func (o *OptionContract) SetTradeDate(v float32)

SetTradeDate gets a reference to the given float32 and assigns it to the TradeDate field.

func (*OptionContract) SetTradeTimeInLong

func (o *OptionContract) SetTradeTimeInLong(v int32)

SetTradeTimeInLong gets a reference to the given int32 and assigns it to the TradeTimeInLong field.

func (*OptionContract) SetVega

func (o *OptionContract) SetVega(v float64)

SetVega gets a reference to the given float64 and assigns it to the Vega field.

func (*OptionContract) SetVolatility

func (o *OptionContract) SetVolatility(v float64)

SetVolatility gets a reference to the given float64 and assigns it to the Volatility field.

func (OptionContract) ToMap

func (o OptionContract) ToMap() (map[string]interface{}, error)

type OptionDeliverables

type OptionDeliverables struct {
	Symbol           *string `json:"symbol,omitempty"`
	AssetType        *string `json:"assetType,omitempty"`
	DeliverableUnits *string `json:"deliverableUnits,omitempty"`
	CurrencyType     *string `json:"currencyType,omitempty"`
}

OptionDeliverables struct for OptionDeliverables

func NewOptionDeliverables

func NewOptionDeliverables() *OptionDeliverables

NewOptionDeliverables instantiates a new OptionDeliverables object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOptionDeliverablesWithDefaults

func NewOptionDeliverablesWithDefaults() *OptionDeliverables

NewOptionDeliverablesWithDefaults instantiates a new OptionDeliverables object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OptionDeliverables) GetAssetType

func (o *OptionDeliverables) GetAssetType() string

GetAssetType returns the AssetType field value if set, zero value otherwise.

func (*OptionDeliverables) GetAssetTypeOk

func (o *OptionDeliverables) GetAssetTypeOk() (*string, bool)

GetAssetTypeOk returns a tuple with the AssetType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionDeliverables) GetCurrencyType

func (o *OptionDeliverables) GetCurrencyType() string

GetCurrencyType returns the CurrencyType field value if set, zero value otherwise.

func (*OptionDeliverables) GetCurrencyTypeOk

func (o *OptionDeliverables) GetCurrencyTypeOk() (*string, bool)

GetCurrencyTypeOk returns a tuple with the CurrencyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionDeliverables) GetDeliverableUnits

func (o *OptionDeliverables) GetDeliverableUnits() string

GetDeliverableUnits returns the DeliverableUnits field value if set, zero value otherwise.

func (*OptionDeliverables) GetDeliverableUnitsOk

func (o *OptionDeliverables) GetDeliverableUnitsOk() (*string, bool)

GetDeliverableUnitsOk returns a tuple with the DeliverableUnits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionDeliverables) GetSymbol

func (o *OptionDeliverables) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*OptionDeliverables) GetSymbolOk

func (o *OptionDeliverables) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionDeliverables) HasAssetType

func (o *OptionDeliverables) HasAssetType() bool

HasAssetType returns a boolean if a field has been set.

func (*OptionDeliverables) HasCurrencyType

func (o *OptionDeliverables) HasCurrencyType() bool

HasCurrencyType returns a boolean if a field has been set.

func (*OptionDeliverables) HasDeliverableUnits

func (o *OptionDeliverables) HasDeliverableUnits() bool

HasDeliverableUnits returns a boolean if a field has been set.

func (*OptionDeliverables) HasSymbol

func (o *OptionDeliverables) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (OptionDeliverables) MarshalJSON

func (o OptionDeliverables) MarshalJSON() ([]byte, error)

func (*OptionDeliverables) SetAssetType

func (o *OptionDeliverables) SetAssetType(v string)

SetAssetType gets a reference to the given string and assigns it to the AssetType field.

func (*OptionDeliverables) SetCurrencyType

func (o *OptionDeliverables) SetCurrencyType(v string)

SetCurrencyType gets a reference to the given string and assigns it to the CurrencyType field.

func (*OptionDeliverables) SetDeliverableUnits

func (o *OptionDeliverables) SetDeliverableUnits(v string)

SetDeliverableUnits gets a reference to the given string and assigns it to the DeliverableUnits field.

func (*OptionDeliverables) SetSymbol

func (o *OptionDeliverables) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (OptionDeliverables) ToMap

func (o OptionDeliverables) ToMap() (map[string]interface{}, error)

type OptionExpirationChainAPIService

type OptionExpirationChainAPIService service

OptionExpirationChainAPIService OptionExpirationChainAPI service

func (*OptionExpirationChainAPIService) GetExpirationChain

GetExpirationChain Get option expiration chain for an optionable symbol

Get Option Expiration (Series) information for an optionable symbol. Does not include individual options contracts for the underlying.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetExpirationChainRequest

func (*OptionExpirationChainAPIService) GetExpirationChainExecute

Execute executes the request

@return ExpirationChain

type OptionResponse

type OptionResponse struct {
	AssetMainType *AssetMainType `json:"assetMainType,omitempty"`
	// SSID of instrument
	Ssid *int64 `json:"ssid,omitempty"`
	// Symbol of instrument
	Symbol *string `json:"symbol,omitempty"`
	// is quote realtime
	Realtime  *bool            `json:"realtime,omitempty"`
	Quote     *QuoteOption     `json:"quote,omitempty"`
	Reference *ReferenceOption `json:"reference,omitempty"`
}

OptionResponse Quote info of Option security

func NewOptionResponse

func NewOptionResponse() *OptionResponse

NewOptionResponse instantiates a new OptionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOptionResponseWithDefaults

func NewOptionResponseWithDefaults() *OptionResponse

NewOptionResponseWithDefaults instantiates a new OptionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OptionResponse) GetAssetMainType

func (o *OptionResponse) GetAssetMainType() AssetMainType

GetAssetMainType returns the AssetMainType field value if set, zero value otherwise.

func (*OptionResponse) GetAssetMainTypeOk

func (o *OptionResponse) GetAssetMainTypeOk() (*AssetMainType, bool)

GetAssetMainTypeOk returns a tuple with the AssetMainType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionResponse) GetQuote

func (o *OptionResponse) GetQuote() QuoteOption

GetQuote returns the Quote field value if set, zero value otherwise.

func (*OptionResponse) GetQuoteOk

func (o *OptionResponse) GetQuoteOk() (*QuoteOption, bool)

GetQuoteOk returns a tuple with the Quote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionResponse) GetRealtime

func (o *OptionResponse) GetRealtime() bool

GetRealtime returns the Realtime field value if set, zero value otherwise.

func (*OptionResponse) GetRealtimeOk

func (o *OptionResponse) GetRealtimeOk() (*bool, bool)

GetRealtimeOk returns a tuple with the Realtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionResponse) GetReference

func (o *OptionResponse) GetReference() ReferenceOption

GetReference returns the Reference field value if set, zero value otherwise.

func (*OptionResponse) GetReferenceOk

func (o *OptionResponse) GetReferenceOk() (*ReferenceOption, bool)

GetReferenceOk returns a tuple with the Reference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionResponse) GetSsid

func (o *OptionResponse) GetSsid() int64

GetSsid returns the Ssid field value if set, zero value otherwise.

func (*OptionResponse) GetSsidOk

func (o *OptionResponse) GetSsidOk() (*int64, bool)

GetSsidOk returns a tuple with the Ssid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionResponse) GetSymbol

func (o *OptionResponse) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*OptionResponse) GetSymbolOk

func (o *OptionResponse) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OptionResponse) HasAssetMainType

func (o *OptionResponse) HasAssetMainType() bool

HasAssetMainType returns a boolean if a field has been set.

func (*OptionResponse) HasQuote

func (o *OptionResponse) HasQuote() bool

HasQuote returns a boolean if a field has been set.

func (*OptionResponse) HasRealtime

func (o *OptionResponse) HasRealtime() bool

HasRealtime returns a boolean if a field has been set.

func (*OptionResponse) HasReference

func (o *OptionResponse) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*OptionResponse) HasSsid

func (o *OptionResponse) HasSsid() bool

HasSsid returns a boolean if a field has been set.

func (*OptionResponse) HasSymbol

func (o *OptionResponse) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (OptionResponse) MarshalJSON

func (o OptionResponse) MarshalJSON() ([]byte, error)

func (*OptionResponse) SetAssetMainType

func (o *OptionResponse) SetAssetMainType(v AssetMainType)

SetAssetMainType gets a reference to the given AssetMainType and assigns it to the AssetMainType field.

func (*OptionResponse) SetQuote

func (o *OptionResponse) SetQuote(v QuoteOption)

SetQuote gets a reference to the given QuoteOption and assigns it to the Quote field.

func (*OptionResponse) SetRealtime

func (o *OptionResponse) SetRealtime(v bool)

SetRealtime gets a reference to the given bool and assigns it to the Realtime field.

func (*OptionResponse) SetReference

func (o *OptionResponse) SetReference(v ReferenceOption)

SetReference gets a reference to the given ReferenceOption and assigns it to the Reference field.

func (*OptionResponse) SetSsid

func (o *OptionResponse) SetSsid(v int64)

SetSsid gets a reference to the given int64 and assigns it to the Ssid field.

func (*OptionResponse) SetSymbol

func (o *OptionResponse) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (OptionResponse) ToMap

func (o OptionResponse) ToMap() (map[string]interface{}, error)

type PriceHistoryAPIService

type PriceHistoryAPIService service

PriceHistoryAPIService PriceHistoryAPI service

func (*PriceHistoryAPIService) GetPriceHistory

GetPriceHistory Get PriceHistory for a single symbol and date ranges.

Get historical Open, High, Low, Close, and Volume for a given frequency (i.e. aggregation). Frequency available is dependent on periodType selected. The datetime format is in EPOCH milliseconds.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetPriceHistoryRequest

func (*PriceHistoryAPIService) GetPriceHistoryExecute

Execute executes the request

@return CandleList

type QuoteEquity

type QuoteEquity struct {
	// Higest price traded in the past 12 months, or 52 weeks
	Var52WeekHigh *float64 `json:"52WeekHigh,omitempty"`
	// Lowest price traded in the past 12 months, or 52 weeks
	Var52WeekLow *float64 `json:"52WeekLow,omitempty"`
	// ask MIC code
	AskMICId *string `json:"askMICId,omitempty"`
	// Current Best Ask Price
	AskPrice *float64 `json:"askPrice,omitempty"`
	// Number of shares for ask
	AskSize *int32 `json:"askSize,omitempty"`
	// Last ask time in milliseconds since Epoch
	AskTime *int64 `json:"askTime,omitempty"`
	// bid MIC code
	BidMICId *string `json:"bidMICId,omitempty"`
	// Current Best Bid Price
	BidPrice *float64 `json:"bidPrice,omitempty"`
	// Number of shares for bid
	BidSize *int32 `json:"bidSize,omitempty"`
	// Last bid time in milliseconds since Epoch
	BidTime *int64 `json:"bidTime,omitempty"`
	// Previous day's closing price
	ClosePrice *float64 `json:"closePrice,omitempty"`
	// Day's high trade price
	HighPrice *float64 `json:"highPrice,omitempty"`
	// Last MIC Code
	LastMICId *string  `json:"lastMICId,omitempty"`
	LastPrice *float64 `json:"lastPrice,omitempty"`
	// Number of shares traded with last trade
	LastSize *int32 `json:"lastSize,omitempty"`
	// Day's low trade price
	LowPrice *float64 `json:"lowPrice,omitempty"`
	// Mark price
	Mark *float64 `json:"mark,omitempty"`
	// Mark Price change
	MarkChange *float64 `json:"markChange,omitempty"`
	// Mark Price percent change
	MarkPercentChange *float64 `json:"markPercentChange,omitempty"`
	// Current Last-Prev Close
	NetChange *float64 `json:"netChange,omitempty"`
	// Net Percentage Change
	NetPercentChange *float64 `json:"netPercentChange,omitempty"`
	// Price at market open
	OpenPrice *float64 `json:"openPrice,omitempty"`
	// Last quote time in milliseconds since Epoch
	QuoteTime *int64 `json:"quoteTime,omitempty"`
	// Status of security
	SecurityStatus *string `json:"securityStatus,omitempty"`
	// Aggregated shares traded throughout the day, including pre/post market hours.
	TotalVolume *int64 `json:"totalVolume,omitempty"`
	// Last trade time in milliseconds since Epoch
	TradeTime *int64 `json:"tradeTime,omitempty"`
	// Option Risk/Volatility Measurement
	Volatility *float64 `json:"volatility,omitempty"`
}

QuoteEquity Quote data of Equity security

func NewQuoteEquity

func NewQuoteEquity() *QuoteEquity

NewQuoteEquity instantiates a new QuoteEquity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteEquityWithDefaults

func NewQuoteEquityWithDefaults() *QuoteEquity

NewQuoteEquityWithDefaults instantiates a new QuoteEquity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteEquity) GetAskMICId

func (o *QuoteEquity) GetAskMICId() string

GetAskMICId returns the AskMICId field value if set, zero value otherwise.

func (*QuoteEquity) GetAskMICIdOk

func (o *QuoteEquity) GetAskMICIdOk() (*string, bool)

GetAskMICIdOk returns a tuple with the AskMICId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetAskPrice

func (o *QuoteEquity) GetAskPrice() float64

GetAskPrice returns the AskPrice field value if set, zero value otherwise.

func (*QuoteEquity) GetAskPriceOk

func (o *QuoteEquity) GetAskPriceOk() (*float64, bool)

GetAskPriceOk returns a tuple with the AskPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetAskSize

func (o *QuoteEquity) GetAskSize() int32

GetAskSize returns the AskSize field value if set, zero value otherwise.

func (*QuoteEquity) GetAskSizeOk

func (o *QuoteEquity) GetAskSizeOk() (*int32, bool)

GetAskSizeOk returns a tuple with the AskSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetAskTime

func (o *QuoteEquity) GetAskTime() int64

GetAskTime returns the AskTime field value if set, zero value otherwise.

func (*QuoteEquity) GetAskTimeOk

func (o *QuoteEquity) GetAskTimeOk() (*int64, bool)

GetAskTimeOk returns a tuple with the AskTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetBidMICId

func (o *QuoteEquity) GetBidMICId() string

GetBidMICId returns the BidMICId field value if set, zero value otherwise.

func (*QuoteEquity) GetBidMICIdOk

func (o *QuoteEquity) GetBidMICIdOk() (*string, bool)

GetBidMICIdOk returns a tuple with the BidMICId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetBidPrice

func (o *QuoteEquity) GetBidPrice() float64

GetBidPrice returns the BidPrice field value if set, zero value otherwise.

func (*QuoteEquity) GetBidPriceOk

func (o *QuoteEquity) GetBidPriceOk() (*float64, bool)

GetBidPriceOk returns a tuple with the BidPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetBidSize

func (o *QuoteEquity) GetBidSize() int32

GetBidSize returns the BidSize field value if set, zero value otherwise.

func (*QuoteEquity) GetBidSizeOk

func (o *QuoteEquity) GetBidSizeOk() (*int32, bool)

GetBidSizeOk returns a tuple with the BidSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetBidTime

func (o *QuoteEquity) GetBidTime() int64

GetBidTime returns the BidTime field value if set, zero value otherwise.

func (*QuoteEquity) GetBidTimeOk

func (o *QuoteEquity) GetBidTimeOk() (*int64, bool)

GetBidTimeOk returns a tuple with the BidTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetClosePrice

func (o *QuoteEquity) GetClosePrice() float64

GetClosePrice returns the ClosePrice field value if set, zero value otherwise.

func (*QuoteEquity) GetClosePriceOk

func (o *QuoteEquity) GetClosePriceOk() (*float64, bool)

GetClosePriceOk returns a tuple with the ClosePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetHighPrice

func (o *QuoteEquity) GetHighPrice() float64

GetHighPrice returns the HighPrice field value if set, zero value otherwise.

func (*QuoteEquity) GetHighPriceOk

func (o *QuoteEquity) GetHighPriceOk() (*float64, bool)

GetHighPriceOk returns a tuple with the HighPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetLastMICId

func (o *QuoteEquity) GetLastMICId() string

GetLastMICId returns the LastMICId field value if set, zero value otherwise.

func (*QuoteEquity) GetLastMICIdOk

func (o *QuoteEquity) GetLastMICIdOk() (*string, bool)

GetLastMICIdOk returns a tuple with the LastMICId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetLastPrice

func (o *QuoteEquity) GetLastPrice() float64

GetLastPrice returns the LastPrice field value if set, zero value otherwise.

func (*QuoteEquity) GetLastPriceOk

func (o *QuoteEquity) GetLastPriceOk() (*float64, bool)

GetLastPriceOk returns a tuple with the LastPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetLastSize

func (o *QuoteEquity) GetLastSize() int32

GetLastSize returns the LastSize field value if set, zero value otherwise.

func (*QuoteEquity) GetLastSizeOk

func (o *QuoteEquity) GetLastSizeOk() (*int32, bool)

GetLastSizeOk returns a tuple with the LastSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetLowPrice

func (o *QuoteEquity) GetLowPrice() float64

GetLowPrice returns the LowPrice field value if set, zero value otherwise.

func (*QuoteEquity) GetLowPriceOk

func (o *QuoteEquity) GetLowPriceOk() (*float64, bool)

GetLowPriceOk returns a tuple with the LowPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetMark

func (o *QuoteEquity) GetMark() float64

GetMark returns the Mark field value if set, zero value otherwise.

func (*QuoteEquity) GetMarkChange

func (o *QuoteEquity) GetMarkChange() float64

GetMarkChange returns the MarkChange field value if set, zero value otherwise.

func (*QuoteEquity) GetMarkChangeOk

func (o *QuoteEquity) GetMarkChangeOk() (*float64, bool)

GetMarkChangeOk returns a tuple with the MarkChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetMarkOk

func (o *QuoteEquity) GetMarkOk() (*float64, bool)

GetMarkOk returns a tuple with the Mark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetMarkPercentChange

func (o *QuoteEquity) GetMarkPercentChange() float64

GetMarkPercentChange returns the MarkPercentChange field value if set, zero value otherwise.

func (*QuoteEquity) GetMarkPercentChangeOk

func (o *QuoteEquity) GetMarkPercentChangeOk() (*float64, bool)

GetMarkPercentChangeOk returns a tuple with the MarkPercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetNetChange

func (o *QuoteEquity) GetNetChange() float64

GetNetChange returns the NetChange field value if set, zero value otherwise.

func (*QuoteEquity) GetNetChangeOk

func (o *QuoteEquity) GetNetChangeOk() (*float64, bool)

GetNetChangeOk returns a tuple with the NetChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetNetPercentChange

func (o *QuoteEquity) GetNetPercentChange() float64

GetNetPercentChange returns the NetPercentChange field value if set, zero value otherwise.

func (*QuoteEquity) GetNetPercentChangeOk

func (o *QuoteEquity) GetNetPercentChangeOk() (*float64, bool)

GetNetPercentChangeOk returns a tuple with the NetPercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetOpenPrice

func (o *QuoteEquity) GetOpenPrice() float64

GetOpenPrice returns the OpenPrice field value if set, zero value otherwise.

func (*QuoteEquity) GetOpenPriceOk

func (o *QuoteEquity) GetOpenPriceOk() (*float64, bool)

GetOpenPriceOk returns a tuple with the OpenPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetQuoteTime

func (o *QuoteEquity) GetQuoteTime() int64

GetQuoteTime returns the QuoteTime field value if set, zero value otherwise.

func (*QuoteEquity) GetQuoteTimeOk

func (o *QuoteEquity) GetQuoteTimeOk() (*int64, bool)

GetQuoteTimeOk returns a tuple with the QuoteTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetSecurityStatus

func (o *QuoteEquity) GetSecurityStatus() string

GetSecurityStatus returns the SecurityStatus field value if set, zero value otherwise.

func (*QuoteEquity) GetSecurityStatusOk

func (o *QuoteEquity) GetSecurityStatusOk() (*string, bool)

GetSecurityStatusOk returns a tuple with the SecurityStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetTotalVolume

func (o *QuoteEquity) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*QuoteEquity) GetTotalVolumeOk

func (o *QuoteEquity) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetTradeTime

func (o *QuoteEquity) GetTradeTime() int64

GetTradeTime returns the TradeTime field value if set, zero value otherwise.

func (*QuoteEquity) GetTradeTimeOk

func (o *QuoteEquity) GetTradeTimeOk() (*int64, bool)

GetTradeTimeOk returns a tuple with the TradeTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetVar52WeekHigh

func (o *QuoteEquity) GetVar52WeekHigh() float64

GetVar52WeekHigh returns the Var52WeekHigh field value if set, zero value otherwise.

func (*QuoteEquity) GetVar52WeekHighOk

func (o *QuoteEquity) GetVar52WeekHighOk() (*float64, bool)

GetVar52WeekHighOk returns a tuple with the Var52WeekHigh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetVar52WeekLow

func (o *QuoteEquity) GetVar52WeekLow() float64

GetVar52WeekLow returns the Var52WeekLow field value if set, zero value otherwise.

func (*QuoteEquity) GetVar52WeekLowOk

func (o *QuoteEquity) GetVar52WeekLowOk() (*float64, bool)

GetVar52WeekLowOk returns a tuple with the Var52WeekLow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) GetVolatility

func (o *QuoteEquity) GetVolatility() float64

GetVolatility returns the Volatility field value if set, zero value otherwise.

func (*QuoteEquity) GetVolatilityOk

func (o *QuoteEquity) GetVolatilityOk() (*float64, bool)

GetVolatilityOk returns a tuple with the Volatility field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteEquity) HasAskMICId

func (o *QuoteEquity) HasAskMICId() bool

HasAskMICId returns a boolean if a field has been set.

func (*QuoteEquity) HasAskPrice

func (o *QuoteEquity) HasAskPrice() bool

HasAskPrice returns a boolean if a field has been set.

func (*QuoteEquity) HasAskSize

func (o *QuoteEquity) HasAskSize() bool

HasAskSize returns a boolean if a field has been set.

func (*QuoteEquity) HasAskTime

func (o *QuoteEquity) HasAskTime() bool

HasAskTime returns a boolean if a field has been set.

func (*QuoteEquity) HasBidMICId

func (o *QuoteEquity) HasBidMICId() bool

HasBidMICId returns a boolean if a field has been set.

func (*QuoteEquity) HasBidPrice

func (o *QuoteEquity) HasBidPrice() bool

HasBidPrice returns a boolean if a field has been set.

func (*QuoteEquity) HasBidSize

func (o *QuoteEquity) HasBidSize() bool

HasBidSize returns a boolean if a field has been set.

func (*QuoteEquity) HasBidTime

func (o *QuoteEquity) HasBidTime() bool

HasBidTime returns a boolean if a field has been set.

func (*QuoteEquity) HasClosePrice

func (o *QuoteEquity) HasClosePrice() bool

HasClosePrice returns a boolean if a field has been set.

func (*QuoteEquity) HasHighPrice

func (o *QuoteEquity) HasHighPrice() bool

HasHighPrice returns a boolean if a field has been set.

func (*QuoteEquity) HasLastMICId

func (o *QuoteEquity) HasLastMICId() bool

HasLastMICId returns a boolean if a field has been set.

func (*QuoteEquity) HasLastPrice

func (o *QuoteEquity) HasLastPrice() bool

HasLastPrice returns a boolean if a field has been set.

func (*QuoteEquity) HasLastSize

func (o *QuoteEquity) HasLastSize() bool

HasLastSize returns a boolean if a field has been set.

func (*QuoteEquity) HasLowPrice

func (o *QuoteEquity) HasLowPrice() bool

HasLowPrice returns a boolean if a field has been set.

func (*QuoteEquity) HasMark

func (o *QuoteEquity) HasMark() bool

HasMark returns a boolean if a field has been set.

func (*QuoteEquity) HasMarkChange

func (o *QuoteEquity) HasMarkChange() bool

HasMarkChange returns a boolean if a field has been set.

func (*QuoteEquity) HasMarkPercentChange

func (o *QuoteEquity) HasMarkPercentChange() bool

HasMarkPercentChange returns a boolean if a field has been set.

func (*QuoteEquity) HasNetChange

func (o *QuoteEquity) HasNetChange() bool

HasNetChange returns a boolean if a field has been set.

func (*QuoteEquity) HasNetPercentChange

func (o *QuoteEquity) HasNetPercentChange() bool

HasNetPercentChange returns a boolean if a field has been set.

func (*QuoteEquity) HasOpenPrice

func (o *QuoteEquity) HasOpenPrice() bool

HasOpenPrice returns a boolean if a field has been set.

func (*QuoteEquity) HasQuoteTime

func (o *QuoteEquity) HasQuoteTime() bool

HasQuoteTime returns a boolean if a field has been set.

func (*QuoteEquity) HasSecurityStatus

func (o *QuoteEquity) HasSecurityStatus() bool

HasSecurityStatus returns a boolean if a field has been set.

func (*QuoteEquity) HasTotalVolume

func (o *QuoteEquity) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*QuoteEquity) HasTradeTime

func (o *QuoteEquity) HasTradeTime() bool

HasTradeTime returns a boolean if a field has been set.

func (*QuoteEquity) HasVar52WeekHigh

func (o *QuoteEquity) HasVar52WeekHigh() bool

HasVar52WeekHigh returns a boolean if a field has been set.

func (*QuoteEquity) HasVar52WeekLow

func (o *QuoteEquity) HasVar52WeekLow() bool

HasVar52WeekLow returns a boolean if a field has been set.

func (*QuoteEquity) HasVolatility

func (o *QuoteEquity) HasVolatility() bool

HasVolatility returns a boolean if a field has been set.

func (QuoteEquity) MarshalJSON

func (o QuoteEquity) MarshalJSON() ([]byte, error)

func (*QuoteEquity) SetAskMICId

func (o *QuoteEquity) SetAskMICId(v string)

SetAskMICId gets a reference to the given string and assigns it to the AskMICId field.

func (*QuoteEquity) SetAskPrice

func (o *QuoteEquity) SetAskPrice(v float64)

SetAskPrice gets a reference to the given float64 and assigns it to the AskPrice field.

func (*QuoteEquity) SetAskSize

func (o *QuoteEquity) SetAskSize(v int32)

SetAskSize gets a reference to the given int32 and assigns it to the AskSize field.

func (*QuoteEquity) SetAskTime

func (o *QuoteEquity) SetAskTime(v int64)

SetAskTime gets a reference to the given int64 and assigns it to the AskTime field.

func (*QuoteEquity) SetBidMICId

func (o *QuoteEquity) SetBidMICId(v string)

SetBidMICId gets a reference to the given string and assigns it to the BidMICId field.

func (*QuoteEquity) SetBidPrice

func (o *QuoteEquity) SetBidPrice(v float64)

SetBidPrice gets a reference to the given float64 and assigns it to the BidPrice field.

func (*QuoteEquity) SetBidSize

func (o *QuoteEquity) SetBidSize(v int32)

SetBidSize gets a reference to the given int32 and assigns it to the BidSize field.

func (*QuoteEquity) SetBidTime

func (o *QuoteEquity) SetBidTime(v int64)

SetBidTime gets a reference to the given int64 and assigns it to the BidTime field.

func (*QuoteEquity) SetClosePrice

func (o *QuoteEquity) SetClosePrice(v float64)

SetClosePrice gets a reference to the given float64 and assigns it to the ClosePrice field.

func (*QuoteEquity) SetHighPrice

func (o *QuoteEquity) SetHighPrice(v float64)

SetHighPrice gets a reference to the given float64 and assigns it to the HighPrice field.

func (*QuoteEquity) SetLastMICId

func (o *QuoteEquity) SetLastMICId(v string)

SetLastMICId gets a reference to the given string and assigns it to the LastMICId field.

func (*QuoteEquity) SetLastPrice

func (o *QuoteEquity) SetLastPrice(v float64)

SetLastPrice gets a reference to the given float64 and assigns it to the LastPrice field.

func (*QuoteEquity) SetLastSize

func (o *QuoteEquity) SetLastSize(v int32)

SetLastSize gets a reference to the given int32 and assigns it to the LastSize field.

func (*QuoteEquity) SetLowPrice

func (o *QuoteEquity) SetLowPrice(v float64)

SetLowPrice gets a reference to the given float64 and assigns it to the LowPrice field.

func (*QuoteEquity) SetMark

func (o *QuoteEquity) SetMark(v float64)

SetMark gets a reference to the given float64 and assigns it to the Mark field.

func (*QuoteEquity) SetMarkChange

func (o *QuoteEquity) SetMarkChange(v float64)

SetMarkChange gets a reference to the given float64 and assigns it to the MarkChange field.

func (*QuoteEquity) SetMarkPercentChange

func (o *QuoteEquity) SetMarkPercentChange(v float64)

SetMarkPercentChange gets a reference to the given float64 and assigns it to the MarkPercentChange field.

func (*QuoteEquity) SetNetChange

func (o *QuoteEquity) SetNetChange(v float64)

SetNetChange gets a reference to the given float64 and assigns it to the NetChange field.

func (*QuoteEquity) SetNetPercentChange

func (o *QuoteEquity) SetNetPercentChange(v float64)

SetNetPercentChange gets a reference to the given float64 and assigns it to the NetPercentChange field.

func (*QuoteEquity) SetOpenPrice

func (o *QuoteEquity) SetOpenPrice(v float64)

SetOpenPrice gets a reference to the given float64 and assigns it to the OpenPrice field.

func (*QuoteEquity) SetQuoteTime

func (o *QuoteEquity) SetQuoteTime(v int64)

SetQuoteTime gets a reference to the given int64 and assigns it to the QuoteTime field.

func (*QuoteEquity) SetSecurityStatus

func (o *QuoteEquity) SetSecurityStatus(v string)

SetSecurityStatus gets a reference to the given string and assigns it to the SecurityStatus field.

func (*QuoteEquity) SetTotalVolume

func (o *QuoteEquity) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*QuoteEquity) SetTradeTime

func (o *QuoteEquity) SetTradeTime(v int64)

SetTradeTime gets a reference to the given int64 and assigns it to the TradeTime field.

func (*QuoteEquity) SetVar52WeekHigh

func (o *QuoteEquity) SetVar52WeekHigh(v float64)

SetVar52WeekHigh gets a reference to the given float64 and assigns it to the Var52WeekHigh field.

func (*QuoteEquity) SetVar52WeekLow

func (o *QuoteEquity) SetVar52WeekLow(v float64)

SetVar52WeekLow gets a reference to the given float64 and assigns it to the Var52WeekLow field.

func (*QuoteEquity) SetVolatility

func (o *QuoteEquity) SetVolatility(v float64)

SetVolatility gets a reference to the given float64 and assigns it to the Volatility field.

func (QuoteEquity) ToMap

func (o QuoteEquity) ToMap() (map[string]interface{}, error)

type QuoteError

type QuoteError struct {
	// list of invalid cusips from request
	InvalidCusips []string `json:"invalidCusips,omitempty"`
	// list of invalid SSIDs from request
	InvalidSSIDs []int64 `json:"invalidSSIDs,omitempty"`
	// list of invalid symbols from request
	InvalidSymbols []string `json:"invalidSymbols,omitempty"`
}

QuoteError Partial or Custom errors per request

func NewQuoteError

func NewQuoteError() *QuoteError

NewQuoteError instantiates a new QuoteError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteErrorWithDefaults

func NewQuoteErrorWithDefaults() *QuoteError

NewQuoteErrorWithDefaults instantiates a new QuoteError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteError) GetInvalidCusips

func (o *QuoteError) GetInvalidCusips() []string

GetInvalidCusips returns the InvalidCusips field value if set, zero value otherwise.

func (*QuoteError) GetInvalidCusipsOk

func (o *QuoteError) GetInvalidCusipsOk() ([]string, bool)

GetInvalidCusipsOk returns a tuple with the InvalidCusips field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteError) GetInvalidSSIDs

func (o *QuoteError) GetInvalidSSIDs() []int64

GetInvalidSSIDs returns the InvalidSSIDs field value if set, zero value otherwise.

func (*QuoteError) GetInvalidSSIDsOk

func (o *QuoteError) GetInvalidSSIDsOk() ([]int64, bool)

GetInvalidSSIDsOk returns a tuple with the InvalidSSIDs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteError) GetInvalidSymbols

func (o *QuoteError) GetInvalidSymbols() []string

GetInvalidSymbols returns the InvalidSymbols field value if set, zero value otherwise.

func (*QuoteError) GetInvalidSymbolsOk

func (o *QuoteError) GetInvalidSymbolsOk() ([]string, bool)

GetInvalidSymbolsOk returns a tuple with the InvalidSymbols field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteError) HasInvalidCusips

func (o *QuoteError) HasInvalidCusips() bool

HasInvalidCusips returns a boolean if a field has been set.

func (*QuoteError) HasInvalidSSIDs

func (o *QuoteError) HasInvalidSSIDs() bool

HasInvalidSSIDs returns a boolean if a field has been set.

func (*QuoteError) HasInvalidSymbols

func (o *QuoteError) HasInvalidSymbols() bool

HasInvalidSymbols returns a boolean if a field has been set.

func (QuoteError) MarshalJSON

func (o QuoteError) MarshalJSON() ([]byte, error)

func (*QuoteError) SetInvalidCusips

func (o *QuoteError) SetInvalidCusips(v []string)

SetInvalidCusips gets a reference to the given []string and assigns it to the InvalidCusips field.

func (*QuoteError) SetInvalidSSIDs

func (o *QuoteError) SetInvalidSSIDs(v []int64)

SetInvalidSSIDs gets a reference to the given []int64 and assigns it to the InvalidSSIDs field.

func (*QuoteError) SetInvalidSymbols

func (o *QuoteError) SetInvalidSymbols(v []string)

SetInvalidSymbols gets a reference to the given []string and assigns it to the InvalidSymbols field.

func (QuoteError) ToMap

func (o QuoteError) ToMap() (map[string]interface{}, error)

type QuoteForex

type QuoteForex struct {
	// Higest price traded in the past 12 months, or 52 weeks
	Var52WeekHigh *float64 `json:"52WeekHigh,omitempty"`
	// Lowest price traded in the past 12 months, or 52 weeks
	Var52WeekLow *float64 `json:"52WeekLow,omitempty"`
	// Current Best Ask Price
	AskPrice *float64 `json:"askPrice,omitempty"`
	// Number of shares for ask
	AskSize *int32 `json:"askSize,omitempty"`
	// Current Best Bid Price
	BidPrice *float64 `json:"bidPrice,omitempty"`
	// Number of shares for bid
	BidSize *int32 `json:"bidSize,omitempty"`
	// Previous day's closing price
	ClosePrice *float64 `json:"closePrice,omitempty"`
	// Day's high trade price
	HighPrice *float64 `json:"highPrice,omitempty"`
	LastPrice *float64 `json:"lastPrice,omitempty"`
	// Number of shares traded with last trade
	LastSize *int32 `json:"lastSize,omitempty"`
	// Day's low trade price
	LowPrice *float64 `json:"lowPrice,omitempty"`
	// Mark price
	Mark *float64 `json:"mark,omitempty"`
	// Current Last-Prev Close
	NetChange *float64 `json:"netChange,omitempty"`
	// Net Percentage Change
	NetPercentChange *float64 `json:"netPercentChange,omitempty"`
	// Price at market open
	OpenPrice *float64 `json:"openPrice,omitempty"`
	// Last quote time in milliseconds since Epoch
	QuoteTime *int64 `json:"quoteTime,omitempty"`
	// Status of security
	SecurityStatus *string `json:"securityStatus,omitempty"`
	// Tick Price
	Tick *float64 `json:"tick,omitempty"`
	// Tick Amount
	TickAmount *float64 `json:"tickAmount,omitempty"`
	// Aggregated shares traded throughout the day, including pre/post market hours.
	TotalVolume *int64 `json:"totalVolume,omitempty"`
	// Last trade time in milliseconds since Epoch
	TradeTime *int64 `json:"tradeTime,omitempty"`
}

QuoteForex Quote data of Forex security

func NewQuoteForex

func NewQuoteForex() *QuoteForex

NewQuoteForex instantiates a new QuoteForex object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteForexWithDefaults

func NewQuoteForexWithDefaults() *QuoteForex

NewQuoteForexWithDefaults instantiates a new QuoteForex object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteForex) GetAskPrice

func (o *QuoteForex) GetAskPrice() float64

GetAskPrice returns the AskPrice field value if set, zero value otherwise.

func (*QuoteForex) GetAskPriceOk

func (o *QuoteForex) GetAskPriceOk() (*float64, bool)

GetAskPriceOk returns a tuple with the AskPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetAskSize

func (o *QuoteForex) GetAskSize() int32

GetAskSize returns the AskSize field value if set, zero value otherwise.

func (*QuoteForex) GetAskSizeOk

func (o *QuoteForex) GetAskSizeOk() (*int32, bool)

GetAskSizeOk returns a tuple with the AskSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetBidPrice

func (o *QuoteForex) GetBidPrice() float64

GetBidPrice returns the BidPrice field value if set, zero value otherwise.

func (*QuoteForex) GetBidPriceOk

func (o *QuoteForex) GetBidPriceOk() (*float64, bool)

GetBidPriceOk returns a tuple with the BidPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetBidSize

func (o *QuoteForex) GetBidSize() int32

GetBidSize returns the BidSize field value if set, zero value otherwise.

func (*QuoteForex) GetBidSizeOk

func (o *QuoteForex) GetBidSizeOk() (*int32, bool)

GetBidSizeOk returns a tuple with the BidSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetClosePrice

func (o *QuoteForex) GetClosePrice() float64

GetClosePrice returns the ClosePrice field value if set, zero value otherwise.

func (*QuoteForex) GetClosePriceOk

func (o *QuoteForex) GetClosePriceOk() (*float64, bool)

GetClosePriceOk returns a tuple with the ClosePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetHighPrice

func (o *QuoteForex) GetHighPrice() float64

GetHighPrice returns the HighPrice field value if set, zero value otherwise.

func (*QuoteForex) GetHighPriceOk

func (o *QuoteForex) GetHighPriceOk() (*float64, bool)

GetHighPriceOk returns a tuple with the HighPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetLastPrice

func (o *QuoteForex) GetLastPrice() float64

GetLastPrice returns the LastPrice field value if set, zero value otherwise.

func (*QuoteForex) GetLastPriceOk

func (o *QuoteForex) GetLastPriceOk() (*float64, bool)

GetLastPriceOk returns a tuple with the LastPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetLastSize

func (o *QuoteForex) GetLastSize() int32

GetLastSize returns the LastSize field value if set, zero value otherwise.

func (*QuoteForex) GetLastSizeOk

func (o *QuoteForex) GetLastSizeOk() (*int32, bool)

GetLastSizeOk returns a tuple with the LastSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetLowPrice

func (o *QuoteForex) GetLowPrice() float64

GetLowPrice returns the LowPrice field value if set, zero value otherwise.

func (*QuoteForex) GetLowPriceOk

func (o *QuoteForex) GetLowPriceOk() (*float64, bool)

GetLowPriceOk returns a tuple with the LowPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetMark

func (o *QuoteForex) GetMark() float64

GetMark returns the Mark field value if set, zero value otherwise.

func (*QuoteForex) GetMarkOk

func (o *QuoteForex) GetMarkOk() (*float64, bool)

GetMarkOk returns a tuple with the Mark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetNetChange

func (o *QuoteForex) GetNetChange() float64

GetNetChange returns the NetChange field value if set, zero value otherwise.

func (*QuoteForex) GetNetChangeOk

func (o *QuoteForex) GetNetChangeOk() (*float64, bool)

GetNetChangeOk returns a tuple with the NetChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetNetPercentChange

func (o *QuoteForex) GetNetPercentChange() float64

GetNetPercentChange returns the NetPercentChange field value if set, zero value otherwise.

func (*QuoteForex) GetNetPercentChangeOk

func (o *QuoteForex) GetNetPercentChangeOk() (*float64, bool)

GetNetPercentChangeOk returns a tuple with the NetPercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetOpenPrice

func (o *QuoteForex) GetOpenPrice() float64

GetOpenPrice returns the OpenPrice field value if set, zero value otherwise.

func (*QuoteForex) GetOpenPriceOk

func (o *QuoteForex) GetOpenPriceOk() (*float64, bool)

GetOpenPriceOk returns a tuple with the OpenPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetQuoteTime

func (o *QuoteForex) GetQuoteTime() int64

GetQuoteTime returns the QuoteTime field value if set, zero value otherwise.

func (*QuoteForex) GetQuoteTimeOk

func (o *QuoteForex) GetQuoteTimeOk() (*int64, bool)

GetQuoteTimeOk returns a tuple with the QuoteTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetSecurityStatus

func (o *QuoteForex) GetSecurityStatus() string

GetSecurityStatus returns the SecurityStatus field value if set, zero value otherwise.

func (*QuoteForex) GetSecurityStatusOk

func (o *QuoteForex) GetSecurityStatusOk() (*string, bool)

GetSecurityStatusOk returns a tuple with the SecurityStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetTick

func (o *QuoteForex) GetTick() float64

GetTick returns the Tick field value if set, zero value otherwise.

func (*QuoteForex) GetTickAmount

func (o *QuoteForex) GetTickAmount() float64

GetTickAmount returns the TickAmount field value if set, zero value otherwise.

func (*QuoteForex) GetTickAmountOk

func (o *QuoteForex) GetTickAmountOk() (*float64, bool)

GetTickAmountOk returns a tuple with the TickAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetTickOk

func (o *QuoteForex) GetTickOk() (*float64, bool)

GetTickOk returns a tuple with the Tick field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetTotalVolume

func (o *QuoteForex) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*QuoteForex) GetTotalVolumeOk

func (o *QuoteForex) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetTradeTime

func (o *QuoteForex) GetTradeTime() int64

GetTradeTime returns the TradeTime field value if set, zero value otherwise.

func (*QuoteForex) GetTradeTimeOk

func (o *QuoteForex) GetTradeTimeOk() (*int64, bool)

GetTradeTimeOk returns a tuple with the TradeTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetVar52WeekHigh

func (o *QuoteForex) GetVar52WeekHigh() float64

GetVar52WeekHigh returns the Var52WeekHigh field value if set, zero value otherwise.

func (*QuoteForex) GetVar52WeekHighOk

func (o *QuoteForex) GetVar52WeekHighOk() (*float64, bool)

GetVar52WeekHighOk returns a tuple with the Var52WeekHigh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) GetVar52WeekLow

func (o *QuoteForex) GetVar52WeekLow() float64

GetVar52WeekLow returns the Var52WeekLow field value if set, zero value otherwise.

func (*QuoteForex) GetVar52WeekLowOk

func (o *QuoteForex) GetVar52WeekLowOk() (*float64, bool)

GetVar52WeekLowOk returns a tuple with the Var52WeekLow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteForex) HasAskPrice

func (o *QuoteForex) HasAskPrice() bool

HasAskPrice returns a boolean if a field has been set.

func (*QuoteForex) HasAskSize

func (o *QuoteForex) HasAskSize() bool

HasAskSize returns a boolean if a field has been set.

func (*QuoteForex) HasBidPrice

func (o *QuoteForex) HasBidPrice() bool

HasBidPrice returns a boolean if a field has been set.

func (*QuoteForex) HasBidSize

func (o *QuoteForex) HasBidSize() bool

HasBidSize returns a boolean if a field has been set.

func (*QuoteForex) HasClosePrice

func (o *QuoteForex) HasClosePrice() bool

HasClosePrice returns a boolean if a field has been set.

func (*QuoteForex) HasHighPrice

func (o *QuoteForex) HasHighPrice() bool

HasHighPrice returns a boolean if a field has been set.

func (*QuoteForex) HasLastPrice

func (o *QuoteForex) HasLastPrice() bool

HasLastPrice returns a boolean if a field has been set.

func (*QuoteForex) HasLastSize

func (o *QuoteForex) HasLastSize() bool

HasLastSize returns a boolean if a field has been set.

func (*QuoteForex) HasLowPrice

func (o *QuoteForex) HasLowPrice() bool

HasLowPrice returns a boolean if a field has been set.

func (*QuoteForex) HasMark

func (o *QuoteForex) HasMark() bool

HasMark returns a boolean if a field has been set.

func (*QuoteForex) HasNetChange

func (o *QuoteForex) HasNetChange() bool

HasNetChange returns a boolean if a field has been set.

func (*QuoteForex) HasNetPercentChange

func (o *QuoteForex) HasNetPercentChange() bool

HasNetPercentChange returns a boolean if a field has been set.

func (*QuoteForex) HasOpenPrice

func (o *QuoteForex) HasOpenPrice() bool

HasOpenPrice returns a boolean if a field has been set.

func (*QuoteForex) HasQuoteTime

func (o *QuoteForex) HasQuoteTime() bool

HasQuoteTime returns a boolean if a field has been set.

func (*QuoteForex) HasSecurityStatus

func (o *QuoteForex) HasSecurityStatus() bool

HasSecurityStatus returns a boolean if a field has been set.

func (*QuoteForex) HasTick

func (o *QuoteForex) HasTick() bool

HasTick returns a boolean if a field has been set.

func (*QuoteForex) HasTickAmount

func (o *QuoteForex) HasTickAmount() bool

HasTickAmount returns a boolean if a field has been set.

func (*QuoteForex) HasTotalVolume

func (o *QuoteForex) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*QuoteForex) HasTradeTime

func (o *QuoteForex) HasTradeTime() bool

HasTradeTime returns a boolean if a field has been set.

func (*QuoteForex) HasVar52WeekHigh

func (o *QuoteForex) HasVar52WeekHigh() bool

HasVar52WeekHigh returns a boolean if a field has been set.

func (*QuoteForex) HasVar52WeekLow

func (o *QuoteForex) HasVar52WeekLow() bool

HasVar52WeekLow returns a boolean if a field has been set.

func (QuoteForex) MarshalJSON

func (o QuoteForex) MarshalJSON() ([]byte, error)

func (*QuoteForex) SetAskPrice

func (o *QuoteForex) SetAskPrice(v float64)

SetAskPrice gets a reference to the given float64 and assigns it to the AskPrice field.

func (*QuoteForex) SetAskSize

func (o *QuoteForex) SetAskSize(v int32)

SetAskSize gets a reference to the given int32 and assigns it to the AskSize field.

func (*QuoteForex) SetBidPrice

func (o *QuoteForex) SetBidPrice(v float64)

SetBidPrice gets a reference to the given float64 and assigns it to the BidPrice field.

func (*QuoteForex) SetBidSize

func (o *QuoteForex) SetBidSize(v int32)

SetBidSize gets a reference to the given int32 and assigns it to the BidSize field.

func (*QuoteForex) SetClosePrice

func (o *QuoteForex) SetClosePrice(v float64)

SetClosePrice gets a reference to the given float64 and assigns it to the ClosePrice field.

func (*QuoteForex) SetHighPrice

func (o *QuoteForex) SetHighPrice(v float64)

SetHighPrice gets a reference to the given float64 and assigns it to the HighPrice field.

func (*QuoteForex) SetLastPrice

func (o *QuoteForex) SetLastPrice(v float64)

SetLastPrice gets a reference to the given float64 and assigns it to the LastPrice field.

func (*QuoteForex) SetLastSize

func (o *QuoteForex) SetLastSize(v int32)

SetLastSize gets a reference to the given int32 and assigns it to the LastSize field.

func (*QuoteForex) SetLowPrice

func (o *QuoteForex) SetLowPrice(v float64)

SetLowPrice gets a reference to the given float64 and assigns it to the LowPrice field.

func (*QuoteForex) SetMark

func (o *QuoteForex) SetMark(v float64)

SetMark gets a reference to the given float64 and assigns it to the Mark field.

func (*QuoteForex) SetNetChange

func (o *QuoteForex) SetNetChange(v float64)

SetNetChange gets a reference to the given float64 and assigns it to the NetChange field.

func (*QuoteForex) SetNetPercentChange

func (o *QuoteForex) SetNetPercentChange(v float64)

SetNetPercentChange gets a reference to the given float64 and assigns it to the NetPercentChange field.

func (*QuoteForex) SetOpenPrice

func (o *QuoteForex) SetOpenPrice(v float64)

SetOpenPrice gets a reference to the given float64 and assigns it to the OpenPrice field.

func (*QuoteForex) SetQuoteTime

func (o *QuoteForex) SetQuoteTime(v int64)

SetQuoteTime gets a reference to the given int64 and assigns it to the QuoteTime field.

func (*QuoteForex) SetSecurityStatus

func (o *QuoteForex) SetSecurityStatus(v string)

SetSecurityStatus gets a reference to the given string and assigns it to the SecurityStatus field.

func (*QuoteForex) SetTick

func (o *QuoteForex) SetTick(v float64)

SetTick gets a reference to the given float64 and assigns it to the Tick field.

func (*QuoteForex) SetTickAmount

func (o *QuoteForex) SetTickAmount(v float64)

SetTickAmount gets a reference to the given float64 and assigns it to the TickAmount field.

func (*QuoteForex) SetTotalVolume

func (o *QuoteForex) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*QuoteForex) SetTradeTime

func (o *QuoteForex) SetTradeTime(v int64)

SetTradeTime gets a reference to the given int64 and assigns it to the TradeTime field.

func (*QuoteForex) SetVar52WeekHigh

func (o *QuoteForex) SetVar52WeekHigh(v float64)

SetVar52WeekHigh gets a reference to the given float64 and assigns it to the Var52WeekHigh field.

func (*QuoteForex) SetVar52WeekLow

func (o *QuoteForex) SetVar52WeekLow(v float64)

SetVar52WeekLow gets a reference to the given float64 and assigns it to the Var52WeekLow field.

func (QuoteForex) ToMap

func (o QuoteForex) ToMap() (map[string]interface{}, error)

type QuoteFuture

type QuoteFuture struct {
	// ask MIC code
	AskMICId *string `json:"askMICId,omitempty"`
	// Current Best Ask Price
	AskPrice *float64 `json:"askPrice,omitempty"`
	// Number of shares for ask
	AskSize *int32 `json:"askSize,omitempty"`
	// Last ask time in milliseconds since Epoch
	AskTime *int64 `json:"askTime,omitempty"`
	// bid MIC code
	BidMICId *string `json:"bidMICId,omitempty"`
	// Current Best Bid Price
	BidPrice *float64 `json:"bidPrice,omitempty"`
	// Number of shares for bid
	BidSize *int32 `json:"bidSize,omitempty"`
	// Last bid time in milliseconds since Epoch
	BidTime *int64 `json:"bidTime,omitempty"`
	// Previous day's closing price
	ClosePrice *float64 `json:"closePrice,omitempty"`
	// Net Percentage Change
	FuturePercentChange *float64 `json:"futurePercentChange,omitempty"`
	// Day's high trade price
	HighPrice *float64 `json:"highPrice,omitempty"`
	// Last MIC Code
	LastMICId *string  `json:"lastMICId,omitempty"`
	LastPrice *float64 `json:"lastPrice,omitempty"`
	// Number of shares traded with last trade
	LastSize *int32 `json:"lastSize,omitempty"`
	// Day's low trade price
	LowPrice *float64 `json:"lowPrice,omitempty"`
	// Mark price
	Mark *float64 `json:"mark,omitempty"`
	// Current Last-Prev Close
	NetChange *float64 `json:"netChange,omitempty"`
	// Open interest
	OpenInterest *int32 `json:"openInterest,omitempty"`
	// Price at market open
	OpenPrice *float64 `json:"openPrice,omitempty"`
	// Last quote time in milliseconds since Epoch
	QuoteTime *int64 `json:"quoteTime,omitempty"`
	// quoted during trading session
	QuotedInSession *bool `json:"quotedInSession,omitempty"`
	// Status of security
	SecurityStatus *string `json:"securityStatus,omitempty"`
	// settlement time in milliseconds since Epoch
	SettleTime *int64 `json:"settleTime,omitempty"`
	// Tick Price
	Tick *float64 `json:"tick,omitempty"`
	// Tick Amount
	TickAmount *float64 `json:"tickAmount,omitempty"`
	// Aggregated shares traded throughout the day, including pre/post market hours.
	TotalVolume *int64 `json:"totalVolume,omitempty"`
	// Last trade time in milliseconds since Epoch
	TradeTime *int64 `json:"tradeTime,omitempty"`
}

QuoteFuture Quote data of Future security

func NewQuoteFuture

func NewQuoteFuture() *QuoteFuture

NewQuoteFuture instantiates a new QuoteFuture object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteFutureWithDefaults

func NewQuoteFutureWithDefaults() *QuoteFuture

NewQuoteFutureWithDefaults instantiates a new QuoteFuture object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteFuture) GetAskMICId

func (o *QuoteFuture) GetAskMICId() string

GetAskMICId returns the AskMICId field value if set, zero value otherwise.

func (*QuoteFuture) GetAskMICIdOk

func (o *QuoteFuture) GetAskMICIdOk() (*string, bool)

GetAskMICIdOk returns a tuple with the AskMICId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetAskPrice

func (o *QuoteFuture) GetAskPrice() float64

GetAskPrice returns the AskPrice field value if set, zero value otherwise.

func (*QuoteFuture) GetAskPriceOk

func (o *QuoteFuture) GetAskPriceOk() (*float64, bool)

GetAskPriceOk returns a tuple with the AskPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetAskSize

func (o *QuoteFuture) GetAskSize() int32

GetAskSize returns the AskSize field value if set, zero value otherwise.

func (*QuoteFuture) GetAskSizeOk

func (o *QuoteFuture) GetAskSizeOk() (*int32, bool)

GetAskSizeOk returns a tuple with the AskSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetAskTime

func (o *QuoteFuture) GetAskTime() int64

GetAskTime returns the AskTime field value if set, zero value otherwise.

func (*QuoteFuture) GetAskTimeOk

func (o *QuoteFuture) GetAskTimeOk() (*int64, bool)

GetAskTimeOk returns a tuple with the AskTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetBidMICId

func (o *QuoteFuture) GetBidMICId() string

GetBidMICId returns the BidMICId field value if set, zero value otherwise.

func (*QuoteFuture) GetBidMICIdOk

func (o *QuoteFuture) GetBidMICIdOk() (*string, bool)

GetBidMICIdOk returns a tuple with the BidMICId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetBidPrice

func (o *QuoteFuture) GetBidPrice() float64

GetBidPrice returns the BidPrice field value if set, zero value otherwise.

func (*QuoteFuture) GetBidPriceOk

func (o *QuoteFuture) GetBidPriceOk() (*float64, bool)

GetBidPriceOk returns a tuple with the BidPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetBidSize

func (o *QuoteFuture) GetBidSize() int32

GetBidSize returns the BidSize field value if set, zero value otherwise.

func (*QuoteFuture) GetBidSizeOk

func (o *QuoteFuture) GetBidSizeOk() (*int32, bool)

GetBidSizeOk returns a tuple with the BidSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetBidTime

func (o *QuoteFuture) GetBidTime() int64

GetBidTime returns the BidTime field value if set, zero value otherwise.

func (*QuoteFuture) GetBidTimeOk

func (o *QuoteFuture) GetBidTimeOk() (*int64, bool)

GetBidTimeOk returns a tuple with the BidTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetClosePrice

func (o *QuoteFuture) GetClosePrice() float64

GetClosePrice returns the ClosePrice field value if set, zero value otherwise.

func (*QuoteFuture) GetClosePriceOk

func (o *QuoteFuture) GetClosePriceOk() (*float64, bool)

GetClosePriceOk returns a tuple with the ClosePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetFuturePercentChange

func (o *QuoteFuture) GetFuturePercentChange() float64

GetFuturePercentChange returns the FuturePercentChange field value if set, zero value otherwise.

func (*QuoteFuture) GetFuturePercentChangeOk

func (o *QuoteFuture) GetFuturePercentChangeOk() (*float64, bool)

GetFuturePercentChangeOk returns a tuple with the FuturePercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetHighPrice

func (o *QuoteFuture) GetHighPrice() float64

GetHighPrice returns the HighPrice field value if set, zero value otherwise.

func (*QuoteFuture) GetHighPriceOk

func (o *QuoteFuture) GetHighPriceOk() (*float64, bool)

GetHighPriceOk returns a tuple with the HighPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetLastMICId

func (o *QuoteFuture) GetLastMICId() string

GetLastMICId returns the LastMICId field value if set, zero value otherwise.

func (*QuoteFuture) GetLastMICIdOk

func (o *QuoteFuture) GetLastMICIdOk() (*string, bool)

GetLastMICIdOk returns a tuple with the LastMICId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetLastPrice

func (o *QuoteFuture) GetLastPrice() float64

GetLastPrice returns the LastPrice field value if set, zero value otherwise.

func (*QuoteFuture) GetLastPriceOk

func (o *QuoteFuture) GetLastPriceOk() (*float64, bool)

GetLastPriceOk returns a tuple with the LastPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetLastSize

func (o *QuoteFuture) GetLastSize() int32

GetLastSize returns the LastSize field value if set, zero value otherwise.

func (*QuoteFuture) GetLastSizeOk

func (o *QuoteFuture) GetLastSizeOk() (*int32, bool)

GetLastSizeOk returns a tuple with the LastSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetLowPrice

func (o *QuoteFuture) GetLowPrice() float64

GetLowPrice returns the LowPrice field value if set, zero value otherwise.

func (*QuoteFuture) GetLowPriceOk

func (o *QuoteFuture) GetLowPriceOk() (*float64, bool)

GetLowPriceOk returns a tuple with the LowPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetMark

func (o *QuoteFuture) GetMark() float64

GetMark returns the Mark field value if set, zero value otherwise.

func (*QuoteFuture) GetMarkOk

func (o *QuoteFuture) GetMarkOk() (*float64, bool)

GetMarkOk returns a tuple with the Mark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetNetChange

func (o *QuoteFuture) GetNetChange() float64

GetNetChange returns the NetChange field value if set, zero value otherwise.

func (*QuoteFuture) GetNetChangeOk

func (o *QuoteFuture) GetNetChangeOk() (*float64, bool)

GetNetChangeOk returns a tuple with the NetChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetOpenInterest

func (o *QuoteFuture) GetOpenInterest() int32

GetOpenInterest returns the OpenInterest field value if set, zero value otherwise.

func (*QuoteFuture) GetOpenInterestOk

func (o *QuoteFuture) GetOpenInterestOk() (*int32, bool)

GetOpenInterestOk returns a tuple with the OpenInterest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetOpenPrice

func (o *QuoteFuture) GetOpenPrice() float64

GetOpenPrice returns the OpenPrice field value if set, zero value otherwise.

func (*QuoteFuture) GetOpenPriceOk

func (o *QuoteFuture) GetOpenPriceOk() (*float64, bool)

GetOpenPriceOk returns a tuple with the OpenPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetQuoteTime

func (o *QuoteFuture) GetQuoteTime() int64

GetQuoteTime returns the QuoteTime field value if set, zero value otherwise.

func (*QuoteFuture) GetQuoteTimeOk

func (o *QuoteFuture) GetQuoteTimeOk() (*int64, bool)

GetQuoteTimeOk returns a tuple with the QuoteTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetQuotedInSession

func (o *QuoteFuture) GetQuotedInSession() bool

GetQuotedInSession returns the QuotedInSession field value if set, zero value otherwise.

func (*QuoteFuture) GetQuotedInSessionOk

func (o *QuoteFuture) GetQuotedInSessionOk() (*bool, bool)

GetQuotedInSessionOk returns a tuple with the QuotedInSession field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetSecurityStatus

func (o *QuoteFuture) GetSecurityStatus() string

GetSecurityStatus returns the SecurityStatus field value if set, zero value otherwise.

func (*QuoteFuture) GetSecurityStatusOk

func (o *QuoteFuture) GetSecurityStatusOk() (*string, bool)

GetSecurityStatusOk returns a tuple with the SecurityStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetSettleTime

func (o *QuoteFuture) GetSettleTime() int64

GetSettleTime returns the SettleTime field value if set, zero value otherwise.

func (*QuoteFuture) GetSettleTimeOk

func (o *QuoteFuture) GetSettleTimeOk() (*int64, bool)

GetSettleTimeOk returns a tuple with the SettleTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetTick

func (o *QuoteFuture) GetTick() float64

GetTick returns the Tick field value if set, zero value otherwise.

func (*QuoteFuture) GetTickAmount

func (o *QuoteFuture) GetTickAmount() float64

GetTickAmount returns the TickAmount field value if set, zero value otherwise.

func (*QuoteFuture) GetTickAmountOk

func (o *QuoteFuture) GetTickAmountOk() (*float64, bool)

GetTickAmountOk returns a tuple with the TickAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetTickOk

func (o *QuoteFuture) GetTickOk() (*float64, bool)

GetTickOk returns a tuple with the Tick field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetTotalVolume

func (o *QuoteFuture) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*QuoteFuture) GetTotalVolumeOk

func (o *QuoteFuture) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) GetTradeTime

func (o *QuoteFuture) GetTradeTime() int64

GetTradeTime returns the TradeTime field value if set, zero value otherwise.

func (*QuoteFuture) GetTradeTimeOk

func (o *QuoteFuture) GetTradeTimeOk() (*int64, bool)

GetTradeTimeOk returns a tuple with the TradeTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFuture) HasAskMICId

func (o *QuoteFuture) HasAskMICId() bool

HasAskMICId returns a boolean if a field has been set.

func (*QuoteFuture) HasAskPrice

func (o *QuoteFuture) HasAskPrice() bool

HasAskPrice returns a boolean if a field has been set.

func (*QuoteFuture) HasAskSize

func (o *QuoteFuture) HasAskSize() bool

HasAskSize returns a boolean if a field has been set.

func (*QuoteFuture) HasAskTime

func (o *QuoteFuture) HasAskTime() bool

HasAskTime returns a boolean if a field has been set.

func (*QuoteFuture) HasBidMICId

func (o *QuoteFuture) HasBidMICId() bool

HasBidMICId returns a boolean if a field has been set.

func (*QuoteFuture) HasBidPrice

func (o *QuoteFuture) HasBidPrice() bool

HasBidPrice returns a boolean if a field has been set.

func (*QuoteFuture) HasBidSize

func (o *QuoteFuture) HasBidSize() bool

HasBidSize returns a boolean if a field has been set.

func (*QuoteFuture) HasBidTime

func (o *QuoteFuture) HasBidTime() bool

HasBidTime returns a boolean if a field has been set.

func (*QuoteFuture) HasClosePrice

func (o *QuoteFuture) HasClosePrice() bool

HasClosePrice returns a boolean if a field has been set.

func (*QuoteFuture) HasFuturePercentChange

func (o *QuoteFuture) HasFuturePercentChange() bool

HasFuturePercentChange returns a boolean if a field has been set.

func (*QuoteFuture) HasHighPrice

func (o *QuoteFuture) HasHighPrice() bool

HasHighPrice returns a boolean if a field has been set.

func (*QuoteFuture) HasLastMICId

func (o *QuoteFuture) HasLastMICId() bool

HasLastMICId returns a boolean if a field has been set.

func (*QuoteFuture) HasLastPrice

func (o *QuoteFuture) HasLastPrice() bool

HasLastPrice returns a boolean if a field has been set.

func (*QuoteFuture) HasLastSize

func (o *QuoteFuture) HasLastSize() bool

HasLastSize returns a boolean if a field has been set.

func (*QuoteFuture) HasLowPrice

func (o *QuoteFuture) HasLowPrice() bool

HasLowPrice returns a boolean if a field has been set.

func (*QuoteFuture) HasMark

func (o *QuoteFuture) HasMark() bool

HasMark returns a boolean if a field has been set.

func (*QuoteFuture) HasNetChange

func (o *QuoteFuture) HasNetChange() bool

HasNetChange returns a boolean if a field has been set.

func (*QuoteFuture) HasOpenInterest

func (o *QuoteFuture) HasOpenInterest() bool

HasOpenInterest returns a boolean if a field has been set.

func (*QuoteFuture) HasOpenPrice

func (o *QuoteFuture) HasOpenPrice() bool

HasOpenPrice returns a boolean if a field has been set.

func (*QuoteFuture) HasQuoteTime

func (o *QuoteFuture) HasQuoteTime() bool

HasQuoteTime returns a boolean if a field has been set.

func (*QuoteFuture) HasQuotedInSession

func (o *QuoteFuture) HasQuotedInSession() bool

HasQuotedInSession returns a boolean if a field has been set.

func (*QuoteFuture) HasSecurityStatus

func (o *QuoteFuture) HasSecurityStatus() bool

HasSecurityStatus returns a boolean if a field has been set.

func (*QuoteFuture) HasSettleTime

func (o *QuoteFuture) HasSettleTime() bool

HasSettleTime returns a boolean if a field has been set.

func (*QuoteFuture) HasTick

func (o *QuoteFuture) HasTick() bool

HasTick returns a boolean if a field has been set.

func (*QuoteFuture) HasTickAmount

func (o *QuoteFuture) HasTickAmount() bool

HasTickAmount returns a boolean if a field has been set.

func (*QuoteFuture) HasTotalVolume

func (o *QuoteFuture) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*QuoteFuture) HasTradeTime

func (o *QuoteFuture) HasTradeTime() bool

HasTradeTime returns a boolean if a field has been set.

func (QuoteFuture) MarshalJSON

func (o QuoteFuture) MarshalJSON() ([]byte, error)

func (*QuoteFuture) SetAskMICId

func (o *QuoteFuture) SetAskMICId(v string)

SetAskMICId gets a reference to the given string and assigns it to the AskMICId field.

func (*QuoteFuture) SetAskPrice

func (o *QuoteFuture) SetAskPrice(v float64)

SetAskPrice gets a reference to the given float64 and assigns it to the AskPrice field.

func (*QuoteFuture) SetAskSize

func (o *QuoteFuture) SetAskSize(v int32)

SetAskSize gets a reference to the given int32 and assigns it to the AskSize field.

func (*QuoteFuture) SetAskTime

func (o *QuoteFuture) SetAskTime(v int64)

SetAskTime gets a reference to the given int64 and assigns it to the AskTime field.

func (*QuoteFuture) SetBidMICId

func (o *QuoteFuture) SetBidMICId(v string)

SetBidMICId gets a reference to the given string and assigns it to the BidMICId field.

func (*QuoteFuture) SetBidPrice

func (o *QuoteFuture) SetBidPrice(v float64)

SetBidPrice gets a reference to the given float64 and assigns it to the BidPrice field.

func (*QuoteFuture) SetBidSize

func (o *QuoteFuture) SetBidSize(v int32)

SetBidSize gets a reference to the given int32 and assigns it to the BidSize field.

func (*QuoteFuture) SetBidTime

func (o *QuoteFuture) SetBidTime(v int64)

SetBidTime gets a reference to the given int64 and assigns it to the BidTime field.

func (*QuoteFuture) SetClosePrice

func (o *QuoteFuture) SetClosePrice(v float64)

SetClosePrice gets a reference to the given float64 and assigns it to the ClosePrice field.

func (*QuoteFuture) SetFuturePercentChange

func (o *QuoteFuture) SetFuturePercentChange(v float64)

SetFuturePercentChange gets a reference to the given float64 and assigns it to the FuturePercentChange field.

func (*QuoteFuture) SetHighPrice

func (o *QuoteFuture) SetHighPrice(v float64)

SetHighPrice gets a reference to the given float64 and assigns it to the HighPrice field.

func (*QuoteFuture) SetLastMICId

func (o *QuoteFuture) SetLastMICId(v string)

SetLastMICId gets a reference to the given string and assigns it to the LastMICId field.

func (*QuoteFuture) SetLastPrice

func (o *QuoteFuture) SetLastPrice(v float64)

SetLastPrice gets a reference to the given float64 and assigns it to the LastPrice field.

func (*QuoteFuture) SetLastSize

func (o *QuoteFuture) SetLastSize(v int32)

SetLastSize gets a reference to the given int32 and assigns it to the LastSize field.

func (*QuoteFuture) SetLowPrice

func (o *QuoteFuture) SetLowPrice(v float64)

SetLowPrice gets a reference to the given float64 and assigns it to the LowPrice field.

func (*QuoteFuture) SetMark

func (o *QuoteFuture) SetMark(v float64)

SetMark gets a reference to the given float64 and assigns it to the Mark field.

func (*QuoteFuture) SetNetChange

func (o *QuoteFuture) SetNetChange(v float64)

SetNetChange gets a reference to the given float64 and assigns it to the NetChange field.

func (*QuoteFuture) SetOpenInterest

func (o *QuoteFuture) SetOpenInterest(v int32)

SetOpenInterest gets a reference to the given int32 and assigns it to the OpenInterest field.

func (*QuoteFuture) SetOpenPrice

func (o *QuoteFuture) SetOpenPrice(v float64)

SetOpenPrice gets a reference to the given float64 and assigns it to the OpenPrice field.

func (*QuoteFuture) SetQuoteTime

func (o *QuoteFuture) SetQuoteTime(v int64)

SetQuoteTime gets a reference to the given int64 and assigns it to the QuoteTime field.

func (*QuoteFuture) SetQuotedInSession

func (o *QuoteFuture) SetQuotedInSession(v bool)

SetQuotedInSession gets a reference to the given bool and assigns it to the QuotedInSession field.

func (*QuoteFuture) SetSecurityStatus

func (o *QuoteFuture) SetSecurityStatus(v string)

SetSecurityStatus gets a reference to the given string and assigns it to the SecurityStatus field.

func (*QuoteFuture) SetSettleTime

func (o *QuoteFuture) SetSettleTime(v int64)

SetSettleTime gets a reference to the given int64 and assigns it to the SettleTime field.

func (*QuoteFuture) SetTick

func (o *QuoteFuture) SetTick(v float64)

SetTick gets a reference to the given float64 and assigns it to the Tick field.

func (*QuoteFuture) SetTickAmount

func (o *QuoteFuture) SetTickAmount(v float64)

SetTickAmount gets a reference to the given float64 and assigns it to the TickAmount field.

func (*QuoteFuture) SetTotalVolume

func (o *QuoteFuture) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*QuoteFuture) SetTradeTime

func (o *QuoteFuture) SetTradeTime(v int64)

SetTradeTime gets a reference to the given int64 and assigns it to the TradeTime field.

func (QuoteFuture) ToMap

func (o QuoteFuture) ToMap() (map[string]interface{}, error)

type QuoteFutureOption

type QuoteFutureOption struct {
	// ask MIC code
	AskMICId *string `json:"askMICId,omitempty"`
	// Current Best Ask Price
	AskPrice *float64 `json:"askPrice,omitempty"`
	// Number of shares for ask
	AskSize *int32 `json:"askSize,omitempty"`
	// bid MIC code
	BidMICId *string `json:"bidMICId,omitempty"`
	// Current Best Bid Price
	BidPrice *float64 `json:"bidPrice,omitempty"`
	// Number of shares for bid
	BidSize *int32 `json:"bidSize,omitempty"`
	// Previous day's closing price
	ClosePrice *float64 `json:"closePrice,omitempty"`
	// Day's high trade price
	HighPrice *float64 `json:"highPrice,omitempty"`
	// Last MIC Code
	LastMICId *string  `json:"lastMICId,omitempty"`
	LastPrice *float64 `json:"lastPrice,omitempty"`
	// Number of shares traded with last trade
	LastSize *int32 `json:"lastSize,omitempty"`
	// Day's low trade price
	LowPrice *float64 `json:"lowPrice,omitempty"`
	// Mark price
	Mark *float64 `json:"mark,omitempty"`
	// Mark Price change
	MarkChange *float64 `json:"markChange,omitempty"`
	// Current Last-Prev Close
	NetChange *float64 `json:"netChange,omitempty"`
	// Net Percentage Change
	NetPercentChange *float64 `json:"netPercentChange,omitempty"`
	// Open Interest
	OpenInterest *int32 `json:"openInterest,omitempty"`
	// Price at market open
	OpenPrice *float64 `json:"openPrice,omitempty"`
	// Last quote time in milliseconds since Epoch
	QuoteTime *int64 `json:"quoteTime,omitempty"`
	// Status of security
	SecurityStatus *string `json:"securityStatus,omitempty"`
	// Price at market open
	SettlemetPrice *float64 `json:"settlemetPrice,omitempty"`
	// Tick Price
	Tick *float64 `json:"tick,omitempty"`
	// Tick Amount
	TickAmount *float64 `json:"tickAmount,omitempty"`
	// Aggregated shares traded throughout the day, including pre/post market hours.
	TotalVolume *int64 `json:"totalVolume,omitempty"`
	// Last trade time in milliseconds since Epoch
	TradeTime *int64 `json:"tradeTime,omitempty"`
}

QuoteFutureOption Quote data of Option security

func NewQuoteFutureOption

func NewQuoteFutureOption() *QuoteFutureOption

NewQuoteFutureOption instantiates a new QuoteFutureOption object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteFutureOptionWithDefaults

func NewQuoteFutureOptionWithDefaults() *QuoteFutureOption

NewQuoteFutureOptionWithDefaults instantiates a new QuoteFutureOption object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteFutureOption) GetAskMICId

func (o *QuoteFutureOption) GetAskMICId() string

GetAskMICId returns the AskMICId field value if set, zero value otherwise.

func (*QuoteFutureOption) GetAskMICIdOk

func (o *QuoteFutureOption) GetAskMICIdOk() (*string, bool)

GetAskMICIdOk returns a tuple with the AskMICId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetAskPrice

func (o *QuoteFutureOption) GetAskPrice() float64

GetAskPrice returns the AskPrice field value if set, zero value otherwise.

func (*QuoteFutureOption) GetAskPriceOk

func (o *QuoteFutureOption) GetAskPriceOk() (*float64, bool)

GetAskPriceOk returns a tuple with the AskPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetAskSize

func (o *QuoteFutureOption) GetAskSize() int32

GetAskSize returns the AskSize field value if set, zero value otherwise.

func (*QuoteFutureOption) GetAskSizeOk

func (o *QuoteFutureOption) GetAskSizeOk() (*int32, bool)

GetAskSizeOk returns a tuple with the AskSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetBidMICId

func (o *QuoteFutureOption) GetBidMICId() string

GetBidMICId returns the BidMICId field value if set, zero value otherwise.

func (*QuoteFutureOption) GetBidMICIdOk

func (o *QuoteFutureOption) GetBidMICIdOk() (*string, bool)

GetBidMICIdOk returns a tuple with the BidMICId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetBidPrice

func (o *QuoteFutureOption) GetBidPrice() float64

GetBidPrice returns the BidPrice field value if set, zero value otherwise.

func (*QuoteFutureOption) GetBidPriceOk

func (o *QuoteFutureOption) GetBidPriceOk() (*float64, bool)

GetBidPriceOk returns a tuple with the BidPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetBidSize

func (o *QuoteFutureOption) GetBidSize() int32

GetBidSize returns the BidSize field value if set, zero value otherwise.

func (*QuoteFutureOption) GetBidSizeOk

func (o *QuoteFutureOption) GetBidSizeOk() (*int32, bool)

GetBidSizeOk returns a tuple with the BidSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetClosePrice

func (o *QuoteFutureOption) GetClosePrice() float64

GetClosePrice returns the ClosePrice field value if set, zero value otherwise.

func (*QuoteFutureOption) GetClosePriceOk

func (o *QuoteFutureOption) GetClosePriceOk() (*float64, bool)

GetClosePriceOk returns a tuple with the ClosePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetHighPrice

func (o *QuoteFutureOption) GetHighPrice() float64

GetHighPrice returns the HighPrice field value if set, zero value otherwise.

func (*QuoteFutureOption) GetHighPriceOk

func (o *QuoteFutureOption) GetHighPriceOk() (*float64, bool)

GetHighPriceOk returns a tuple with the HighPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetLastMICId

func (o *QuoteFutureOption) GetLastMICId() string

GetLastMICId returns the LastMICId field value if set, zero value otherwise.

func (*QuoteFutureOption) GetLastMICIdOk

func (o *QuoteFutureOption) GetLastMICIdOk() (*string, bool)

GetLastMICIdOk returns a tuple with the LastMICId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetLastPrice

func (o *QuoteFutureOption) GetLastPrice() float64

GetLastPrice returns the LastPrice field value if set, zero value otherwise.

func (*QuoteFutureOption) GetLastPriceOk

func (o *QuoteFutureOption) GetLastPriceOk() (*float64, bool)

GetLastPriceOk returns a tuple with the LastPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetLastSize

func (o *QuoteFutureOption) GetLastSize() int32

GetLastSize returns the LastSize field value if set, zero value otherwise.

func (*QuoteFutureOption) GetLastSizeOk

func (o *QuoteFutureOption) GetLastSizeOk() (*int32, bool)

GetLastSizeOk returns a tuple with the LastSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetLowPrice

func (o *QuoteFutureOption) GetLowPrice() float64

GetLowPrice returns the LowPrice field value if set, zero value otherwise.

func (*QuoteFutureOption) GetLowPriceOk

func (o *QuoteFutureOption) GetLowPriceOk() (*float64, bool)

GetLowPriceOk returns a tuple with the LowPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetMark

func (o *QuoteFutureOption) GetMark() float64

GetMark returns the Mark field value if set, zero value otherwise.

func (*QuoteFutureOption) GetMarkChange

func (o *QuoteFutureOption) GetMarkChange() float64

GetMarkChange returns the MarkChange field value if set, zero value otherwise.

func (*QuoteFutureOption) GetMarkChangeOk

func (o *QuoteFutureOption) GetMarkChangeOk() (*float64, bool)

GetMarkChangeOk returns a tuple with the MarkChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetMarkOk

func (o *QuoteFutureOption) GetMarkOk() (*float64, bool)

GetMarkOk returns a tuple with the Mark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetNetChange

func (o *QuoteFutureOption) GetNetChange() float64

GetNetChange returns the NetChange field value if set, zero value otherwise.

func (*QuoteFutureOption) GetNetChangeOk

func (o *QuoteFutureOption) GetNetChangeOk() (*float64, bool)

GetNetChangeOk returns a tuple with the NetChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetNetPercentChange

func (o *QuoteFutureOption) GetNetPercentChange() float64

GetNetPercentChange returns the NetPercentChange field value if set, zero value otherwise.

func (*QuoteFutureOption) GetNetPercentChangeOk

func (o *QuoteFutureOption) GetNetPercentChangeOk() (*float64, bool)

GetNetPercentChangeOk returns a tuple with the NetPercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetOpenInterest

func (o *QuoteFutureOption) GetOpenInterest() int32

GetOpenInterest returns the OpenInterest field value if set, zero value otherwise.

func (*QuoteFutureOption) GetOpenInterestOk

func (o *QuoteFutureOption) GetOpenInterestOk() (*int32, bool)

GetOpenInterestOk returns a tuple with the OpenInterest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetOpenPrice

func (o *QuoteFutureOption) GetOpenPrice() float64

GetOpenPrice returns the OpenPrice field value if set, zero value otherwise.

func (*QuoteFutureOption) GetOpenPriceOk

func (o *QuoteFutureOption) GetOpenPriceOk() (*float64, bool)

GetOpenPriceOk returns a tuple with the OpenPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetQuoteTime

func (o *QuoteFutureOption) GetQuoteTime() int64

GetQuoteTime returns the QuoteTime field value if set, zero value otherwise.

func (*QuoteFutureOption) GetQuoteTimeOk

func (o *QuoteFutureOption) GetQuoteTimeOk() (*int64, bool)

GetQuoteTimeOk returns a tuple with the QuoteTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetSecurityStatus

func (o *QuoteFutureOption) GetSecurityStatus() string

GetSecurityStatus returns the SecurityStatus field value if set, zero value otherwise.

func (*QuoteFutureOption) GetSecurityStatusOk

func (o *QuoteFutureOption) GetSecurityStatusOk() (*string, bool)

GetSecurityStatusOk returns a tuple with the SecurityStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetSettlemetPrice

func (o *QuoteFutureOption) GetSettlemetPrice() float64

GetSettlemetPrice returns the SettlemetPrice field value if set, zero value otherwise.

func (*QuoteFutureOption) GetSettlemetPriceOk

func (o *QuoteFutureOption) GetSettlemetPriceOk() (*float64, bool)

GetSettlemetPriceOk returns a tuple with the SettlemetPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetTick

func (o *QuoteFutureOption) GetTick() float64

GetTick returns the Tick field value if set, zero value otherwise.

func (*QuoteFutureOption) GetTickAmount

func (o *QuoteFutureOption) GetTickAmount() float64

GetTickAmount returns the TickAmount field value if set, zero value otherwise.

func (*QuoteFutureOption) GetTickAmountOk

func (o *QuoteFutureOption) GetTickAmountOk() (*float64, bool)

GetTickAmountOk returns a tuple with the TickAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetTickOk

func (o *QuoteFutureOption) GetTickOk() (*float64, bool)

GetTickOk returns a tuple with the Tick field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetTotalVolume

func (o *QuoteFutureOption) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*QuoteFutureOption) GetTotalVolumeOk

func (o *QuoteFutureOption) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) GetTradeTime

func (o *QuoteFutureOption) GetTradeTime() int64

GetTradeTime returns the TradeTime field value if set, zero value otherwise.

func (*QuoteFutureOption) GetTradeTimeOk

func (o *QuoteFutureOption) GetTradeTimeOk() (*int64, bool)

GetTradeTimeOk returns a tuple with the TradeTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteFutureOption) HasAskMICId

func (o *QuoteFutureOption) HasAskMICId() bool

HasAskMICId returns a boolean if a field has been set.

func (*QuoteFutureOption) HasAskPrice

func (o *QuoteFutureOption) HasAskPrice() bool

HasAskPrice returns a boolean if a field has been set.

func (*QuoteFutureOption) HasAskSize

func (o *QuoteFutureOption) HasAskSize() bool

HasAskSize returns a boolean if a field has been set.

func (*QuoteFutureOption) HasBidMICId

func (o *QuoteFutureOption) HasBidMICId() bool

HasBidMICId returns a boolean if a field has been set.

func (*QuoteFutureOption) HasBidPrice

func (o *QuoteFutureOption) HasBidPrice() bool

HasBidPrice returns a boolean if a field has been set.

func (*QuoteFutureOption) HasBidSize

func (o *QuoteFutureOption) HasBidSize() bool

HasBidSize returns a boolean if a field has been set.

func (*QuoteFutureOption) HasClosePrice

func (o *QuoteFutureOption) HasClosePrice() bool

HasClosePrice returns a boolean if a field has been set.

func (*QuoteFutureOption) HasHighPrice

func (o *QuoteFutureOption) HasHighPrice() bool

HasHighPrice returns a boolean if a field has been set.

func (*QuoteFutureOption) HasLastMICId

func (o *QuoteFutureOption) HasLastMICId() bool

HasLastMICId returns a boolean if a field has been set.

func (*QuoteFutureOption) HasLastPrice

func (o *QuoteFutureOption) HasLastPrice() bool

HasLastPrice returns a boolean if a field has been set.

func (*QuoteFutureOption) HasLastSize

func (o *QuoteFutureOption) HasLastSize() bool

HasLastSize returns a boolean if a field has been set.

func (*QuoteFutureOption) HasLowPrice

func (o *QuoteFutureOption) HasLowPrice() bool

HasLowPrice returns a boolean if a field has been set.

func (*QuoteFutureOption) HasMark

func (o *QuoteFutureOption) HasMark() bool

HasMark returns a boolean if a field has been set.

func (*QuoteFutureOption) HasMarkChange

func (o *QuoteFutureOption) HasMarkChange() bool

HasMarkChange returns a boolean if a field has been set.

func (*QuoteFutureOption) HasNetChange

func (o *QuoteFutureOption) HasNetChange() bool

HasNetChange returns a boolean if a field has been set.

func (*QuoteFutureOption) HasNetPercentChange

func (o *QuoteFutureOption) HasNetPercentChange() bool

HasNetPercentChange returns a boolean if a field has been set.

func (*QuoteFutureOption) HasOpenInterest

func (o *QuoteFutureOption) HasOpenInterest() bool

HasOpenInterest returns a boolean if a field has been set.

func (*QuoteFutureOption) HasOpenPrice

func (o *QuoteFutureOption) HasOpenPrice() bool

HasOpenPrice returns a boolean if a field has been set.

func (*QuoteFutureOption) HasQuoteTime

func (o *QuoteFutureOption) HasQuoteTime() bool

HasQuoteTime returns a boolean if a field has been set.

func (*QuoteFutureOption) HasSecurityStatus

func (o *QuoteFutureOption) HasSecurityStatus() bool

HasSecurityStatus returns a boolean if a field has been set.

func (*QuoteFutureOption) HasSettlemetPrice

func (o *QuoteFutureOption) HasSettlemetPrice() bool

HasSettlemetPrice returns a boolean if a field has been set.

func (*QuoteFutureOption) HasTick

func (o *QuoteFutureOption) HasTick() bool

HasTick returns a boolean if a field has been set.

func (*QuoteFutureOption) HasTickAmount

func (o *QuoteFutureOption) HasTickAmount() bool

HasTickAmount returns a boolean if a field has been set.

func (*QuoteFutureOption) HasTotalVolume

func (o *QuoteFutureOption) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*QuoteFutureOption) HasTradeTime

func (o *QuoteFutureOption) HasTradeTime() bool

HasTradeTime returns a boolean if a field has been set.

func (QuoteFutureOption) MarshalJSON

func (o QuoteFutureOption) MarshalJSON() ([]byte, error)

func (*QuoteFutureOption) SetAskMICId

func (o *QuoteFutureOption) SetAskMICId(v string)

SetAskMICId gets a reference to the given string and assigns it to the AskMICId field.

func (*QuoteFutureOption) SetAskPrice

func (o *QuoteFutureOption) SetAskPrice(v float64)

SetAskPrice gets a reference to the given float64 and assigns it to the AskPrice field.

func (*QuoteFutureOption) SetAskSize

func (o *QuoteFutureOption) SetAskSize(v int32)

SetAskSize gets a reference to the given int32 and assigns it to the AskSize field.

func (*QuoteFutureOption) SetBidMICId

func (o *QuoteFutureOption) SetBidMICId(v string)

SetBidMICId gets a reference to the given string and assigns it to the BidMICId field.

func (*QuoteFutureOption) SetBidPrice

func (o *QuoteFutureOption) SetBidPrice(v float64)

SetBidPrice gets a reference to the given float64 and assigns it to the BidPrice field.

func (*QuoteFutureOption) SetBidSize

func (o *QuoteFutureOption) SetBidSize(v int32)

SetBidSize gets a reference to the given int32 and assigns it to the BidSize field.

func (*QuoteFutureOption) SetClosePrice

func (o *QuoteFutureOption) SetClosePrice(v float64)

SetClosePrice gets a reference to the given float64 and assigns it to the ClosePrice field.

func (*QuoteFutureOption) SetHighPrice

func (o *QuoteFutureOption) SetHighPrice(v float64)

SetHighPrice gets a reference to the given float64 and assigns it to the HighPrice field.

func (*QuoteFutureOption) SetLastMICId

func (o *QuoteFutureOption) SetLastMICId(v string)

SetLastMICId gets a reference to the given string and assigns it to the LastMICId field.

func (*QuoteFutureOption) SetLastPrice

func (o *QuoteFutureOption) SetLastPrice(v float64)

SetLastPrice gets a reference to the given float64 and assigns it to the LastPrice field.

func (*QuoteFutureOption) SetLastSize

func (o *QuoteFutureOption) SetLastSize(v int32)

SetLastSize gets a reference to the given int32 and assigns it to the LastSize field.

func (*QuoteFutureOption) SetLowPrice

func (o *QuoteFutureOption) SetLowPrice(v float64)

SetLowPrice gets a reference to the given float64 and assigns it to the LowPrice field.

func (*QuoteFutureOption) SetMark

func (o *QuoteFutureOption) SetMark(v float64)

SetMark gets a reference to the given float64 and assigns it to the Mark field.

func (*QuoteFutureOption) SetMarkChange

func (o *QuoteFutureOption) SetMarkChange(v float64)

SetMarkChange gets a reference to the given float64 and assigns it to the MarkChange field.

func (*QuoteFutureOption) SetNetChange

func (o *QuoteFutureOption) SetNetChange(v float64)

SetNetChange gets a reference to the given float64 and assigns it to the NetChange field.

func (*QuoteFutureOption) SetNetPercentChange

func (o *QuoteFutureOption) SetNetPercentChange(v float64)

SetNetPercentChange gets a reference to the given float64 and assigns it to the NetPercentChange field.

func (*QuoteFutureOption) SetOpenInterest

func (o *QuoteFutureOption) SetOpenInterest(v int32)

SetOpenInterest gets a reference to the given int32 and assigns it to the OpenInterest field.

func (*QuoteFutureOption) SetOpenPrice

func (o *QuoteFutureOption) SetOpenPrice(v float64)

SetOpenPrice gets a reference to the given float64 and assigns it to the OpenPrice field.

func (*QuoteFutureOption) SetQuoteTime

func (o *QuoteFutureOption) SetQuoteTime(v int64)

SetQuoteTime gets a reference to the given int64 and assigns it to the QuoteTime field.

func (*QuoteFutureOption) SetSecurityStatus

func (o *QuoteFutureOption) SetSecurityStatus(v string)

SetSecurityStatus gets a reference to the given string and assigns it to the SecurityStatus field.

func (*QuoteFutureOption) SetSettlemetPrice

func (o *QuoteFutureOption) SetSettlemetPrice(v float64)

SetSettlemetPrice gets a reference to the given float64 and assigns it to the SettlemetPrice field.

func (*QuoteFutureOption) SetTick

func (o *QuoteFutureOption) SetTick(v float64)

SetTick gets a reference to the given float64 and assigns it to the Tick field.

func (*QuoteFutureOption) SetTickAmount

func (o *QuoteFutureOption) SetTickAmount(v float64)

SetTickAmount gets a reference to the given float64 and assigns it to the TickAmount field.

func (*QuoteFutureOption) SetTotalVolume

func (o *QuoteFutureOption) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*QuoteFutureOption) SetTradeTime

func (o *QuoteFutureOption) SetTradeTime(v int64)

SetTradeTime gets a reference to the given int64 and assigns it to the TradeTime field.

func (QuoteFutureOption) ToMap

func (o QuoteFutureOption) ToMap() (map[string]interface{}, error)

type QuoteIndex

type QuoteIndex struct {
	// Higest price traded in the past 12 months, or 52 weeks
	Var52WeekHigh *float64 `json:"52WeekHigh,omitempty"`
	// Lowest price traded in the past 12 months, or 52 weeks
	Var52WeekLow *float64 `json:"52WeekLow,omitempty"`
	// Previous day's closing price
	ClosePrice *float64 `json:"closePrice,omitempty"`
	// Day's high trade price
	HighPrice *float64 `json:"highPrice,omitempty"`
	LastPrice *float64 `json:"lastPrice,omitempty"`
	// Day's low trade price
	LowPrice *float64 `json:"lowPrice,omitempty"`
	// Current Last-Prev Close
	NetChange *float64 `json:"netChange,omitempty"`
	// Net Percentage Change
	NetPercentChange *float64 `json:"netPercentChange,omitempty"`
	// Price at market open
	OpenPrice *float64 `json:"openPrice,omitempty"`
	// Status of security
	SecurityStatus *string `json:"securityStatus,omitempty"`
	// Aggregated shares traded throughout the day, including pre/post market hours.
	TotalVolume *int64 `json:"totalVolume,omitempty"`
	// Last trade time in milliseconds since Epoch
	TradeTime *int64 `json:"tradeTime,omitempty"`
}

QuoteIndex Quote data of Index security

func NewQuoteIndex

func NewQuoteIndex() *QuoteIndex

NewQuoteIndex instantiates a new QuoteIndex object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteIndexWithDefaults

func NewQuoteIndexWithDefaults() *QuoteIndex

NewQuoteIndexWithDefaults instantiates a new QuoteIndex object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteIndex) GetClosePrice

func (o *QuoteIndex) GetClosePrice() float64

GetClosePrice returns the ClosePrice field value if set, zero value otherwise.

func (*QuoteIndex) GetClosePriceOk

func (o *QuoteIndex) GetClosePriceOk() (*float64, bool)

GetClosePriceOk returns a tuple with the ClosePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteIndex) GetHighPrice

func (o *QuoteIndex) GetHighPrice() float64

GetHighPrice returns the HighPrice field value if set, zero value otherwise.

func (*QuoteIndex) GetHighPriceOk

func (o *QuoteIndex) GetHighPriceOk() (*float64, bool)

GetHighPriceOk returns a tuple with the HighPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteIndex) GetLastPrice

func (o *QuoteIndex) GetLastPrice() float64

GetLastPrice returns the LastPrice field value if set, zero value otherwise.

func (*QuoteIndex) GetLastPriceOk

func (o *QuoteIndex) GetLastPriceOk() (*float64, bool)

GetLastPriceOk returns a tuple with the LastPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteIndex) GetLowPrice

func (o *QuoteIndex) GetLowPrice() float64

GetLowPrice returns the LowPrice field value if set, zero value otherwise.

func (*QuoteIndex) GetLowPriceOk

func (o *QuoteIndex) GetLowPriceOk() (*float64, bool)

GetLowPriceOk returns a tuple with the LowPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteIndex) GetNetChange

func (o *QuoteIndex) GetNetChange() float64

GetNetChange returns the NetChange field value if set, zero value otherwise.

func (*QuoteIndex) GetNetChangeOk

func (o *QuoteIndex) GetNetChangeOk() (*float64, bool)

GetNetChangeOk returns a tuple with the NetChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteIndex) GetNetPercentChange

func (o *QuoteIndex) GetNetPercentChange() float64

GetNetPercentChange returns the NetPercentChange field value if set, zero value otherwise.

func (*QuoteIndex) GetNetPercentChangeOk

func (o *QuoteIndex) GetNetPercentChangeOk() (*float64, bool)

GetNetPercentChangeOk returns a tuple with the NetPercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteIndex) GetOpenPrice

func (o *QuoteIndex) GetOpenPrice() float64

GetOpenPrice returns the OpenPrice field value if set, zero value otherwise.

func (*QuoteIndex) GetOpenPriceOk

func (o *QuoteIndex) GetOpenPriceOk() (*float64, bool)

GetOpenPriceOk returns a tuple with the OpenPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteIndex) GetSecurityStatus

func (o *QuoteIndex) GetSecurityStatus() string

GetSecurityStatus returns the SecurityStatus field value if set, zero value otherwise.

func (*QuoteIndex) GetSecurityStatusOk

func (o *QuoteIndex) GetSecurityStatusOk() (*string, bool)

GetSecurityStatusOk returns a tuple with the SecurityStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteIndex) GetTotalVolume

func (o *QuoteIndex) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*QuoteIndex) GetTotalVolumeOk

func (o *QuoteIndex) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteIndex) GetTradeTime

func (o *QuoteIndex) GetTradeTime() int64

GetTradeTime returns the TradeTime field value if set, zero value otherwise.

func (*QuoteIndex) GetTradeTimeOk

func (o *QuoteIndex) GetTradeTimeOk() (*int64, bool)

GetTradeTimeOk returns a tuple with the TradeTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteIndex) GetVar52WeekHigh

func (o *QuoteIndex) GetVar52WeekHigh() float64

GetVar52WeekHigh returns the Var52WeekHigh field value if set, zero value otherwise.

func (*QuoteIndex) GetVar52WeekHighOk

func (o *QuoteIndex) GetVar52WeekHighOk() (*float64, bool)

GetVar52WeekHighOk returns a tuple with the Var52WeekHigh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteIndex) GetVar52WeekLow

func (o *QuoteIndex) GetVar52WeekLow() float64

GetVar52WeekLow returns the Var52WeekLow field value if set, zero value otherwise.

func (*QuoteIndex) GetVar52WeekLowOk

func (o *QuoteIndex) GetVar52WeekLowOk() (*float64, bool)

GetVar52WeekLowOk returns a tuple with the Var52WeekLow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteIndex) HasClosePrice

func (o *QuoteIndex) HasClosePrice() bool

HasClosePrice returns a boolean if a field has been set.

func (*QuoteIndex) HasHighPrice

func (o *QuoteIndex) HasHighPrice() bool

HasHighPrice returns a boolean if a field has been set.

func (*QuoteIndex) HasLastPrice

func (o *QuoteIndex) HasLastPrice() bool

HasLastPrice returns a boolean if a field has been set.

func (*QuoteIndex) HasLowPrice

func (o *QuoteIndex) HasLowPrice() bool

HasLowPrice returns a boolean if a field has been set.

func (*QuoteIndex) HasNetChange

func (o *QuoteIndex) HasNetChange() bool

HasNetChange returns a boolean if a field has been set.

func (*QuoteIndex) HasNetPercentChange

func (o *QuoteIndex) HasNetPercentChange() bool

HasNetPercentChange returns a boolean if a field has been set.

func (*QuoteIndex) HasOpenPrice

func (o *QuoteIndex) HasOpenPrice() bool

HasOpenPrice returns a boolean if a field has been set.

func (*QuoteIndex) HasSecurityStatus

func (o *QuoteIndex) HasSecurityStatus() bool

HasSecurityStatus returns a boolean if a field has been set.

func (*QuoteIndex) HasTotalVolume

func (o *QuoteIndex) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*QuoteIndex) HasTradeTime

func (o *QuoteIndex) HasTradeTime() bool

HasTradeTime returns a boolean if a field has been set.

func (*QuoteIndex) HasVar52WeekHigh

func (o *QuoteIndex) HasVar52WeekHigh() bool

HasVar52WeekHigh returns a boolean if a field has been set.

func (*QuoteIndex) HasVar52WeekLow

func (o *QuoteIndex) HasVar52WeekLow() bool

HasVar52WeekLow returns a boolean if a field has been set.

func (QuoteIndex) MarshalJSON

func (o QuoteIndex) MarshalJSON() ([]byte, error)

func (*QuoteIndex) SetClosePrice

func (o *QuoteIndex) SetClosePrice(v float64)

SetClosePrice gets a reference to the given float64 and assigns it to the ClosePrice field.

func (*QuoteIndex) SetHighPrice

func (o *QuoteIndex) SetHighPrice(v float64)

SetHighPrice gets a reference to the given float64 and assigns it to the HighPrice field.

func (*QuoteIndex) SetLastPrice

func (o *QuoteIndex) SetLastPrice(v float64)

SetLastPrice gets a reference to the given float64 and assigns it to the LastPrice field.

func (*QuoteIndex) SetLowPrice

func (o *QuoteIndex) SetLowPrice(v float64)

SetLowPrice gets a reference to the given float64 and assigns it to the LowPrice field.

func (*QuoteIndex) SetNetChange

func (o *QuoteIndex) SetNetChange(v float64)

SetNetChange gets a reference to the given float64 and assigns it to the NetChange field.

func (*QuoteIndex) SetNetPercentChange

func (o *QuoteIndex) SetNetPercentChange(v float64)

SetNetPercentChange gets a reference to the given float64 and assigns it to the NetPercentChange field.

func (*QuoteIndex) SetOpenPrice

func (o *QuoteIndex) SetOpenPrice(v float64)

SetOpenPrice gets a reference to the given float64 and assigns it to the OpenPrice field.

func (*QuoteIndex) SetSecurityStatus

func (o *QuoteIndex) SetSecurityStatus(v string)

SetSecurityStatus gets a reference to the given string and assigns it to the SecurityStatus field.

func (*QuoteIndex) SetTotalVolume

func (o *QuoteIndex) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*QuoteIndex) SetTradeTime

func (o *QuoteIndex) SetTradeTime(v int64)

SetTradeTime gets a reference to the given int64 and assigns it to the TradeTime field.

func (*QuoteIndex) SetVar52WeekHigh

func (o *QuoteIndex) SetVar52WeekHigh(v float64)

SetVar52WeekHigh gets a reference to the given float64 and assigns it to the Var52WeekHigh field.

func (*QuoteIndex) SetVar52WeekLow

func (o *QuoteIndex) SetVar52WeekLow(v float64)

SetVar52WeekLow gets a reference to the given float64 and assigns it to the Var52WeekLow field.

func (QuoteIndex) ToMap

func (o QuoteIndex) ToMap() (map[string]interface{}, error)

type QuoteMutualFund

type QuoteMutualFund struct {
	// Higest price traded in the past 12 months, or 52 weeks
	Var52WeekHigh *float64 `json:"52WeekHigh,omitempty"`
	// Lowest price traded in the past 12 months, or 52 weeks
	Var52WeekLow *float64 `json:"52WeekLow,omitempty"`
	// Previous day's closing price
	ClosePrice *float64 `json:"closePrice,omitempty"`
	// Net Asset Value
	NAV *float64 `json:"nAV,omitempty"`
	// Current Last-Prev Close
	NetChange *float64 `json:"netChange,omitempty"`
	// Net Percentage Change
	NetPercentChange *float64 `json:"netPercentChange,omitempty"`
	// Status of security
	SecurityStatus *string `json:"securityStatus,omitempty"`
	// Aggregated shares traded throughout the day, including pre/post market hours.
	TotalVolume *int64 `json:"totalVolume,omitempty"`
	// Last trade time in milliseconds since Epoch
	TradeTime *int64 `json:"tradeTime,omitempty"`
}

QuoteMutualFund Quote data of Mutual Fund security

func NewQuoteMutualFund

func NewQuoteMutualFund() *QuoteMutualFund

NewQuoteMutualFund instantiates a new QuoteMutualFund object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteMutualFundWithDefaults

func NewQuoteMutualFundWithDefaults() *QuoteMutualFund

NewQuoteMutualFundWithDefaults instantiates a new QuoteMutualFund object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteMutualFund) GetClosePrice

func (o *QuoteMutualFund) GetClosePrice() float64

GetClosePrice returns the ClosePrice field value if set, zero value otherwise.

func (*QuoteMutualFund) GetClosePriceOk

func (o *QuoteMutualFund) GetClosePriceOk() (*float64, bool)

GetClosePriceOk returns a tuple with the ClosePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteMutualFund) GetNAV

func (o *QuoteMutualFund) GetNAV() float64

GetNAV returns the NAV field value if set, zero value otherwise.

func (*QuoteMutualFund) GetNAVOk

func (o *QuoteMutualFund) GetNAVOk() (*float64, bool)

GetNAVOk returns a tuple with the NAV field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteMutualFund) GetNetChange

func (o *QuoteMutualFund) GetNetChange() float64

GetNetChange returns the NetChange field value if set, zero value otherwise.

func (*QuoteMutualFund) GetNetChangeOk

func (o *QuoteMutualFund) GetNetChangeOk() (*float64, bool)

GetNetChangeOk returns a tuple with the NetChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteMutualFund) GetNetPercentChange

func (o *QuoteMutualFund) GetNetPercentChange() float64

GetNetPercentChange returns the NetPercentChange field value if set, zero value otherwise.

func (*QuoteMutualFund) GetNetPercentChangeOk

func (o *QuoteMutualFund) GetNetPercentChangeOk() (*float64, bool)

GetNetPercentChangeOk returns a tuple with the NetPercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteMutualFund) GetSecurityStatus

func (o *QuoteMutualFund) GetSecurityStatus() string

GetSecurityStatus returns the SecurityStatus field value if set, zero value otherwise.

func (*QuoteMutualFund) GetSecurityStatusOk

func (o *QuoteMutualFund) GetSecurityStatusOk() (*string, bool)

GetSecurityStatusOk returns a tuple with the SecurityStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteMutualFund) GetTotalVolume

func (o *QuoteMutualFund) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*QuoteMutualFund) GetTotalVolumeOk

func (o *QuoteMutualFund) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteMutualFund) GetTradeTime

func (o *QuoteMutualFund) GetTradeTime() int64

GetTradeTime returns the TradeTime field value if set, zero value otherwise.

func (*QuoteMutualFund) GetTradeTimeOk

func (o *QuoteMutualFund) GetTradeTimeOk() (*int64, bool)

GetTradeTimeOk returns a tuple with the TradeTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteMutualFund) GetVar52WeekHigh

func (o *QuoteMutualFund) GetVar52WeekHigh() float64

GetVar52WeekHigh returns the Var52WeekHigh field value if set, zero value otherwise.

func (*QuoteMutualFund) GetVar52WeekHighOk

func (o *QuoteMutualFund) GetVar52WeekHighOk() (*float64, bool)

GetVar52WeekHighOk returns a tuple with the Var52WeekHigh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteMutualFund) GetVar52WeekLow

func (o *QuoteMutualFund) GetVar52WeekLow() float64

GetVar52WeekLow returns the Var52WeekLow field value if set, zero value otherwise.

func (*QuoteMutualFund) GetVar52WeekLowOk

func (o *QuoteMutualFund) GetVar52WeekLowOk() (*float64, bool)

GetVar52WeekLowOk returns a tuple with the Var52WeekLow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteMutualFund) HasClosePrice

func (o *QuoteMutualFund) HasClosePrice() bool

HasClosePrice returns a boolean if a field has been set.

func (*QuoteMutualFund) HasNAV

func (o *QuoteMutualFund) HasNAV() bool

HasNAV returns a boolean if a field has been set.

func (*QuoteMutualFund) HasNetChange

func (o *QuoteMutualFund) HasNetChange() bool

HasNetChange returns a boolean if a field has been set.

func (*QuoteMutualFund) HasNetPercentChange

func (o *QuoteMutualFund) HasNetPercentChange() bool

HasNetPercentChange returns a boolean if a field has been set.

func (*QuoteMutualFund) HasSecurityStatus

func (o *QuoteMutualFund) HasSecurityStatus() bool

HasSecurityStatus returns a boolean if a field has been set.

func (*QuoteMutualFund) HasTotalVolume

func (o *QuoteMutualFund) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*QuoteMutualFund) HasTradeTime

func (o *QuoteMutualFund) HasTradeTime() bool

HasTradeTime returns a boolean if a field has been set.

func (*QuoteMutualFund) HasVar52WeekHigh

func (o *QuoteMutualFund) HasVar52WeekHigh() bool

HasVar52WeekHigh returns a boolean if a field has been set.

func (*QuoteMutualFund) HasVar52WeekLow

func (o *QuoteMutualFund) HasVar52WeekLow() bool

HasVar52WeekLow returns a boolean if a field has been set.

func (QuoteMutualFund) MarshalJSON

func (o QuoteMutualFund) MarshalJSON() ([]byte, error)

func (*QuoteMutualFund) SetClosePrice

func (o *QuoteMutualFund) SetClosePrice(v float64)

SetClosePrice gets a reference to the given float64 and assigns it to the ClosePrice field.

func (*QuoteMutualFund) SetNAV

func (o *QuoteMutualFund) SetNAV(v float64)

SetNAV gets a reference to the given float64 and assigns it to the NAV field.

func (*QuoteMutualFund) SetNetChange

func (o *QuoteMutualFund) SetNetChange(v float64)

SetNetChange gets a reference to the given float64 and assigns it to the NetChange field.

func (*QuoteMutualFund) SetNetPercentChange

func (o *QuoteMutualFund) SetNetPercentChange(v float64)

SetNetPercentChange gets a reference to the given float64 and assigns it to the NetPercentChange field.

func (*QuoteMutualFund) SetSecurityStatus

func (o *QuoteMutualFund) SetSecurityStatus(v string)

SetSecurityStatus gets a reference to the given string and assigns it to the SecurityStatus field.

func (*QuoteMutualFund) SetTotalVolume

func (o *QuoteMutualFund) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*QuoteMutualFund) SetTradeTime

func (o *QuoteMutualFund) SetTradeTime(v int64)

SetTradeTime gets a reference to the given int64 and assigns it to the TradeTime field.

func (*QuoteMutualFund) SetVar52WeekHigh

func (o *QuoteMutualFund) SetVar52WeekHigh(v float64)

SetVar52WeekHigh gets a reference to the given float64 and assigns it to the Var52WeekHigh field.

func (*QuoteMutualFund) SetVar52WeekLow

func (o *QuoteMutualFund) SetVar52WeekLow(v float64)

SetVar52WeekLow gets a reference to the given float64 and assigns it to the Var52WeekLow field.

func (QuoteMutualFund) ToMap

func (o QuoteMutualFund) ToMap() (map[string]interface{}, error)

type QuoteOption

type QuoteOption struct {
	// Higest price traded in the past 12 months, or 52 weeks
	Var52WeekHigh *float64 `json:"52WeekHigh,omitempty"`
	// Lowest price traded in the past 12 months, or 52 weeks
	Var52WeekLow *float64 `json:"52WeekLow,omitempty"`
	// Current Best Ask Price
	AskPrice *float64 `json:"askPrice,omitempty"`
	// Number of shares for ask
	AskSize *int32 `json:"askSize,omitempty"`
	// Current Best Bid Price
	BidPrice *float64 `json:"bidPrice,omitempty"`
	// Number of shares for bid
	BidSize *int32 `json:"bidSize,omitempty"`
	// Previous day's closing price
	ClosePrice *float64 `json:"closePrice,omitempty"`
	// Delta Value
	Delta *float64 `json:"delta,omitempty"`
	// Gamma Value
	Gamma *float64 `json:"gamma,omitempty"`
	// Day's high trade price
	HighPrice *float64 `json:"highPrice,omitempty"`
	// Indicative Ask Price applicable only for Indicative Option Symbols
	IndAskPrice *float64 `json:"indAskPrice,omitempty"`
	// Indicative Bid Price applicable only for Indicative Option Symbols
	IndBidPrice *float64 `json:"indBidPrice,omitempty"`
	// Indicative Quote Time in milliseconds since Epoch applicable only for Indicative Option Symbols
	IndQuoteTime *int64 `json:"indQuoteTime,omitempty"`
	// Implied Yield
	ImpliedYield *float64 `json:"impliedYield,omitempty"`
	LastPrice    *float64 `json:"lastPrice,omitempty"`
	// Number of shares traded with last trade
	LastSize *int32 `json:"lastSize,omitempty"`
	// Day's low trade price
	LowPrice *float64 `json:"lowPrice,omitempty"`
	// Mark price
	Mark *float64 `json:"mark,omitempty"`
	// Mark Price change
	MarkChange *float64 `json:"markChange,omitempty"`
	// Mark Price percent change
	MarkPercentChange *float64 `json:"markPercentChange,omitempty"`
	// Money Intrinsic Value
	MoneyIntrinsicValue *float64 `json:"moneyIntrinsicValue,omitempty"`
	// Current Last-Prev Close
	NetChange *float64 `json:"netChange,omitempty"`
	// Net Percentage Change
	NetPercentChange *float64 `json:"netPercentChange,omitempty"`
	// Open Interest
	OpenInterest *float64 `json:"openInterest,omitempty"`
	// Price at market open
	OpenPrice *float64 `json:"openPrice,omitempty"`
	// Last quote time in milliseconds since Epoch
	QuoteTime *int64 `json:"quoteTime,omitempty"`
	// Rho Value
	Rho *float64 `json:"rho,omitempty"`
	// Status of security
	SecurityStatus *string `json:"securityStatus,omitempty"`
	// Theoretical option Value
	TheoreticalOptionValue *float64 `json:"theoreticalOptionValue,omitempty"`
	// Theta Value
	Theta *float64 `json:"theta,omitempty"`
	// Time Value
	TimeValue *float64 `json:"timeValue,omitempty"`
	// Aggregated shares traded throughout the day, including pre/post market hours.
	TotalVolume *int64 `json:"totalVolume,omitempty"`
	// Last trade time in milliseconds since Epoch
	TradeTime *int64 `json:"tradeTime,omitempty"`
	// Underlying Price
	UnderlyingPrice *float64 `json:"underlyingPrice,omitempty"`
	// Vega Value
	Vega *float64 `json:"vega,omitempty"`
	// Option Risk/Volatility Measurement
	Volatility *float64 `json:"volatility,omitempty"`
}

QuoteOption Quote data of Option security

func NewQuoteOption

func NewQuoteOption() *QuoteOption

NewQuoteOption instantiates a new QuoteOption object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteOptionWithDefaults

func NewQuoteOptionWithDefaults() *QuoteOption

NewQuoteOptionWithDefaults instantiates a new QuoteOption object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteOption) GetAskPrice

func (o *QuoteOption) GetAskPrice() float64

GetAskPrice returns the AskPrice field value if set, zero value otherwise.

func (*QuoteOption) GetAskPriceOk

func (o *QuoteOption) GetAskPriceOk() (*float64, bool)

GetAskPriceOk returns a tuple with the AskPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetAskSize

func (o *QuoteOption) GetAskSize() int32

GetAskSize returns the AskSize field value if set, zero value otherwise.

func (*QuoteOption) GetAskSizeOk

func (o *QuoteOption) GetAskSizeOk() (*int32, bool)

GetAskSizeOk returns a tuple with the AskSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetBidPrice

func (o *QuoteOption) GetBidPrice() float64

GetBidPrice returns the BidPrice field value if set, zero value otherwise.

func (*QuoteOption) GetBidPriceOk

func (o *QuoteOption) GetBidPriceOk() (*float64, bool)

GetBidPriceOk returns a tuple with the BidPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetBidSize

func (o *QuoteOption) GetBidSize() int32

GetBidSize returns the BidSize field value if set, zero value otherwise.

func (*QuoteOption) GetBidSizeOk

func (o *QuoteOption) GetBidSizeOk() (*int32, bool)

GetBidSizeOk returns a tuple with the BidSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetClosePrice

func (o *QuoteOption) GetClosePrice() float64

GetClosePrice returns the ClosePrice field value if set, zero value otherwise.

func (*QuoteOption) GetClosePriceOk

func (o *QuoteOption) GetClosePriceOk() (*float64, bool)

GetClosePriceOk returns a tuple with the ClosePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetDelta

func (o *QuoteOption) GetDelta() float64

GetDelta returns the Delta field value if set, zero value otherwise.

func (*QuoteOption) GetDeltaOk

func (o *QuoteOption) GetDeltaOk() (*float64, bool)

GetDeltaOk returns a tuple with the Delta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetGamma

func (o *QuoteOption) GetGamma() float64

GetGamma returns the Gamma field value if set, zero value otherwise.

func (*QuoteOption) GetGammaOk

func (o *QuoteOption) GetGammaOk() (*float64, bool)

GetGammaOk returns a tuple with the Gamma field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetHighPrice

func (o *QuoteOption) GetHighPrice() float64

GetHighPrice returns the HighPrice field value if set, zero value otherwise.

func (*QuoteOption) GetHighPriceOk

func (o *QuoteOption) GetHighPriceOk() (*float64, bool)

GetHighPriceOk returns a tuple with the HighPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetImpliedYield

func (o *QuoteOption) GetImpliedYield() float64

GetImpliedYield returns the ImpliedYield field value if set, zero value otherwise.

func (*QuoteOption) GetImpliedYieldOk

func (o *QuoteOption) GetImpliedYieldOk() (*float64, bool)

GetImpliedYieldOk returns a tuple with the ImpliedYield field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetIndAskPrice

func (o *QuoteOption) GetIndAskPrice() float64

GetIndAskPrice returns the IndAskPrice field value if set, zero value otherwise.

func (*QuoteOption) GetIndAskPriceOk

func (o *QuoteOption) GetIndAskPriceOk() (*float64, bool)

GetIndAskPriceOk returns a tuple with the IndAskPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetIndBidPrice

func (o *QuoteOption) GetIndBidPrice() float64

GetIndBidPrice returns the IndBidPrice field value if set, zero value otherwise.

func (*QuoteOption) GetIndBidPriceOk

func (o *QuoteOption) GetIndBidPriceOk() (*float64, bool)

GetIndBidPriceOk returns a tuple with the IndBidPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetIndQuoteTime

func (o *QuoteOption) GetIndQuoteTime() int64

GetIndQuoteTime returns the IndQuoteTime field value if set, zero value otherwise.

func (*QuoteOption) GetIndQuoteTimeOk

func (o *QuoteOption) GetIndQuoteTimeOk() (*int64, bool)

GetIndQuoteTimeOk returns a tuple with the IndQuoteTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetLastPrice

func (o *QuoteOption) GetLastPrice() float64

GetLastPrice returns the LastPrice field value if set, zero value otherwise.

func (*QuoteOption) GetLastPriceOk

func (o *QuoteOption) GetLastPriceOk() (*float64, bool)

GetLastPriceOk returns a tuple with the LastPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetLastSize

func (o *QuoteOption) GetLastSize() int32

GetLastSize returns the LastSize field value if set, zero value otherwise.

func (*QuoteOption) GetLastSizeOk

func (o *QuoteOption) GetLastSizeOk() (*int32, bool)

GetLastSizeOk returns a tuple with the LastSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetLowPrice

func (o *QuoteOption) GetLowPrice() float64

GetLowPrice returns the LowPrice field value if set, zero value otherwise.

func (*QuoteOption) GetLowPriceOk

func (o *QuoteOption) GetLowPriceOk() (*float64, bool)

GetLowPriceOk returns a tuple with the LowPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetMark

func (o *QuoteOption) GetMark() float64

GetMark returns the Mark field value if set, zero value otherwise.

func (*QuoteOption) GetMarkChange

func (o *QuoteOption) GetMarkChange() float64

GetMarkChange returns the MarkChange field value if set, zero value otherwise.

func (*QuoteOption) GetMarkChangeOk

func (o *QuoteOption) GetMarkChangeOk() (*float64, bool)

GetMarkChangeOk returns a tuple with the MarkChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetMarkOk

func (o *QuoteOption) GetMarkOk() (*float64, bool)

GetMarkOk returns a tuple with the Mark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetMarkPercentChange

func (o *QuoteOption) GetMarkPercentChange() float64

GetMarkPercentChange returns the MarkPercentChange field value if set, zero value otherwise.

func (*QuoteOption) GetMarkPercentChangeOk

func (o *QuoteOption) GetMarkPercentChangeOk() (*float64, bool)

GetMarkPercentChangeOk returns a tuple with the MarkPercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetMoneyIntrinsicValue

func (o *QuoteOption) GetMoneyIntrinsicValue() float64

GetMoneyIntrinsicValue returns the MoneyIntrinsicValue field value if set, zero value otherwise.

func (*QuoteOption) GetMoneyIntrinsicValueOk

func (o *QuoteOption) GetMoneyIntrinsicValueOk() (*float64, bool)

GetMoneyIntrinsicValueOk returns a tuple with the MoneyIntrinsicValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetNetChange

func (o *QuoteOption) GetNetChange() float64

GetNetChange returns the NetChange field value if set, zero value otherwise.

func (*QuoteOption) GetNetChangeOk

func (o *QuoteOption) GetNetChangeOk() (*float64, bool)

GetNetChangeOk returns a tuple with the NetChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetNetPercentChange

func (o *QuoteOption) GetNetPercentChange() float64

GetNetPercentChange returns the NetPercentChange field value if set, zero value otherwise.

func (*QuoteOption) GetNetPercentChangeOk

func (o *QuoteOption) GetNetPercentChangeOk() (*float64, bool)

GetNetPercentChangeOk returns a tuple with the NetPercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetOpenInterest

func (o *QuoteOption) GetOpenInterest() float64

GetOpenInterest returns the OpenInterest field value if set, zero value otherwise.

func (*QuoteOption) GetOpenInterestOk

func (o *QuoteOption) GetOpenInterestOk() (*float64, bool)

GetOpenInterestOk returns a tuple with the OpenInterest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetOpenPrice

func (o *QuoteOption) GetOpenPrice() float64

GetOpenPrice returns the OpenPrice field value if set, zero value otherwise.

func (*QuoteOption) GetOpenPriceOk

func (o *QuoteOption) GetOpenPriceOk() (*float64, bool)

GetOpenPriceOk returns a tuple with the OpenPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetQuoteTime

func (o *QuoteOption) GetQuoteTime() int64

GetQuoteTime returns the QuoteTime field value if set, zero value otherwise.

func (*QuoteOption) GetQuoteTimeOk

func (o *QuoteOption) GetQuoteTimeOk() (*int64, bool)

GetQuoteTimeOk returns a tuple with the QuoteTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetRho

func (o *QuoteOption) GetRho() float64

GetRho returns the Rho field value if set, zero value otherwise.

func (*QuoteOption) GetRhoOk

func (o *QuoteOption) GetRhoOk() (*float64, bool)

GetRhoOk returns a tuple with the Rho field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetSecurityStatus

func (o *QuoteOption) GetSecurityStatus() string

GetSecurityStatus returns the SecurityStatus field value if set, zero value otherwise.

func (*QuoteOption) GetSecurityStatusOk

func (o *QuoteOption) GetSecurityStatusOk() (*string, bool)

GetSecurityStatusOk returns a tuple with the SecurityStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetTheoreticalOptionValue

func (o *QuoteOption) GetTheoreticalOptionValue() float64

GetTheoreticalOptionValue returns the TheoreticalOptionValue field value if set, zero value otherwise.

func (*QuoteOption) GetTheoreticalOptionValueOk

func (o *QuoteOption) GetTheoreticalOptionValueOk() (*float64, bool)

GetTheoreticalOptionValueOk returns a tuple with the TheoreticalOptionValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetTheta

func (o *QuoteOption) GetTheta() float64

GetTheta returns the Theta field value if set, zero value otherwise.

func (*QuoteOption) GetThetaOk

func (o *QuoteOption) GetThetaOk() (*float64, bool)

GetThetaOk returns a tuple with the Theta field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetTimeValue

func (o *QuoteOption) GetTimeValue() float64

GetTimeValue returns the TimeValue field value if set, zero value otherwise.

func (*QuoteOption) GetTimeValueOk

func (o *QuoteOption) GetTimeValueOk() (*float64, bool)

GetTimeValueOk returns a tuple with the TimeValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetTotalVolume

func (o *QuoteOption) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*QuoteOption) GetTotalVolumeOk

func (o *QuoteOption) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetTradeTime

func (o *QuoteOption) GetTradeTime() int64

GetTradeTime returns the TradeTime field value if set, zero value otherwise.

func (*QuoteOption) GetTradeTimeOk

func (o *QuoteOption) GetTradeTimeOk() (*int64, bool)

GetTradeTimeOk returns a tuple with the TradeTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetUnderlyingPrice

func (o *QuoteOption) GetUnderlyingPrice() float64

GetUnderlyingPrice returns the UnderlyingPrice field value if set, zero value otherwise.

func (*QuoteOption) GetUnderlyingPriceOk

func (o *QuoteOption) GetUnderlyingPriceOk() (*float64, bool)

GetUnderlyingPriceOk returns a tuple with the UnderlyingPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetVar52WeekHigh

func (o *QuoteOption) GetVar52WeekHigh() float64

GetVar52WeekHigh returns the Var52WeekHigh field value if set, zero value otherwise.

func (*QuoteOption) GetVar52WeekHighOk

func (o *QuoteOption) GetVar52WeekHighOk() (*float64, bool)

GetVar52WeekHighOk returns a tuple with the Var52WeekHigh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetVar52WeekLow

func (o *QuoteOption) GetVar52WeekLow() float64

GetVar52WeekLow returns the Var52WeekLow field value if set, zero value otherwise.

func (*QuoteOption) GetVar52WeekLowOk

func (o *QuoteOption) GetVar52WeekLowOk() (*float64, bool)

GetVar52WeekLowOk returns a tuple with the Var52WeekLow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetVega

func (o *QuoteOption) GetVega() float64

GetVega returns the Vega field value if set, zero value otherwise.

func (*QuoteOption) GetVegaOk

func (o *QuoteOption) GetVegaOk() (*float64, bool)

GetVegaOk returns a tuple with the Vega field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) GetVolatility

func (o *QuoteOption) GetVolatility() float64

GetVolatility returns the Volatility field value if set, zero value otherwise.

func (*QuoteOption) GetVolatilityOk

func (o *QuoteOption) GetVolatilityOk() (*float64, bool)

GetVolatilityOk returns a tuple with the Volatility field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteOption) HasAskPrice

func (o *QuoteOption) HasAskPrice() bool

HasAskPrice returns a boolean if a field has been set.

func (*QuoteOption) HasAskSize

func (o *QuoteOption) HasAskSize() bool

HasAskSize returns a boolean if a field has been set.

func (*QuoteOption) HasBidPrice

func (o *QuoteOption) HasBidPrice() bool

HasBidPrice returns a boolean if a field has been set.

func (*QuoteOption) HasBidSize

func (o *QuoteOption) HasBidSize() bool

HasBidSize returns a boolean if a field has been set.

func (*QuoteOption) HasClosePrice

func (o *QuoteOption) HasClosePrice() bool

HasClosePrice returns a boolean if a field has been set.

func (*QuoteOption) HasDelta

func (o *QuoteOption) HasDelta() bool

HasDelta returns a boolean if a field has been set.

func (*QuoteOption) HasGamma

func (o *QuoteOption) HasGamma() bool

HasGamma returns a boolean if a field has been set.

func (*QuoteOption) HasHighPrice

func (o *QuoteOption) HasHighPrice() bool

HasHighPrice returns a boolean if a field has been set.

func (*QuoteOption) HasImpliedYield

func (o *QuoteOption) HasImpliedYield() bool

HasImpliedYield returns a boolean if a field has been set.

func (*QuoteOption) HasIndAskPrice

func (o *QuoteOption) HasIndAskPrice() bool

HasIndAskPrice returns a boolean if a field has been set.

func (*QuoteOption) HasIndBidPrice

func (o *QuoteOption) HasIndBidPrice() bool

HasIndBidPrice returns a boolean if a field has been set.

func (*QuoteOption) HasIndQuoteTime

func (o *QuoteOption) HasIndQuoteTime() bool

HasIndQuoteTime returns a boolean if a field has been set.

func (*QuoteOption) HasLastPrice

func (o *QuoteOption) HasLastPrice() bool

HasLastPrice returns a boolean if a field has been set.

func (*QuoteOption) HasLastSize

func (o *QuoteOption) HasLastSize() bool

HasLastSize returns a boolean if a field has been set.

func (*QuoteOption) HasLowPrice

func (o *QuoteOption) HasLowPrice() bool

HasLowPrice returns a boolean if a field has been set.

func (*QuoteOption) HasMark

func (o *QuoteOption) HasMark() bool

HasMark returns a boolean if a field has been set.

func (*QuoteOption) HasMarkChange

func (o *QuoteOption) HasMarkChange() bool

HasMarkChange returns a boolean if a field has been set.

func (*QuoteOption) HasMarkPercentChange

func (o *QuoteOption) HasMarkPercentChange() bool

HasMarkPercentChange returns a boolean if a field has been set.

func (*QuoteOption) HasMoneyIntrinsicValue

func (o *QuoteOption) HasMoneyIntrinsicValue() bool

HasMoneyIntrinsicValue returns a boolean if a field has been set.

func (*QuoteOption) HasNetChange

func (o *QuoteOption) HasNetChange() bool

HasNetChange returns a boolean if a field has been set.

func (*QuoteOption) HasNetPercentChange

func (o *QuoteOption) HasNetPercentChange() bool

HasNetPercentChange returns a boolean if a field has been set.

func (*QuoteOption) HasOpenInterest

func (o *QuoteOption) HasOpenInterest() bool

HasOpenInterest returns a boolean if a field has been set.

func (*QuoteOption) HasOpenPrice

func (o *QuoteOption) HasOpenPrice() bool

HasOpenPrice returns a boolean if a field has been set.

func (*QuoteOption) HasQuoteTime

func (o *QuoteOption) HasQuoteTime() bool

HasQuoteTime returns a boolean if a field has been set.

func (*QuoteOption) HasRho

func (o *QuoteOption) HasRho() bool

HasRho returns a boolean if a field has been set.

func (*QuoteOption) HasSecurityStatus

func (o *QuoteOption) HasSecurityStatus() bool

HasSecurityStatus returns a boolean if a field has been set.

func (*QuoteOption) HasTheoreticalOptionValue

func (o *QuoteOption) HasTheoreticalOptionValue() bool

HasTheoreticalOptionValue returns a boolean if a field has been set.

func (*QuoteOption) HasTheta

func (o *QuoteOption) HasTheta() bool

HasTheta returns a boolean if a field has been set.

func (*QuoteOption) HasTimeValue

func (o *QuoteOption) HasTimeValue() bool

HasTimeValue returns a boolean if a field has been set.

func (*QuoteOption) HasTotalVolume

func (o *QuoteOption) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*QuoteOption) HasTradeTime

func (o *QuoteOption) HasTradeTime() bool

HasTradeTime returns a boolean if a field has been set.

func (*QuoteOption) HasUnderlyingPrice

func (o *QuoteOption) HasUnderlyingPrice() bool

HasUnderlyingPrice returns a boolean if a field has been set.

func (*QuoteOption) HasVar52WeekHigh

func (o *QuoteOption) HasVar52WeekHigh() bool

HasVar52WeekHigh returns a boolean if a field has been set.

func (*QuoteOption) HasVar52WeekLow

func (o *QuoteOption) HasVar52WeekLow() bool

HasVar52WeekLow returns a boolean if a field has been set.

func (*QuoteOption) HasVega

func (o *QuoteOption) HasVega() bool

HasVega returns a boolean if a field has been set.

func (*QuoteOption) HasVolatility

func (o *QuoteOption) HasVolatility() bool

HasVolatility returns a boolean if a field has been set.

func (QuoteOption) MarshalJSON

func (o QuoteOption) MarshalJSON() ([]byte, error)

func (*QuoteOption) SetAskPrice

func (o *QuoteOption) SetAskPrice(v float64)

SetAskPrice gets a reference to the given float64 and assigns it to the AskPrice field.

func (*QuoteOption) SetAskSize

func (o *QuoteOption) SetAskSize(v int32)

SetAskSize gets a reference to the given int32 and assigns it to the AskSize field.

func (*QuoteOption) SetBidPrice

func (o *QuoteOption) SetBidPrice(v float64)

SetBidPrice gets a reference to the given float64 and assigns it to the BidPrice field.

func (*QuoteOption) SetBidSize

func (o *QuoteOption) SetBidSize(v int32)

SetBidSize gets a reference to the given int32 and assigns it to the BidSize field.

func (*QuoteOption) SetClosePrice

func (o *QuoteOption) SetClosePrice(v float64)

SetClosePrice gets a reference to the given float64 and assigns it to the ClosePrice field.

func (*QuoteOption) SetDelta

func (o *QuoteOption) SetDelta(v float64)

SetDelta gets a reference to the given float64 and assigns it to the Delta field.

func (*QuoteOption) SetGamma

func (o *QuoteOption) SetGamma(v float64)

SetGamma gets a reference to the given float64 and assigns it to the Gamma field.

func (*QuoteOption) SetHighPrice

func (o *QuoteOption) SetHighPrice(v float64)

SetHighPrice gets a reference to the given float64 and assigns it to the HighPrice field.

func (*QuoteOption) SetImpliedYield

func (o *QuoteOption) SetImpliedYield(v float64)

SetImpliedYield gets a reference to the given float64 and assigns it to the ImpliedYield field.

func (*QuoteOption) SetIndAskPrice

func (o *QuoteOption) SetIndAskPrice(v float64)

SetIndAskPrice gets a reference to the given float64 and assigns it to the IndAskPrice field.

func (*QuoteOption) SetIndBidPrice

func (o *QuoteOption) SetIndBidPrice(v float64)

SetIndBidPrice gets a reference to the given float64 and assigns it to the IndBidPrice field.

func (*QuoteOption) SetIndQuoteTime

func (o *QuoteOption) SetIndQuoteTime(v int64)

SetIndQuoteTime gets a reference to the given int64 and assigns it to the IndQuoteTime field.

func (*QuoteOption) SetLastPrice

func (o *QuoteOption) SetLastPrice(v float64)

SetLastPrice gets a reference to the given float64 and assigns it to the LastPrice field.

func (*QuoteOption) SetLastSize

func (o *QuoteOption) SetLastSize(v int32)

SetLastSize gets a reference to the given int32 and assigns it to the LastSize field.

func (*QuoteOption) SetLowPrice

func (o *QuoteOption) SetLowPrice(v float64)

SetLowPrice gets a reference to the given float64 and assigns it to the LowPrice field.

func (*QuoteOption) SetMark

func (o *QuoteOption) SetMark(v float64)

SetMark gets a reference to the given float64 and assigns it to the Mark field.

func (*QuoteOption) SetMarkChange

func (o *QuoteOption) SetMarkChange(v float64)

SetMarkChange gets a reference to the given float64 and assigns it to the MarkChange field.

func (*QuoteOption) SetMarkPercentChange

func (o *QuoteOption) SetMarkPercentChange(v float64)

SetMarkPercentChange gets a reference to the given float64 and assigns it to the MarkPercentChange field.

func (*QuoteOption) SetMoneyIntrinsicValue

func (o *QuoteOption) SetMoneyIntrinsicValue(v float64)

SetMoneyIntrinsicValue gets a reference to the given float64 and assigns it to the MoneyIntrinsicValue field.

func (*QuoteOption) SetNetChange

func (o *QuoteOption) SetNetChange(v float64)

SetNetChange gets a reference to the given float64 and assigns it to the NetChange field.

func (*QuoteOption) SetNetPercentChange

func (o *QuoteOption) SetNetPercentChange(v float64)

SetNetPercentChange gets a reference to the given float64 and assigns it to the NetPercentChange field.

func (*QuoteOption) SetOpenInterest

func (o *QuoteOption) SetOpenInterest(v float64)

SetOpenInterest gets a reference to the given float64 and assigns it to the OpenInterest field.

func (*QuoteOption) SetOpenPrice

func (o *QuoteOption) SetOpenPrice(v float64)

SetOpenPrice gets a reference to the given float64 and assigns it to the OpenPrice field.

func (*QuoteOption) SetQuoteTime

func (o *QuoteOption) SetQuoteTime(v int64)

SetQuoteTime gets a reference to the given int64 and assigns it to the QuoteTime field.

func (*QuoteOption) SetRho

func (o *QuoteOption) SetRho(v float64)

SetRho gets a reference to the given float64 and assigns it to the Rho field.

func (*QuoteOption) SetSecurityStatus

func (o *QuoteOption) SetSecurityStatus(v string)

SetSecurityStatus gets a reference to the given string and assigns it to the SecurityStatus field.

func (*QuoteOption) SetTheoreticalOptionValue

func (o *QuoteOption) SetTheoreticalOptionValue(v float64)

SetTheoreticalOptionValue gets a reference to the given float64 and assigns it to the TheoreticalOptionValue field.

func (*QuoteOption) SetTheta

func (o *QuoteOption) SetTheta(v float64)

SetTheta gets a reference to the given float64 and assigns it to the Theta field.

func (*QuoteOption) SetTimeValue

func (o *QuoteOption) SetTimeValue(v float64)

SetTimeValue gets a reference to the given float64 and assigns it to the TimeValue field.

func (*QuoteOption) SetTotalVolume

func (o *QuoteOption) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*QuoteOption) SetTradeTime

func (o *QuoteOption) SetTradeTime(v int64)

SetTradeTime gets a reference to the given int64 and assigns it to the TradeTime field.

func (*QuoteOption) SetUnderlyingPrice

func (o *QuoteOption) SetUnderlyingPrice(v float64)

SetUnderlyingPrice gets a reference to the given float64 and assigns it to the UnderlyingPrice field.

func (*QuoteOption) SetVar52WeekHigh

func (o *QuoteOption) SetVar52WeekHigh(v float64)

SetVar52WeekHigh gets a reference to the given float64 and assigns it to the Var52WeekHigh field.

func (*QuoteOption) SetVar52WeekLow

func (o *QuoteOption) SetVar52WeekLow(v float64)

SetVar52WeekLow gets a reference to the given float64 and assigns it to the Var52WeekLow field.

func (*QuoteOption) SetVega

func (o *QuoteOption) SetVega(v float64)

SetVega gets a reference to the given float64 and assigns it to the Vega field.

func (*QuoteOption) SetVolatility

func (o *QuoteOption) SetVolatility(v float64)

SetVolatility gets a reference to the given float64 and assigns it to the Volatility field.

func (QuoteOption) ToMap

func (o QuoteOption) ToMap() (map[string]interface{}, error)

type QuoteRequest

type QuoteRequest struct {
	// List of cusip, max of 500 of symbols+cusip+ssids
	Cusips []string `json:"cusips,omitempty"`
	// comma separated list of nodes in each quote<br/> possible values are quote,fundamental,reference,extended,regular. Dont send this attribute for full response.
	Fields *string `json:"fields,omitempty"`
	// List of Schwab securityid[SSID], max of 500 of symbols+cusip+ssids
	Ssids []int64 `json:"ssids,omitempty"`
	// List of symbols, max of 500 of symbols+cusip+ssids
	Symbols []string `json:"symbols,omitempty"`
	// Get realtime quotes and skip entitlement check
	Realtime *bool `json:"realtime,omitempty"`
	// Include indicative symbol quotes for all ETF symbols in request. If ETF symbol ABC is in request and indicative=true API will return quotes for ABC and its corresponding indicative quote for $ABC.IV
	Indicative *bool `json:"indicative,omitempty"`
}

QuoteRequest Request one or more quote data in POST body

func NewQuoteRequest

func NewQuoteRequest() *QuoteRequest

NewQuoteRequest instantiates a new QuoteRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteRequestWithDefaults

func NewQuoteRequestWithDefaults() *QuoteRequest

NewQuoteRequestWithDefaults instantiates a new QuoteRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteRequest) GetCusips

func (o *QuoteRequest) GetCusips() []string

GetCusips returns the Cusips field value if set, zero value otherwise.

func (*QuoteRequest) GetCusipsOk

func (o *QuoteRequest) GetCusipsOk() ([]string, bool)

GetCusipsOk returns a tuple with the Cusips field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteRequest) GetFields

func (o *QuoteRequest) GetFields() string

GetFields returns the Fields field value if set, zero value otherwise.

func (*QuoteRequest) GetFieldsOk

func (o *QuoteRequest) GetFieldsOk() (*string, bool)

GetFieldsOk returns a tuple with the Fields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteRequest) GetIndicative

func (o *QuoteRequest) GetIndicative() bool

GetIndicative returns the Indicative field value if set, zero value otherwise.

func (*QuoteRequest) GetIndicativeOk

func (o *QuoteRequest) GetIndicativeOk() (*bool, bool)

GetIndicativeOk returns a tuple with the Indicative field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteRequest) GetRealtime

func (o *QuoteRequest) GetRealtime() bool

GetRealtime returns the Realtime field value if set, zero value otherwise.

func (*QuoteRequest) GetRealtimeOk

func (o *QuoteRequest) GetRealtimeOk() (*bool, bool)

GetRealtimeOk returns a tuple with the Realtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteRequest) GetSsids

func (o *QuoteRequest) GetSsids() []int64

GetSsids returns the Ssids field value if set, zero value otherwise.

func (*QuoteRequest) GetSsidsOk

func (o *QuoteRequest) GetSsidsOk() ([]int64, bool)

GetSsidsOk returns a tuple with the Ssids field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteRequest) GetSymbols

func (o *QuoteRequest) GetSymbols() []string

GetSymbols returns the Symbols field value if set, zero value otherwise.

func (*QuoteRequest) GetSymbolsOk

func (o *QuoteRequest) GetSymbolsOk() ([]string, bool)

GetSymbolsOk returns a tuple with the Symbols field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteRequest) HasCusips

func (o *QuoteRequest) HasCusips() bool

HasCusips returns a boolean if a field has been set.

func (*QuoteRequest) HasFields

func (o *QuoteRequest) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*QuoteRequest) HasIndicative

func (o *QuoteRequest) HasIndicative() bool

HasIndicative returns a boolean if a field has been set.

func (*QuoteRequest) HasRealtime

func (o *QuoteRequest) HasRealtime() bool

HasRealtime returns a boolean if a field has been set.

func (*QuoteRequest) HasSsids

func (o *QuoteRequest) HasSsids() bool

HasSsids returns a boolean if a field has been set.

func (*QuoteRequest) HasSymbols

func (o *QuoteRequest) HasSymbols() bool

HasSymbols returns a boolean if a field has been set.

func (QuoteRequest) MarshalJSON

func (o QuoteRequest) MarshalJSON() ([]byte, error)

func (*QuoteRequest) SetCusips

func (o *QuoteRequest) SetCusips(v []string)

SetCusips gets a reference to the given []string and assigns it to the Cusips field.

func (*QuoteRequest) SetFields

func (o *QuoteRequest) SetFields(v string)

SetFields gets a reference to the given string and assigns it to the Fields field.

func (*QuoteRequest) SetIndicative

func (o *QuoteRequest) SetIndicative(v bool)

SetIndicative gets a reference to the given bool and assigns it to the Indicative field.

func (*QuoteRequest) SetRealtime

func (o *QuoteRequest) SetRealtime(v bool)

SetRealtime gets a reference to the given bool and assigns it to the Realtime field.

func (*QuoteRequest) SetSsids

func (o *QuoteRequest) SetSsids(v []int64)

SetSsids gets a reference to the given []int64 and assigns it to the Ssids field.

func (*QuoteRequest) SetSymbols

func (o *QuoteRequest) SetSymbols(v []string)

SetSymbols gets a reference to the given []string and assigns it to the Symbols field.

func (QuoteRequest) ToMap

func (o QuoteRequest) ToMap() (map[string]interface{}, error)

type QuoteResponseObject

type QuoteResponseObject struct {
	EquityResponse       *EquityResponse
	ForexResponse        *ForexResponse
	FutureOptionResponse *FutureOptionResponse
	FutureResponse       *FutureResponse
	IndexResponse        *IndexResponse
	MutualFundResponse   *MutualFundResponse
	OptionResponse       *OptionResponse
	QuoteError           *QuoteError
}

QuoteResponseObject - struct for QuoteResponseObject

func EquityResponseAsQuoteResponseObject

func EquityResponseAsQuoteResponseObject(v *EquityResponse) QuoteResponseObject

EquityResponseAsQuoteResponseObject is a convenience function that returns EquityResponse wrapped in QuoteResponseObject

func ForexResponseAsQuoteResponseObject

func ForexResponseAsQuoteResponseObject(v *ForexResponse) QuoteResponseObject

ForexResponseAsQuoteResponseObject is a convenience function that returns ForexResponse wrapped in QuoteResponseObject

func FutureOptionResponseAsQuoteResponseObject

func FutureOptionResponseAsQuoteResponseObject(v *FutureOptionResponse) QuoteResponseObject

FutureOptionResponseAsQuoteResponseObject is a convenience function that returns FutureOptionResponse wrapped in QuoteResponseObject

func FutureResponseAsQuoteResponseObject

func FutureResponseAsQuoteResponseObject(v *FutureResponse) QuoteResponseObject

FutureResponseAsQuoteResponseObject is a convenience function that returns FutureResponse wrapped in QuoteResponseObject

func IndexResponseAsQuoteResponseObject

func IndexResponseAsQuoteResponseObject(v *IndexResponse) QuoteResponseObject

IndexResponseAsQuoteResponseObject is a convenience function that returns IndexResponse wrapped in QuoteResponseObject

func MutualFundResponseAsQuoteResponseObject

func MutualFundResponseAsQuoteResponseObject(v *MutualFundResponse) QuoteResponseObject

MutualFundResponseAsQuoteResponseObject is a convenience function that returns MutualFundResponse wrapped in QuoteResponseObject

func OptionResponseAsQuoteResponseObject

func OptionResponseAsQuoteResponseObject(v *OptionResponse) QuoteResponseObject

OptionResponseAsQuoteResponseObject is a convenience function that returns OptionResponse wrapped in QuoteResponseObject

func QuoteErrorAsQuoteResponseObject

func QuoteErrorAsQuoteResponseObject(v *QuoteError) QuoteResponseObject

QuoteErrorAsQuoteResponseObject is a convenience function that returns QuoteError wrapped in QuoteResponseObject

func (*QuoteResponseObject) GetActualInstance

func (obj *QuoteResponseObject) GetActualInstance() interface{}

Get the actual instance

func (QuoteResponseObject) MarshalJSON

func (src QuoteResponseObject) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*QuoteResponseObject) UnmarshalJSON

func (dst *QuoteResponseObject) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type QuoteType

type QuoteType string

QuoteType NBBO - realtime, NFL - Non-fee liable quote.

const (
	QUOTETYPE_NBBO QuoteType = "NBBO"
	QUOTETYPE_NFL  QuoteType = "NFL"
	QUOTETYPE_NULL QuoteType = "null"
)

List of QuoteType

func NewQuoteTypeFromValue

func NewQuoteTypeFromValue(v string) (*QuoteType, error)

NewQuoteTypeFromValue returns a pointer to a valid QuoteType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (QuoteType) IsValid

func (v QuoteType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (QuoteType) Ptr

func (v QuoteType) Ptr() *QuoteType

Ptr returns reference to QuoteType value

func (*QuoteType) UnmarshalJSON

func (v *QuoteType) UnmarshalJSON(src []byte) error

type QuotesAPIService

type QuotesAPIService service

QuotesAPIService QuotesAPI service

func (*QuotesAPIService) GetQuote

func (a *QuotesAPIService) GetQuote(ctx context.Context, symbolId string) ApiGetQuoteRequest

GetQuote Get Quote by single symbol.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param symbolId Symbol of instrument
@return ApiGetQuoteRequest

func (*QuotesAPIService) GetQuoteExecute

Execute executes the request

@return map[string]QuoteResponseObject

func (*QuotesAPIService) GetQuotes

GetQuotes Get Quotes by list of symbols.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetQuotesRequest

func (*QuotesAPIService) GetQuotesExecute

Execute executes the request

@return map[string]QuoteResponseObject

type ReferenceEquity

type ReferenceEquity struct {
	// CUSIP of Instrument
	Cusip *string `json:"cusip,omitempty"`
	// Description of Instrument
	Description *string `json:"description,omitempty"`
	// Exchange Code
	Exchange *string `json:"exchange,omitempty"`
	// Exchange Name
	ExchangeName *string `json:"exchangeName,omitempty"`
	// FSI Desc
	FsiDesc *string `json:"fsiDesc,omitempty"`
	// Hard to borrow quantity.
	HtbQuantity *int32 `json:"htbQuantity,omitempty"`
	// Hard to borrow rate.
	HtbRate *float64 `json:"htbRate,omitempty"`
	// is Hard to borrow security.
	IsHardToBorrow *bool `json:"isHardToBorrow,omitempty"`
	// is shortable security.
	IsShortable *bool `json:"isShortable,omitempty"`
	// OTC Market Tier
	OtcMarketTier *string `json:"otcMarketTier,omitempty"`
}

ReferenceEquity Reference data of Equity security

func NewReferenceEquity

func NewReferenceEquity() *ReferenceEquity

NewReferenceEquity instantiates a new ReferenceEquity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReferenceEquityWithDefaults

func NewReferenceEquityWithDefaults() *ReferenceEquity

NewReferenceEquityWithDefaults instantiates a new ReferenceEquity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReferenceEquity) GetCusip

func (o *ReferenceEquity) GetCusip() string

GetCusip returns the Cusip field value if set, zero value otherwise.

func (*ReferenceEquity) GetCusipOk

func (o *ReferenceEquity) GetCusipOk() (*string, bool)

GetCusipOk returns a tuple with the Cusip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceEquity) GetDescription

func (o *ReferenceEquity) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ReferenceEquity) GetDescriptionOk

func (o *ReferenceEquity) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceEquity) GetExchange

func (o *ReferenceEquity) GetExchange() string

GetExchange returns the Exchange field value if set, zero value otherwise.

func (*ReferenceEquity) GetExchangeName

func (o *ReferenceEquity) GetExchangeName() string

GetExchangeName returns the ExchangeName field value if set, zero value otherwise.

func (*ReferenceEquity) GetExchangeNameOk

func (o *ReferenceEquity) GetExchangeNameOk() (*string, bool)

GetExchangeNameOk returns a tuple with the ExchangeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceEquity) GetExchangeOk

func (o *ReferenceEquity) GetExchangeOk() (*string, bool)

GetExchangeOk returns a tuple with the Exchange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceEquity) GetFsiDesc

func (o *ReferenceEquity) GetFsiDesc() string

GetFsiDesc returns the FsiDesc field value if set, zero value otherwise.

func (*ReferenceEquity) GetFsiDescOk

func (o *ReferenceEquity) GetFsiDescOk() (*string, bool)

GetFsiDescOk returns a tuple with the FsiDesc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceEquity) GetHtbQuantity

func (o *ReferenceEquity) GetHtbQuantity() int32

GetHtbQuantity returns the HtbQuantity field value if set, zero value otherwise.

func (*ReferenceEquity) GetHtbQuantityOk

func (o *ReferenceEquity) GetHtbQuantityOk() (*int32, bool)

GetHtbQuantityOk returns a tuple with the HtbQuantity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceEquity) GetHtbRate

func (o *ReferenceEquity) GetHtbRate() float64

GetHtbRate returns the HtbRate field value if set, zero value otherwise.

func (*ReferenceEquity) GetHtbRateOk

func (o *ReferenceEquity) GetHtbRateOk() (*float64, bool)

GetHtbRateOk returns a tuple with the HtbRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceEquity) GetIsHardToBorrow

func (o *ReferenceEquity) GetIsHardToBorrow() bool

GetIsHardToBorrow returns the IsHardToBorrow field value if set, zero value otherwise.

func (*ReferenceEquity) GetIsHardToBorrowOk

func (o *ReferenceEquity) GetIsHardToBorrowOk() (*bool, bool)

GetIsHardToBorrowOk returns a tuple with the IsHardToBorrow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceEquity) GetIsShortable

func (o *ReferenceEquity) GetIsShortable() bool

GetIsShortable returns the IsShortable field value if set, zero value otherwise.

func (*ReferenceEquity) GetIsShortableOk

func (o *ReferenceEquity) GetIsShortableOk() (*bool, bool)

GetIsShortableOk returns a tuple with the IsShortable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceEquity) GetOtcMarketTier

func (o *ReferenceEquity) GetOtcMarketTier() string

GetOtcMarketTier returns the OtcMarketTier field value if set, zero value otherwise.

func (*ReferenceEquity) GetOtcMarketTierOk

func (o *ReferenceEquity) GetOtcMarketTierOk() (*string, bool)

GetOtcMarketTierOk returns a tuple with the OtcMarketTier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceEquity) HasCusip

func (o *ReferenceEquity) HasCusip() bool

HasCusip returns a boolean if a field has been set.

func (*ReferenceEquity) HasDescription

func (o *ReferenceEquity) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReferenceEquity) HasExchange

func (o *ReferenceEquity) HasExchange() bool

HasExchange returns a boolean if a field has been set.

func (*ReferenceEquity) HasExchangeName

func (o *ReferenceEquity) HasExchangeName() bool

HasExchangeName returns a boolean if a field has been set.

func (*ReferenceEquity) HasFsiDesc

func (o *ReferenceEquity) HasFsiDesc() bool

HasFsiDesc returns a boolean if a field has been set.

func (*ReferenceEquity) HasHtbQuantity

func (o *ReferenceEquity) HasHtbQuantity() bool

HasHtbQuantity returns a boolean if a field has been set.

func (*ReferenceEquity) HasHtbRate

func (o *ReferenceEquity) HasHtbRate() bool

HasHtbRate returns a boolean if a field has been set.

func (*ReferenceEquity) HasIsHardToBorrow

func (o *ReferenceEquity) HasIsHardToBorrow() bool

HasIsHardToBorrow returns a boolean if a field has been set.

func (*ReferenceEquity) HasIsShortable

func (o *ReferenceEquity) HasIsShortable() bool

HasIsShortable returns a boolean if a field has been set.

func (*ReferenceEquity) HasOtcMarketTier

func (o *ReferenceEquity) HasOtcMarketTier() bool

HasOtcMarketTier returns a boolean if a field has been set.

func (ReferenceEquity) MarshalJSON

func (o ReferenceEquity) MarshalJSON() ([]byte, error)

func (*ReferenceEquity) SetCusip

func (o *ReferenceEquity) SetCusip(v string)

SetCusip gets a reference to the given string and assigns it to the Cusip field.

func (*ReferenceEquity) SetDescription

func (o *ReferenceEquity) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ReferenceEquity) SetExchange

func (o *ReferenceEquity) SetExchange(v string)

SetExchange gets a reference to the given string and assigns it to the Exchange field.

func (*ReferenceEquity) SetExchangeName

func (o *ReferenceEquity) SetExchangeName(v string)

SetExchangeName gets a reference to the given string and assigns it to the ExchangeName field.

func (*ReferenceEquity) SetFsiDesc

func (o *ReferenceEquity) SetFsiDesc(v string)

SetFsiDesc gets a reference to the given string and assigns it to the FsiDesc field.

func (*ReferenceEquity) SetHtbQuantity

func (o *ReferenceEquity) SetHtbQuantity(v int32)

SetHtbQuantity gets a reference to the given int32 and assigns it to the HtbQuantity field.

func (*ReferenceEquity) SetHtbRate

func (o *ReferenceEquity) SetHtbRate(v float64)

SetHtbRate gets a reference to the given float64 and assigns it to the HtbRate field.

func (*ReferenceEquity) SetIsHardToBorrow

func (o *ReferenceEquity) SetIsHardToBorrow(v bool)

SetIsHardToBorrow gets a reference to the given bool and assigns it to the IsHardToBorrow field.

func (*ReferenceEquity) SetIsShortable

func (o *ReferenceEquity) SetIsShortable(v bool)

SetIsShortable gets a reference to the given bool and assigns it to the IsShortable field.

func (*ReferenceEquity) SetOtcMarketTier

func (o *ReferenceEquity) SetOtcMarketTier(v string)

SetOtcMarketTier gets a reference to the given string and assigns it to the OtcMarketTier field.

func (ReferenceEquity) ToMap

func (o ReferenceEquity) ToMap() (map[string]interface{}, error)

type ReferenceForex

type ReferenceForex struct {
	// Description of Instrument
	Description *string `json:"description,omitempty"`
	// Exchange Code
	Exchange *string `json:"exchange,omitempty"`
	// Exchange Name
	ExchangeName *string `json:"exchangeName,omitempty"`
	// is FOREX tradable
	IsTradable *bool `json:"isTradable,omitempty"`
	// Market marker
	MarketMaker *string `json:"marketMaker,omitempty"`
	// Product name
	Product *string `json:"product,omitempty"`
	// Trading hours
	TradingHours *string `json:"tradingHours,omitempty"`
}

ReferenceForex Reference data of Forex security

func NewReferenceForex

func NewReferenceForex() *ReferenceForex

NewReferenceForex instantiates a new ReferenceForex object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReferenceForexWithDefaults

func NewReferenceForexWithDefaults() *ReferenceForex

NewReferenceForexWithDefaults instantiates a new ReferenceForex object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReferenceForex) GetDescription

func (o *ReferenceForex) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ReferenceForex) GetDescriptionOk

func (o *ReferenceForex) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceForex) GetExchange

func (o *ReferenceForex) GetExchange() string

GetExchange returns the Exchange field value if set, zero value otherwise.

func (*ReferenceForex) GetExchangeName

func (o *ReferenceForex) GetExchangeName() string

GetExchangeName returns the ExchangeName field value if set, zero value otherwise.

func (*ReferenceForex) GetExchangeNameOk

func (o *ReferenceForex) GetExchangeNameOk() (*string, bool)

GetExchangeNameOk returns a tuple with the ExchangeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceForex) GetExchangeOk

func (o *ReferenceForex) GetExchangeOk() (*string, bool)

GetExchangeOk returns a tuple with the Exchange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceForex) GetIsTradable

func (o *ReferenceForex) GetIsTradable() bool

GetIsTradable returns the IsTradable field value if set, zero value otherwise.

func (*ReferenceForex) GetIsTradableOk

func (o *ReferenceForex) GetIsTradableOk() (*bool, bool)

GetIsTradableOk returns a tuple with the IsTradable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceForex) GetMarketMaker

func (o *ReferenceForex) GetMarketMaker() string

GetMarketMaker returns the MarketMaker field value if set, zero value otherwise.

func (*ReferenceForex) GetMarketMakerOk

func (o *ReferenceForex) GetMarketMakerOk() (*string, bool)

GetMarketMakerOk returns a tuple with the MarketMaker field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceForex) GetProduct

func (o *ReferenceForex) GetProduct() string

GetProduct returns the Product field value if set, zero value otherwise.

func (*ReferenceForex) GetProductOk

func (o *ReferenceForex) GetProductOk() (*string, bool)

GetProductOk returns a tuple with the Product field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceForex) GetTradingHours

func (o *ReferenceForex) GetTradingHours() string

GetTradingHours returns the TradingHours field value if set, zero value otherwise.

func (*ReferenceForex) GetTradingHoursOk

func (o *ReferenceForex) GetTradingHoursOk() (*string, bool)

GetTradingHoursOk returns a tuple with the TradingHours field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceForex) HasDescription

func (o *ReferenceForex) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReferenceForex) HasExchange

func (o *ReferenceForex) HasExchange() bool

HasExchange returns a boolean if a field has been set.

func (*ReferenceForex) HasExchangeName

func (o *ReferenceForex) HasExchangeName() bool

HasExchangeName returns a boolean if a field has been set.

func (*ReferenceForex) HasIsTradable

func (o *ReferenceForex) HasIsTradable() bool

HasIsTradable returns a boolean if a field has been set.

func (*ReferenceForex) HasMarketMaker

func (o *ReferenceForex) HasMarketMaker() bool

HasMarketMaker returns a boolean if a field has been set.

func (*ReferenceForex) HasProduct

func (o *ReferenceForex) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (*ReferenceForex) HasTradingHours

func (o *ReferenceForex) HasTradingHours() bool

HasTradingHours returns a boolean if a field has been set.

func (ReferenceForex) MarshalJSON

func (o ReferenceForex) MarshalJSON() ([]byte, error)

func (*ReferenceForex) SetDescription

func (o *ReferenceForex) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ReferenceForex) SetExchange

func (o *ReferenceForex) SetExchange(v string)

SetExchange gets a reference to the given string and assigns it to the Exchange field.

func (*ReferenceForex) SetExchangeName

func (o *ReferenceForex) SetExchangeName(v string)

SetExchangeName gets a reference to the given string and assigns it to the ExchangeName field.

func (*ReferenceForex) SetIsTradable

func (o *ReferenceForex) SetIsTradable(v bool)

SetIsTradable gets a reference to the given bool and assigns it to the IsTradable field.

func (*ReferenceForex) SetMarketMaker

func (o *ReferenceForex) SetMarketMaker(v string)

SetMarketMaker gets a reference to the given string and assigns it to the MarketMaker field.

func (*ReferenceForex) SetProduct

func (o *ReferenceForex) SetProduct(v string)

SetProduct gets a reference to the given string and assigns it to the Product field.

func (*ReferenceForex) SetTradingHours

func (o *ReferenceForex) SetTradingHours(v string)

SetTradingHours gets a reference to the given string and assigns it to the TradingHours field.

func (ReferenceForex) ToMap

func (o ReferenceForex) ToMap() (map[string]interface{}, error)

type ReferenceFuture

type ReferenceFuture struct {
	// Description of Instrument
	Description *string `json:"description,omitempty"`
	// Exchange Code
	Exchange *string `json:"exchange,omitempty"`
	// Exchange Name
	ExchangeName *string `json:"exchangeName,omitempty"`
	// Active symbol
	FutureActiveSymbol *string `json:"futureActiveSymbol,omitempty"`
	// Future expiration date in milliseconds since epoch
	FutureExpirationDate *float32 `json:"futureExpirationDate,omitempty"`
	// Future is active
	FutureIsActive *bool `json:"futureIsActive,omitempty"`
	// Future multiplier
	FutureMultiplier *float64 `json:"futureMultiplier,omitempty"`
	// Price format
	FuturePriceFormat *string `json:"futurePriceFormat,omitempty"`
	// Future Settlement Price
	FutureSettlementPrice *float64 `json:"futureSettlementPrice,omitempty"`
	// Trading Hours
	FutureTradingHours *string `json:"futureTradingHours,omitempty"`
	// Futures product symbol
	Product *string `json:"product,omitempty"`
}

ReferenceFuture Reference data of Future security

func NewReferenceFuture

func NewReferenceFuture() *ReferenceFuture

NewReferenceFuture instantiates a new ReferenceFuture object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReferenceFutureWithDefaults

func NewReferenceFutureWithDefaults() *ReferenceFuture

NewReferenceFutureWithDefaults instantiates a new ReferenceFuture object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReferenceFuture) GetDescription

func (o *ReferenceFuture) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ReferenceFuture) GetDescriptionOk

func (o *ReferenceFuture) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFuture) GetExchange

func (o *ReferenceFuture) GetExchange() string

GetExchange returns the Exchange field value if set, zero value otherwise.

func (*ReferenceFuture) GetExchangeName

func (o *ReferenceFuture) GetExchangeName() string

GetExchangeName returns the ExchangeName field value if set, zero value otherwise.

func (*ReferenceFuture) GetExchangeNameOk

func (o *ReferenceFuture) GetExchangeNameOk() (*string, bool)

GetExchangeNameOk returns a tuple with the ExchangeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFuture) GetExchangeOk

func (o *ReferenceFuture) GetExchangeOk() (*string, bool)

GetExchangeOk returns a tuple with the Exchange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFuture) GetFutureActiveSymbol

func (o *ReferenceFuture) GetFutureActiveSymbol() string

GetFutureActiveSymbol returns the FutureActiveSymbol field value if set, zero value otherwise.

func (*ReferenceFuture) GetFutureActiveSymbolOk

func (o *ReferenceFuture) GetFutureActiveSymbolOk() (*string, bool)

GetFutureActiveSymbolOk returns a tuple with the FutureActiveSymbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFuture) GetFutureExpirationDate

func (o *ReferenceFuture) GetFutureExpirationDate() float32

GetFutureExpirationDate returns the FutureExpirationDate field value if set, zero value otherwise.

func (*ReferenceFuture) GetFutureExpirationDateOk

func (o *ReferenceFuture) GetFutureExpirationDateOk() (*float32, bool)

GetFutureExpirationDateOk returns a tuple with the FutureExpirationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFuture) GetFutureIsActive

func (o *ReferenceFuture) GetFutureIsActive() bool

GetFutureIsActive returns the FutureIsActive field value if set, zero value otherwise.

func (*ReferenceFuture) GetFutureIsActiveOk

func (o *ReferenceFuture) GetFutureIsActiveOk() (*bool, bool)

GetFutureIsActiveOk returns a tuple with the FutureIsActive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFuture) GetFutureMultiplier

func (o *ReferenceFuture) GetFutureMultiplier() float64

GetFutureMultiplier returns the FutureMultiplier field value if set, zero value otherwise.

func (*ReferenceFuture) GetFutureMultiplierOk

func (o *ReferenceFuture) GetFutureMultiplierOk() (*float64, bool)

GetFutureMultiplierOk returns a tuple with the FutureMultiplier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFuture) GetFuturePriceFormat

func (o *ReferenceFuture) GetFuturePriceFormat() string

GetFuturePriceFormat returns the FuturePriceFormat field value if set, zero value otherwise.

func (*ReferenceFuture) GetFuturePriceFormatOk

func (o *ReferenceFuture) GetFuturePriceFormatOk() (*string, bool)

GetFuturePriceFormatOk returns a tuple with the FuturePriceFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFuture) GetFutureSettlementPrice

func (o *ReferenceFuture) GetFutureSettlementPrice() float64

GetFutureSettlementPrice returns the FutureSettlementPrice field value if set, zero value otherwise.

func (*ReferenceFuture) GetFutureSettlementPriceOk

func (o *ReferenceFuture) GetFutureSettlementPriceOk() (*float64, bool)

GetFutureSettlementPriceOk returns a tuple with the FutureSettlementPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFuture) GetFutureTradingHours

func (o *ReferenceFuture) GetFutureTradingHours() string

GetFutureTradingHours returns the FutureTradingHours field value if set, zero value otherwise.

func (*ReferenceFuture) GetFutureTradingHoursOk

func (o *ReferenceFuture) GetFutureTradingHoursOk() (*string, bool)

GetFutureTradingHoursOk returns a tuple with the FutureTradingHours field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFuture) GetProduct

func (o *ReferenceFuture) GetProduct() string

GetProduct returns the Product field value if set, zero value otherwise.

func (*ReferenceFuture) GetProductOk

func (o *ReferenceFuture) GetProductOk() (*string, bool)

GetProductOk returns a tuple with the Product field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFuture) HasDescription

func (o *ReferenceFuture) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReferenceFuture) HasExchange

func (o *ReferenceFuture) HasExchange() bool

HasExchange returns a boolean if a field has been set.

func (*ReferenceFuture) HasExchangeName

func (o *ReferenceFuture) HasExchangeName() bool

HasExchangeName returns a boolean if a field has been set.

func (*ReferenceFuture) HasFutureActiveSymbol

func (o *ReferenceFuture) HasFutureActiveSymbol() bool

HasFutureActiveSymbol returns a boolean if a field has been set.

func (*ReferenceFuture) HasFutureExpirationDate

func (o *ReferenceFuture) HasFutureExpirationDate() bool

HasFutureExpirationDate returns a boolean if a field has been set.

func (*ReferenceFuture) HasFutureIsActive

func (o *ReferenceFuture) HasFutureIsActive() bool

HasFutureIsActive returns a boolean if a field has been set.

func (*ReferenceFuture) HasFutureMultiplier

func (o *ReferenceFuture) HasFutureMultiplier() bool

HasFutureMultiplier returns a boolean if a field has been set.

func (*ReferenceFuture) HasFuturePriceFormat

func (o *ReferenceFuture) HasFuturePriceFormat() bool

HasFuturePriceFormat returns a boolean if a field has been set.

func (*ReferenceFuture) HasFutureSettlementPrice

func (o *ReferenceFuture) HasFutureSettlementPrice() bool

HasFutureSettlementPrice returns a boolean if a field has been set.

func (*ReferenceFuture) HasFutureTradingHours

func (o *ReferenceFuture) HasFutureTradingHours() bool

HasFutureTradingHours returns a boolean if a field has been set.

func (*ReferenceFuture) HasProduct

func (o *ReferenceFuture) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (ReferenceFuture) MarshalJSON

func (o ReferenceFuture) MarshalJSON() ([]byte, error)

func (*ReferenceFuture) SetDescription

func (o *ReferenceFuture) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ReferenceFuture) SetExchange

func (o *ReferenceFuture) SetExchange(v string)

SetExchange gets a reference to the given string and assigns it to the Exchange field.

func (*ReferenceFuture) SetExchangeName

func (o *ReferenceFuture) SetExchangeName(v string)

SetExchangeName gets a reference to the given string and assigns it to the ExchangeName field.

func (*ReferenceFuture) SetFutureActiveSymbol

func (o *ReferenceFuture) SetFutureActiveSymbol(v string)

SetFutureActiveSymbol gets a reference to the given string and assigns it to the FutureActiveSymbol field.

func (*ReferenceFuture) SetFutureExpirationDate

func (o *ReferenceFuture) SetFutureExpirationDate(v float32)

SetFutureExpirationDate gets a reference to the given float32 and assigns it to the FutureExpirationDate field.

func (*ReferenceFuture) SetFutureIsActive

func (o *ReferenceFuture) SetFutureIsActive(v bool)

SetFutureIsActive gets a reference to the given bool and assigns it to the FutureIsActive field.

func (*ReferenceFuture) SetFutureMultiplier

func (o *ReferenceFuture) SetFutureMultiplier(v float64)

SetFutureMultiplier gets a reference to the given float64 and assigns it to the FutureMultiplier field.

func (*ReferenceFuture) SetFuturePriceFormat

func (o *ReferenceFuture) SetFuturePriceFormat(v string)

SetFuturePriceFormat gets a reference to the given string and assigns it to the FuturePriceFormat field.

func (*ReferenceFuture) SetFutureSettlementPrice

func (o *ReferenceFuture) SetFutureSettlementPrice(v float64)

SetFutureSettlementPrice gets a reference to the given float64 and assigns it to the FutureSettlementPrice field.

func (*ReferenceFuture) SetFutureTradingHours

func (o *ReferenceFuture) SetFutureTradingHours(v string)

SetFutureTradingHours gets a reference to the given string and assigns it to the FutureTradingHours field.

func (*ReferenceFuture) SetProduct

func (o *ReferenceFuture) SetProduct(v string)

SetProduct gets a reference to the given string and assigns it to the Product field.

func (ReferenceFuture) ToMap

func (o ReferenceFuture) ToMap() (map[string]interface{}, error)

type ReferenceFutureOption

type ReferenceFutureOption struct {
	ContractType *ContractType `json:"contractType,omitempty"`
	// Description of Instrument
	Description *string `json:"description,omitempty"`
	// Exchange Code
	Exchange *string `json:"exchange,omitempty"`
	// Exchange Name
	ExchangeName *string `json:"exchangeName,omitempty"`
	// Option multiplier
	Multiplier *float64 `json:"multiplier,omitempty"`
	// date of expiration in long
	ExpirationDate *int64 `json:"expirationDate,omitempty"`
	// Style of expiration
	ExpirationStyle *string `json:"expirationStyle,omitempty"`
	// Strike Price
	StrikePrice *float64 `json:"strikePrice,omitempty"`
	// A company, index or fund name
	Underlying *string `json:"underlying,omitempty"`
}

ReferenceFutureOption Reference data of Future Option security

func NewReferenceFutureOption

func NewReferenceFutureOption() *ReferenceFutureOption

NewReferenceFutureOption instantiates a new ReferenceFutureOption object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReferenceFutureOptionWithDefaults

func NewReferenceFutureOptionWithDefaults() *ReferenceFutureOption

NewReferenceFutureOptionWithDefaults instantiates a new ReferenceFutureOption object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReferenceFutureOption) GetContractType

func (o *ReferenceFutureOption) GetContractType() ContractType

GetContractType returns the ContractType field value if set, zero value otherwise.

func (*ReferenceFutureOption) GetContractTypeOk

func (o *ReferenceFutureOption) GetContractTypeOk() (*ContractType, bool)

GetContractTypeOk returns a tuple with the ContractType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFutureOption) GetDescription

func (o *ReferenceFutureOption) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ReferenceFutureOption) GetDescriptionOk

func (o *ReferenceFutureOption) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFutureOption) GetExchange

func (o *ReferenceFutureOption) GetExchange() string

GetExchange returns the Exchange field value if set, zero value otherwise.

func (*ReferenceFutureOption) GetExchangeName

func (o *ReferenceFutureOption) GetExchangeName() string

GetExchangeName returns the ExchangeName field value if set, zero value otherwise.

func (*ReferenceFutureOption) GetExchangeNameOk

func (o *ReferenceFutureOption) GetExchangeNameOk() (*string, bool)

GetExchangeNameOk returns a tuple with the ExchangeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFutureOption) GetExchangeOk

func (o *ReferenceFutureOption) GetExchangeOk() (*string, bool)

GetExchangeOk returns a tuple with the Exchange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFutureOption) GetExpirationDate

func (o *ReferenceFutureOption) GetExpirationDate() int64

GetExpirationDate returns the ExpirationDate field value if set, zero value otherwise.

func (*ReferenceFutureOption) GetExpirationDateOk

func (o *ReferenceFutureOption) GetExpirationDateOk() (*int64, bool)

GetExpirationDateOk returns a tuple with the ExpirationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFutureOption) GetExpirationStyle

func (o *ReferenceFutureOption) GetExpirationStyle() string

GetExpirationStyle returns the ExpirationStyle field value if set, zero value otherwise.

func (*ReferenceFutureOption) GetExpirationStyleOk

func (o *ReferenceFutureOption) GetExpirationStyleOk() (*string, bool)

GetExpirationStyleOk returns a tuple with the ExpirationStyle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFutureOption) GetMultiplier

func (o *ReferenceFutureOption) GetMultiplier() float64

GetMultiplier returns the Multiplier field value if set, zero value otherwise.

func (*ReferenceFutureOption) GetMultiplierOk

func (o *ReferenceFutureOption) GetMultiplierOk() (*float64, bool)

GetMultiplierOk returns a tuple with the Multiplier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFutureOption) GetStrikePrice

func (o *ReferenceFutureOption) GetStrikePrice() float64

GetStrikePrice returns the StrikePrice field value if set, zero value otherwise.

func (*ReferenceFutureOption) GetStrikePriceOk

func (o *ReferenceFutureOption) GetStrikePriceOk() (*float64, bool)

GetStrikePriceOk returns a tuple with the StrikePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFutureOption) GetUnderlying

func (o *ReferenceFutureOption) GetUnderlying() string

GetUnderlying returns the Underlying field value if set, zero value otherwise.

func (*ReferenceFutureOption) GetUnderlyingOk

func (o *ReferenceFutureOption) GetUnderlyingOk() (*string, bool)

GetUnderlyingOk returns a tuple with the Underlying field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceFutureOption) HasContractType

func (o *ReferenceFutureOption) HasContractType() bool

HasContractType returns a boolean if a field has been set.

func (*ReferenceFutureOption) HasDescription

func (o *ReferenceFutureOption) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReferenceFutureOption) HasExchange

func (o *ReferenceFutureOption) HasExchange() bool

HasExchange returns a boolean if a field has been set.

func (*ReferenceFutureOption) HasExchangeName

func (o *ReferenceFutureOption) HasExchangeName() bool

HasExchangeName returns a boolean if a field has been set.

func (*ReferenceFutureOption) HasExpirationDate

func (o *ReferenceFutureOption) HasExpirationDate() bool

HasExpirationDate returns a boolean if a field has been set.

func (*ReferenceFutureOption) HasExpirationStyle

func (o *ReferenceFutureOption) HasExpirationStyle() bool

HasExpirationStyle returns a boolean if a field has been set.

func (*ReferenceFutureOption) HasMultiplier

func (o *ReferenceFutureOption) HasMultiplier() bool

HasMultiplier returns a boolean if a field has been set.

func (*ReferenceFutureOption) HasStrikePrice

func (o *ReferenceFutureOption) HasStrikePrice() bool

HasStrikePrice returns a boolean if a field has been set.

func (*ReferenceFutureOption) HasUnderlying

func (o *ReferenceFutureOption) HasUnderlying() bool

HasUnderlying returns a boolean if a field has been set.

func (ReferenceFutureOption) MarshalJSON

func (o ReferenceFutureOption) MarshalJSON() ([]byte, error)

func (*ReferenceFutureOption) SetContractType

func (o *ReferenceFutureOption) SetContractType(v ContractType)

SetContractType gets a reference to the given ContractType and assigns it to the ContractType field.

func (*ReferenceFutureOption) SetDescription

func (o *ReferenceFutureOption) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ReferenceFutureOption) SetExchange

func (o *ReferenceFutureOption) SetExchange(v string)

SetExchange gets a reference to the given string and assigns it to the Exchange field.

func (*ReferenceFutureOption) SetExchangeName

func (o *ReferenceFutureOption) SetExchangeName(v string)

SetExchangeName gets a reference to the given string and assigns it to the ExchangeName field.

func (*ReferenceFutureOption) SetExpirationDate

func (o *ReferenceFutureOption) SetExpirationDate(v int64)

SetExpirationDate gets a reference to the given int64 and assigns it to the ExpirationDate field.

func (*ReferenceFutureOption) SetExpirationStyle

func (o *ReferenceFutureOption) SetExpirationStyle(v string)

SetExpirationStyle gets a reference to the given string and assigns it to the ExpirationStyle field.

func (*ReferenceFutureOption) SetMultiplier

func (o *ReferenceFutureOption) SetMultiplier(v float64)

SetMultiplier gets a reference to the given float64 and assigns it to the Multiplier field.

func (*ReferenceFutureOption) SetStrikePrice

func (o *ReferenceFutureOption) SetStrikePrice(v float64)

SetStrikePrice gets a reference to the given float64 and assigns it to the StrikePrice field.

func (*ReferenceFutureOption) SetUnderlying

func (o *ReferenceFutureOption) SetUnderlying(v string)

SetUnderlying gets a reference to the given string and assigns it to the Underlying field.

func (ReferenceFutureOption) ToMap

func (o ReferenceFutureOption) ToMap() (map[string]interface{}, error)

type ReferenceIndex

type ReferenceIndex struct {
	// Description of Instrument
	Description *string `json:"description,omitempty"`
	// Exchange Code
	Exchange *string `json:"exchange,omitempty"`
	// Exchange Name
	ExchangeName *string `json:"exchangeName,omitempty"`
}

ReferenceIndex Reference data of Index security

func NewReferenceIndex

func NewReferenceIndex() *ReferenceIndex

NewReferenceIndex instantiates a new ReferenceIndex object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReferenceIndexWithDefaults

func NewReferenceIndexWithDefaults() *ReferenceIndex

NewReferenceIndexWithDefaults instantiates a new ReferenceIndex object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReferenceIndex) GetDescription

func (o *ReferenceIndex) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ReferenceIndex) GetDescriptionOk

func (o *ReferenceIndex) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceIndex) GetExchange

func (o *ReferenceIndex) GetExchange() string

GetExchange returns the Exchange field value if set, zero value otherwise.

func (*ReferenceIndex) GetExchangeName

func (o *ReferenceIndex) GetExchangeName() string

GetExchangeName returns the ExchangeName field value if set, zero value otherwise.

func (*ReferenceIndex) GetExchangeNameOk

func (o *ReferenceIndex) GetExchangeNameOk() (*string, bool)

GetExchangeNameOk returns a tuple with the ExchangeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceIndex) GetExchangeOk

func (o *ReferenceIndex) GetExchangeOk() (*string, bool)

GetExchangeOk returns a tuple with the Exchange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceIndex) HasDescription

func (o *ReferenceIndex) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReferenceIndex) HasExchange

func (o *ReferenceIndex) HasExchange() bool

HasExchange returns a boolean if a field has been set.

func (*ReferenceIndex) HasExchangeName

func (o *ReferenceIndex) HasExchangeName() bool

HasExchangeName returns a boolean if a field has been set.

func (ReferenceIndex) MarshalJSON

func (o ReferenceIndex) MarshalJSON() ([]byte, error)

func (*ReferenceIndex) SetDescription

func (o *ReferenceIndex) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ReferenceIndex) SetExchange

func (o *ReferenceIndex) SetExchange(v string)

SetExchange gets a reference to the given string and assigns it to the Exchange field.

func (*ReferenceIndex) SetExchangeName

func (o *ReferenceIndex) SetExchangeName(v string)

SetExchangeName gets a reference to the given string and assigns it to the ExchangeName field.

func (ReferenceIndex) ToMap

func (o ReferenceIndex) ToMap() (map[string]interface{}, error)

type ReferenceMutualFund

type ReferenceMutualFund struct {
	// CUSIP of Instrument
	Cusip *string `json:"cusip,omitempty"`
	// Description of Instrument
	Description *string `json:"description,omitempty"`
	// Exchange Code
	Exchange *string `json:"exchange,omitempty"`
	// Exchange Name
	ExchangeName *string `json:"exchangeName,omitempty"`
}

ReferenceMutualFund Reference data of MutualFund security

func NewReferenceMutualFund

func NewReferenceMutualFund() *ReferenceMutualFund

NewReferenceMutualFund instantiates a new ReferenceMutualFund object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReferenceMutualFundWithDefaults

func NewReferenceMutualFundWithDefaults() *ReferenceMutualFund

NewReferenceMutualFundWithDefaults instantiates a new ReferenceMutualFund object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReferenceMutualFund) GetCusip

func (o *ReferenceMutualFund) GetCusip() string

GetCusip returns the Cusip field value if set, zero value otherwise.

func (*ReferenceMutualFund) GetCusipOk

func (o *ReferenceMutualFund) GetCusipOk() (*string, bool)

GetCusipOk returns a tuple with the Cusip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceMutualFund) GetDescription

func (o *ReferenceMutualFund) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ReferenceMutualFund) GetDescriptionOk

func (o *ReferenceMutualFund) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceMutualFund) GetExchange

func (o *ReferenceMutualFund) GetExchange() string

GetExchange returns the Exchange field value if set, zero value otherwise.

func (*ReferenceMutualFund) GetExchangeName

func (o *ReferenceMutualFund) GetExchangeName() string

GetExchangeName returns the ExchangeName field value if set, zero value otherwise.

func (*ReferenceMutualFund) GetExchangeNameOk

func (o *ReferenceMutualFund) GetExchangeNameOk() (*string, bool)

GetExchangeNameOk returns a tuple with the ExchangeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceMutualFund) GetExchangeOk

func (o *ReferenceMutualFund) GetExchangeOk() (*string, bool)

GetExchangeOk returns a tuple with the Exchange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceMutualFund) HasCusip

func (o *ReferenceMutualFund) HasCusip() bool

HasCusip returns a boolean if a field has been set.

func (*ReferenceMutualFund) HasDescription

func (o *ReferenceMutualFund) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReferenceMutualFund) HasExchange

func (o *ReferenceMutualFund) HasExchange() bool

HasExchange returns a boolean if a field has been set.

func (*ReferenceMutualFund) HasExchangeName

func (o *ReferenceMutualFund) HasExchangeName() bool

HasExchangeName returns a boolean if a field has been set.

func (ReferenceMutualFund) MarshalJSON

func (o ReferenceMutualFund) MarshalJSON() ([]byte, error)

func (*ReferenceMutualFund) SetCusip

func (o *ReferenceMutualFund) SetCusip(v string)

SetCusip gets a reference to the given string and assigns it to the Cusip field.

func (*ReferenceMutualFund) SetDescription

func (o *ReferenceMutualFund) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ReferenceMutualFund) SetExchange

func (o *ReferenceMutualFund) SetExchange(v string)

SetExchange gets a reference to the given string and assigns it to the Exchange field.

func (*ReferenceMutualFund) SetExchangeName

func (o *ReferenceMutualFund) SetExchangeName(v string)

SetExchangeName gets a reference to the given string and assigns it to the ExchangeName field.

func (ReferenceMutualFund) ToMap

func (o ReferenceMutualFund) ToMap() (map[string]interface{}, error)

type ReferenceOption

type ReferenceOption struct {
	ContractType *ContractType `json:"contractType,omitempty"`
	// CUSIP of Instrument
	Cusip *string `json:"cusip,omitempty"`
	// Days to Expiration
	DaysToExpiration *int32 `json:"daysToExpiration,omitempty"`
	// Unit of trade
	Deliverables *string `json:"deliverables,omitempty"`
	// Description of Instrument
	Description *string `json:"description,omitempty"`
	// Exchange Code
	Exchange *string `json:"exchange,omitempty"`
	// Exchange Name
	ExchangeName *string       `json:"exchangeName,omitempty"`
	ExerciseType *ExerciseType `json:"exerciseType,omitempty"`
	// Expiration Day
	ExpirationDay *int32 `json:"expirationDay,omitempty"`
	// Expiration Month
	ExpirationMonth *int32          `json:"expirationMonth,omitempty"`
	ExpirationType  *ExpirationType `json:"expirationType,omitempty"`
	// Expiration Year
	ExpirationYear *int32 `json:"expirationYear,omitempty"`
	// Is this contract part of the Penny Pilot program
	IsPennyPilot *bool `json:"isPennyPilot,omitempty"`
	// milliseconds since epoch
	LastTradingDay *int64 `json:"lastTradingDay,omitempty"`
	// Option multiplier
	Multiplier     *float64        `json:"multiplier,omitempty"`
	SettlementType *SettlementType `json:"settlementType,omitempty"`
	// Strike Price
	StrikePrice *float64 `json:"strikePrice,omitempty"`
	// A company, index or fund name
	Underlying *string `json:"underlying,omitempty"`
}

ReferenceOption Reference data of Option security

func NewReferenceOption

func NewReferenceOption() *ReferenceOption

NewReferenceOption instantiates a new ReferenceOption object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReferenceOptionWithDefaults

func NewReferenceOptionWithDefaults() *ReferenceOption

NewReferenceOptionWithDefaults instantiates a new ReferenceOption object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReferenceOption) GetContractType

func (o *ReferenceOption) GetContractType() ContractType

GetContractType returns the ContractType field value if set, zero value otherwise.

func (*ReferenceOption) GetContractTypeOk

func (o *ReferenceOption) GetContractTypeOk() (*ContractType, bool)

GetContractTypeOk returns a tuple with the ContractType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetCusip

func (o *ReferenceOption) GetCusip() string

GetCusip returns the Cusip field value if set, zero value otherwise.

func (*ReferenceOption) GetCusipOk

func (o *ReferenceOption) GetCusipOk() (*string, bool)

GetCusipOk returns a tuple with the Cusip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetDaysToExpiration

func (o *ReferenceOption) GetDaysToExpiration() int32

GetDaysToExpiration returns the DaysToExpiration field value if set, zero value otherwise.

func (*ReferenceOption) GetDaysToExpirationOk

func (o *ReferenceOption) GetDaysToExpirationOk() (*int32, bool)

GetDaysToExpirationOk returns a tuple with the DaysToExpiration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetDeliverables

func (o *ReferenceOption) GetDeliverables() string

GetDeliverables returns the Deliverables field value if set, zero value otherwise.

func (*ReferenceOption) GetDeliverablesOk

func (o *ReferenceOption) GetDeliverablesOk() (*string, bool)

GetDeliverablesOk returns a tuple with the Deliverables field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetDescription

func (o *ReferenceOption) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ReferenceOption) GetDescriptionOk

func (o *ReferenceOption) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetExchange

func (o *ReferenceOption) GetExchange() string

GetExchange returns the Exchange field value if set, zero value otherwise.

func (*ReferenceOption) GetExchangeName

func (o *ReferenceOption) GetExchangeName() string

GetExchangeName returns the ExchangeName field value if set, zero value otherwise.

func (*ReferenceOption) GetExchangeNameOk

func (o *ReferenceOption) GetExchangeNameOk() (*string, bool)

GetExchangeNameOk returns a tuple with the ExchangeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetExchangeOk

func (o *ReferenceOption) GetExchangeOk() (*string, bool)

GetExchangeOk returns a tuple with the Exchange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetExerciseType

func (o *ReferenceOption) GetExerciseType() ExerciseType

GetExerciseType returns the ExerciseType field value if set, zero value otherwise.

func (*ReferenceOption) GetExerciseTypeOk

func (o *ReferenceOption) GetExerciseTypeOk() (*ExerciseType, bool)

GetExerciseTypeOk returns a tuple with the ExerciseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetExpirationDay

func (o *ReferenceOption) GetExpirationDay() int32

GetExpirationDay returns the ExpirationDay field value if set, zero value otherwise.

func (*ReferenceOption) GetExpirationDayOk

func (o *ReferenceOption) GetExpirationDayOk() (*int32, bool)

GetExpirationDayOk returns a tuple with the ExpirationDay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetExpirationMonth

func (o *ReferenceOption) GetExpirationMonth() int32

GetExpirationMonth returns the ExpirationMonth field value if set, zero value otherwise.

func (*ReferenceOption) GetExpirationMonthOk

func (o *ReferenceOption) GetExpirationMonthOk() (*int32, bool)

GetExpirationMonthOk returns a tuple with the ExpirationMonth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetExpirationType

func (o *ReferenceOption) GetExpirationType() ExpirationType

GetExpirationType returns the ExpirationType field value if set, zero value otherwise.

func (*ReferenceOption) GetExpirationTypeOk

func (o *ReferenceOption) GetExpirationTypeOk() (*ExpirationType, bool)

GetExpirationTypeOk returns a tuple with the ExpirationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetExpirationYear

func (o *ReferenceOption) GetExpirationYear() int32

GetExpirationYear returns the ExpirationYear field value if set, zero value otherwise.

func (*ReferenceOption) GetExpirationYearOk

func (o *ReferenceOption) GetExpirationYearOk() (*int32, bool)

GetExpirationYearOk returns a tuple with the ExpirationYear field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetIsPennyPilot

func (o *ReferenceOption) GetIsPennyPilot() bool

GetIsPennyPilot returns the IsPennyPilot field value if set, zero value otherwise.

func (*ReferenceOption) GetIsPennyPilotOk

func (o *ReferenceOption) GetIsPennyPilotOk() (*bool, bool)

GetIsPennyPilotOk returns a tuple with the IsPennyPilot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetLastTradingDay

func (o *ReferenceOption) GetLastTradingDay() int64

GetLastTradingDay returns the LastTradingDay field value if set, zero value otherwise.

func (*ReferenceOption) GetLastTradingDayOk

func (o *ReferenceOption) GetLastTradingDayOk() (*int64, bool)

GetLastTradingDayOk returns a tuple with the LastTradingDay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetMultiplier

func (o *ReferenceOption) GetMultiplier() float64

GetMultiplier returns the Multiplier field value if set, zero value otherwise.

func (*ReferenceOption) GetMultiplierOk

func (o *ReferenceOption) GetMultiplierOk() (*float64, bool)

GetMultiplierOk returns a tuple with the Multiplier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetSettlementType

func (o *ReferenceOption) GetSettlementType() SettlementType

GetSettlementType returns the SettlementType field value if set, zero value otherwise.

func (*ReferenceOption) GetSettlementTypeOk

func (o *ReferenceOption) GetSettlementTypeOk() (*SettlementType, bool)

GetSettlementTypeOk returns a tuple with the SettlementType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetStrikePrice

func (o *ReferenceOption) GetStrikePrice() float64

GetStrikePrice returns the StrikePrice field value if set, zero value otherwise.

func (*ReferenceOption) GetStrikePriceOk

func (o *ReferenceOption) GetStrikePriceOk() (*float64, bool)

GetStrikePriceOk returns a tuple with the StrikePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) GetUnderlying

func (o *ReferenceOption) GetUnderlying() string

GetUnderlying returns the Underlying field value if set, zero value otherwise.

func (*ReferenceOption) GetUnderlyingOk

func (o *ReferenceOption) GetUnderlyingOk() (*string, bool)

GetUnderlyingOk returns a tuple with the Underlying field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceOption) HasContractType

func (o *ReferenceOption) HasContractType() bool

HasContractType returns a boolean if a field has been set.

func (*ReferenceOption) HasCusip

func (o *ReferenceOption) HasCusip() bool

HasCusip returns a boolean if a field has been set.

func (*ReferenceOption) HasDaysToExpiration

func (o *ReferenceOption) HasDaysToExpiration() bool

HasDaysToExpiration returns a boolean if a field has been set.

func (*ReferenceOption) HasDeliverables

func (o *ReferenceOption) HasDeliverables() bool

HasDeliverables returns a boolean if a field has been set.

func (*ReferenceOption) HasDescription

func (o *ReferenceOption) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ReferenceOption) HasExchange

func (o *ReferenceOption) HasExchange() bool

HasExchange returns a boolean if a field has been set.

func (*ReferenceOption) HasExchangeName

func (o *ReferenceOption) HasExchangeName() bool

HasExchangeName returns a boolean if a field has been set.

func (*ReferenceOption) HasExerciseType

func (o *ReferenceOption) HasExerciseType() bool

HasExerciseType returns a boolean if a field has been set.

func (*ReferenceOption) HasExpirationDay

func (o *ReferenceOption) HasExpirationDay() bool

HasExpirationDay returns a boolean if a field has been set.

func (*ReferenceOption) HasExpirationMonth

func (o *ReferenceOption) HasExpirationMonth() bool

HasExpirationMonth returns a boolean if a field has been set.

func (*ReferenceOption) HasExpirationType

func (o *ReferenceOption) HasExpirationType() bool

HasExpirationType returns a boolean if a field has been set.

func (*ReferenceOption) HasExpirationYear

func (o *ReferenceOption) HasExpirationYear() bool

HasExpirationYear returns a boolean if a field has been set.

func (*ReferenceOption) HasIsPennyPilot

func (o *ReferenceOption) HasIsPennyPilot() bool

HasIsPennyPilot returns a boolean if a field has been set.

func (*ReferenceOption) HasLastTradingDay

func (o *ReferenceOption) HasLastTradingDay() bool

HasLastTradingDay returns a boolean if a field has been set.

func (*ReferenceOption) HasMultiplier

func (o *ReferenceOption) HasMultiplier() bool

HasMultiplier returns a boolean if a field has been set.

func (*ReferenceOption) HasSettlementType

func (o *ReferenceOption) HasSettlementType() bool

HasSettlementType returns a boolean if a field has been set.

func (*ReferenceOption) HasStrikePrice

func (o *ReferenceOption) HasStrikePrice() bool

HasStrikePrice returns a boolean if a field has been set.

func (*ReferenceOption) HasUnderlying

func (o *ReferenceOption) HasUnderlying() bool

HasUnderlying returns a boolean if a field has been set.

func (ReferenceOption) MarshalJSON

func (o ReferenceOption) MarshalJSON() ([]byte, error)

func (*ReferenceOption) SetContractType

func (o *ReferenceOption) SetContractType(v ContractType)

SetContractType gets a reference to the given ContractType and assigns it to the ContractType field.

func (*ReferenceOption) SetCusip

func (o *ReferenceOption) SetCusip(v string)

SetCusip gets a reference to the given string and assigns it to the Cusip field.

func (*ReferenceOption) SetDaysToExpiration

func (o *ReferenceOption) SetDaysToExpiration(v int32)

SetDaysToExpiration gets a reference to the given int32 and assigns it to the DaysToExpiration field.

func (*ReferenceOption) SetDeliverables

func (o *ReferenceOption) SetDeliverables(v string)

SetDeliverables gets a reference to the given string and assigns it to the Deliverables field.

func (*ReferenceOption) SetDescription

func (o *ReferenceOption) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ReferenceOption) SetExchange

func (o *ReferenceOption) SetExchange(v string)

SetExchange gets a reference to the given string and assigns it to the Exchange field.

func (*ReferenceOption) SetExchangeName

func (o *ReferenceOption) SetExchangeName(v string)

SetExchangeName gets a reference to the given string and assigns it to the ExchangeName field.

func (*ReferenceOption) SetExerciseType

func (o *ReferenceOption) SetExerciseType(v ExerciseType)

SetExerciseType gets a reference to the given ExerciseType and assigns it to the ExerciseType field.

func (*ReferenceOption) SetExpirationDay

func (o *ReferenceOption) SetExpirationDay(v int32)

SetExpirationDay gets a reference to the given int32 and assigns it to the ExpirationDay field.

func (*ReferenceOption) SetExpirationMonth

func (o *ReferenceOption) SetExpirationMonth(v int32)

SetExpirationMonth gets a reference to the given int32 and assigns it to the ExpirationMonth field.

func (*ReferenceOption) SetExpirationType

func (o *ReferenceOption) SetExpirationType(v ExpirationType)

SetExpirationType gets a reference to the given ExpirationType and assigns it to the ExpirationType field.

func (*ReferenceOption) SetExpirationYear

func (o *ReferenceOption) SetExpirationYear(v int32)

SetExpirationYear gets a reference to the given int32 and assigns it to the ExpirationYear field.

func (*ReferenceOption) SetIsPennyPilot

func (o *ReferenceOption) SetIsPennyPilot(v bool)

SetIsPennyPilot gets a reference to the given bool and assigns it to the IsPennyPilot field.

func (*ReferenceOption) SetLastTradingDay

func (o *ReferenceOption) SetLastTradingDay(v int64)

SetLastTradingDay gets a reference to the given int64 and assigns it to the LastTradingDay field.

func (*ReferenceOption) SetMultiplier

func (o *ReferenceOption) SetMultiplier(v float64)

SetMultiplier gets a reference to the given float64 and assigns it to the Multiplier field.

func (*ReferenceOption) SetSettlementType

func (o *ReferenceOption) SetSettlementType(v SettlementType)

SetSettlementType gets a reference to the given SettlementType and assigns it to the SettlementType field.

func (*ReferenceOption) SetStrikePrice

func (o *ReferenceOption) SetStrikePrice(v float64)

SetStrikePrice gets a reference to the given float64 and assigns it to the StrikePrice field.

func (*ReferenceOption) SetUnderlying

func (o *ReferenceOption) SetUnderlying(v string)

SetUnderlying gets a reference to the given string and assigns it to the Underlying field.

func (ReferenceOption) ToMap

func (o ReferenceOption) ToMap() (map[string]interface{}, error)

type RegularMarket

type RegularMarket struct {
	// Regular market last price
	RegularMarketLastPrice *float64 `json:"regularMarketLastPrice,omitempty"`
	// Regular market last size
	RegularMarketLastSize *int32 `json:"regularMarketLastSize,omitempty"`
	// Regular market net change
	RegularMarketNetChange *float64 `json:"regularMarketNetChange,omitempty"`
	// Regular market percent change
	RegularMarketPercentChange *float64 `json:"regularMarketPercentChange,omitempty"`
	// Regular market trade time in milliseconds since Epoch
	RegularMarketTradeTime *int64 `json:"regularMarketTradeTime,omitempty"`
}

RegularMarket Market info of security

func NewRegularMarket

func NewRegularMarket() *RegularMarket

NewRegularMarket instantiates a new RegularMarket object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegularMarketWithDefaults

func NewRegularMarketWithDefaults() *RegularMarket

NewRegularMarketWithDefaults instantiates a new RegularMarket object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RegularMarket) GetRegularMarketLastPrice

func (o *RegularMarket) GetRegularMarketLastPrice() float64

GetRegularMarketLastPrice returns the RegularMarketLastPrice field value if set, zero value otherwise.

func (*RegularMarket) GetRegularMarketLastPriceOk

func (o *RegularMarket) GetRegularMarketLastPriceOk() (*float64, bool)

GetRegularMarketLastPriceOk returns a tuple with the RegularMarketLastPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegularMarket) GetRegularMarketLastSize

func (o *RegularMarket) GetRegularMarketLastSize() int32

GetRegularMarketLastSize returns the RegularMarketLastSize field value if set, zero value otherwise.

func (*RegularMarket) GetRegularMarketLastSizeOk

func (o *RegularMarket) GetRegularMarketLastSizeOk() (*int32, bool)

GetRegularMarketLastSizeOk returns a tuple with the RegularMarketLastSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegularMarket) GetRegularMarketNetChange

func (o *RegularMarket) GetRegularMarketNetChange() float64

GetRegularMarketNetChange returns the RegularMarketNetChange field value if set, zero value otherwise.

func (*RegularMarket) GetRegularMarketNetChangeOk

func (o *RegularMarket) GetRegularMarketNetChangeOk() (*float64, bool)

GetRegularMarketNetChangeOk returns a tuple with the RegularMarketNetChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegularMarket) GetRegularMarketPercentChange

func (o *RegularMarket) GetRegularMarketPercentChange() float64

GetRegularMarketPercentChange returns the RegularMarketPercentChange field value if set, zero value otherwise.

func (*RegularMarket) GetRegularMarketPercentChangeOk

func (o *RegularMarket) GetRegularMarketPercentChangeOk() (*float64, bool)

GetRegularMarketPercentChangeOk returns a tuple with the RegularMarketPercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegularMarket) GetRegularMarketTradeTime

func (o *RegularMarket) GetRegularMarketTradeTime() int64

GetRegularMarketTradeTime returns the RegularMarketTradeTime field value if set, zero value otherwise.

func (*RegularMarket) GetRegularMarketTradeTimeOk

func (o *RegularMarket) GetRegularMarketTradeTimeOk() (*int64, bool)

GetRegularMarketTradeTimeOk returns a tuple with the RegularMarketTradeTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegularMarket) HasRegularMarketLastPrice

func (o *RegularMarket) HasRegularMarketLastPrice() bool

HasRegularMarketLastPrice returns a boolean if a field has been set.

func (*RegularMarket) HasRegularMarketLastSize

func (o *RegularMarket) HasRegularMarketLastSize() bool

HasRegularMarketLastSize returns a boolean if a field has been set.

func (*RegularMarket) HasRegularMarketNetChange

func (o *RegularMarket) HasRegularMarketNetChange() bool

HasRegularMarketNetChange returns a boolean if a field has been set.

func (*RegularMarket) HasRegularMarketPercentChange

func (o *RegularMarket) HasRegularMarketPercentChange() bool

HasRegularMarketPercentChange returns a boolean if a field has been set.

func (*RegularMarket) HasRegularMarketTradeTime

func (o *RegularMarket) HasRegularMarketTradeTime() bool

HasRegularMarketTradeTime returns a boolean if a field has been set.

func (RegularMarket) MarshalJSON

func (o RegularMarket) MarshalJSON() ([]byte, error)

func (*RegularMarket) SetRegularMarketLastPrice

func (o *RegularMarket) SetRegularMarketLastPrice(v float64)

SetRegularMarketLastPrice gets a reference to the given float64 and assigns it to the RegularMarketLastPrice field.

func (*RegularMarket) SetRegularMarketLastSize

func (o *RegularMarket) SetRegularMarketLastSize(v int32)

SetRegularMarketLastSize gets a reference to the given int32 and assigns it to the RegularMarketLastSize field.

func (*RegularMarket) SetRegularMarketNetChange

func (o *RegularMarket) SetRegularMarketNetChange(v float64)

SetRegularMarketNetChange gets a reference to the given float64 and assigns it to the RegularMarketNetChange field.

func (*RegularMarket) SetRegularMarketPercentChange

func (o *RegularMarket) SetRegularMarketPercentChange(v float64)

SetRegularMarketPercentChange gets a reference to the given float64 and assigns it to the RegularMarketPercentChange field.

func (*RegularMarket) SetRegularMarketTradeTime

func (o *RegularMarket) SetRegularMarketTradeTime(v int64)

SetRegularMarketTradeTime gets a reference to the given int64 and assigns it to the RegularMarketTradeTime field.

func (RegularMarket) ToMap

func (o RegularMarket) ToMap() (map[string]interface{}, error)

type Screener

type Screener struct {
	// percent or value changed, by default its percent changed
	Change *float64 `json:"change,omitempty"`
	// Name of security
	Description *string `json:"description,omitempty"`
	Direction   *string `json:"direction,omitempty"`
	// what was last quoted price
	Last *float64 `json:"last,omitempty"`
	// schwab security symbol
	Symbol      *string `json:"symbol,omitempty"`
	TotalVolume *int64  `json:"totalVolume,omitempty"`
}

Screener Security info of most moved with in an index

func NewScreener

func NewScreener() *Screener

NewScreener instantiates a new Screener object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScreenerWithDefaults

func NewScreenerWithDefaults() *Screener

NewScreenerWithDefaults instantiates a new Screener object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Screener) GetChange

func (o *Screener) GetChange() float64

GetChange returns the Change field value if set, zero value otherwise.

func (*Screener) GetChangeOk

func (o *Screener) GetChangeOk() (*float64, bool)

GetChangeOk returns a tuple with the Change field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Screener) GetDescription

func (o *Screener) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Screener) GetDescriptionOk

func (o *Screener) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Screener) GetDirection

func (o *Screener) GetDirection() string

GetDirection returns the Direction field value if set, zero value otherwise.

func (*Screener) GetDirectionOk

func (o *Screener) GetDirectionOk() (*string, bool)

GetDirectionOk returns a tuple with the Direction field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Screener) GetLast

func (o *Screener) GetLast() float64

GetLast returns the Last field value if set, zero value otherwise.

func (*Screener) GetLastOk

func (o *Screener) GetLastOk() (*float64, bool)

GetLastOk returns a tuple with the Last field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Screener) GetSymbol

func (o *Screener) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*Screener) GetSymbolOk

func (o *Screener) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Screener) GetTotalVolume

func (o *Screener) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*Screener) GetTotalVolumeOk

func (o *Screener) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Screener) HasChange

func (o *Screener) HasChange() bool

HasChange returns a boolean if a field has been set.

func (*Screener) HasDescription

func (o *Screener) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Screener) HasDirection

func (o *Screener) HasDirection() bool

HasDirection returns a boolean if a field has been set.

func (*Screener) HasLast

func (o *Screener) HasLast() bool

HasLast returns a boolean if a field has been set.

func (*Screener) HasSymbol

func (o *Screener) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*Screener) HasTotalVolume

func (o *Screener) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (Screener) MarshalJSON

func (o Screener) MarshalJSON() ([]byte, error)

func (*Screener) SetChange

func (o *Screener) SetChange(v float64)

SetChange gets a reference to the given float64 and assigns it to the Change field.

func (*Screener) SetDescription

func (o *Screener) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Screener) SetDirection

func (o *Screener) SetDirection(v string)

SetDirection gets a reference to the given string and assigns it to the Direction field.

func (*Screener) SetLast

func (o *Screener) SetLast(v float64)

SetLast gets a reference to the given float64 and assigns it to the Last field.

func (*Screener) SetSymbol

func (o *Screener) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*Screener) SetTotalVolume

func (o *Screener) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (Screener) ToMap

func (o Screener) ToMap() (map[string]interface{}, error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SettlementType

type SettlementType string

SettlementType option contract settlement type AM or PM

const (
	SETTLEMENTTYPE_A SettlementType = "A"
	SETTLEMENTTYPE_P SettlementType = "P"
)

List of SettlementType

func NewSettlementTypeFromValue

func NewSettlementTypeFromValue(v string) (*SettlementType, error)

NewSettlementTypeFromValue returns a pointer to a valid SettlementType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SettlementType) IsValid

func (v SettlementType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SettlementType) Ptr

func (v SettlementType) Ptr() *SettlementType

Ptr returns reference to SettlementType value

func (*SettlementType) UnmarshalJSON

func (v *SettlementType) UnmarshalJSON(src []byte) error

type Underlying

type Underlying struct {
	Ask               *float64 `json:"ask,omitempty"`
	AskSize           *int32   `json:"askSize,omitempty"`
	Bid               *float64 `json:"bid,omitempty"`
	BidSize           *int32   `json:"bidSize,omitempty"`
	Change            *float64 `json:"change,omitempty"`
	Close             *float64 `json:"close,omitempty"`
	Delayed           *bool    `json:"delayed,omitempty"`
	Description       *string  `json:"description,omitempty"`
	ExchangeName      *string  `json:"exchangeName,omitempty"`
	FiftyTwoWeekHigh  *float64 `json:"fiftyTwoWeekHigh,omitempty"`
	FiftyTwoWeekLow   *float64 `json:"fiftyTwoWeekLow,omitempty"`
	HighPrice         *float64 `json:"highPrice,omitempty"`
	Last              *float64 `json:"last,omitempty"`
	LowPrice          *float64 `json:"lowPrice,omitempty"`
	Mark              *float64 `json:"mark,omitempty"`
	MarkChange        *float64 `json:"markChange,omitempty"`
	MarkPercentChange *float64 `json:"markPercentChange,omitempty"`
	OpenPrice         *float64 `json:"openPrice,omitempty"`
	PercentChange     *float64 `json:"percentChange,omitempty"`
	QuoteTime         *int64   `json:"quoteTime,omitempty"`
	Symbol            *string  `json:"symbol,omitempty"`
	TotalVolume       *int64   `json:"totalVolume,omitempty"`
	TradeTime         *int64   `json:"tradeTime,omitempty"`
}

Underlying struct for Underlying

func NewUnderlying

func NewUnderlying() *Underlying

NewUnderlying instantiates a new Underlying object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUnderlyingWithDefaults

func NewUnderlyingWithDefaults() *Underlying

NewUnderlyingWithDefaults instantiates a new Underlying object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Underlying) GetAsk

func (o *Underlying) GetAsk() float64

GetAsk returns the Ask field value if set, zero value otherwise.

func (*Underlying) GetAskOk

func (o *Underlying) GetAskOk() (*float64, bool)

GetAskOk returns a tuple with the Ask field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetAskSize

func (o *Underlying) GetAskSize() int32

GetAskSize returns the AskSize field value if set, zero value otherwise.

func (*Underlying) GetAskSizeOk

func (o *Underlying) GetAskSizeOk() (*int32, bool)

GetAskSizeOk returns a tuple with the AskSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetBid

func (o *Underlying) GetBid() float64

GetBid returns the Bid field value if set, zero value otherwise.

func (*Underlying) GetBidOk

func (o *Underlying) GetBidOk() (*float64, bool)

GetBidOk returns a tuple with the Bid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetBidSize

func (o *Underlying) GetBidSize() int32

GetBidSize returns the BidSize field value if set, zero value otherwise.

func (*Underlying) GetBidSizeOk

func (o *Underlying) GetBidSizeOk() (*int32, bool)

GetBidSizeOk returns a tuple with the BidSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetChange

func (o *Underlying) GetChange() float64

GetChange returns the Change field value if set, zero value otherwise.

func (*Underlying) GetChangeOk

func (o *Underlying) GetChangeOk() (*float64, bool)

GetChangeOk returns a tuple with the Change field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetClose

func (o *Underlying) GetClose() float64

GetClose returns the Close field value if set, zero value otherwise.

func (*Underlying) GetCloseOk

func (o *Underlying) GetCloseOk() (*float64, bool)

GetCloseOk returns a tuple with the Close field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetDelayed

func (o *Underlying) GetDelayed() bool

GetDelayed returns the Delayed field value if set, zero value otherwise.

func (*Underlying) GetDelayedOk

func (o *Underlying) GetDelayedOk() (*bool, bool)

GetDelayedOk returns a tuple with the Delayed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetDescription

func (o *Underlying) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Underlying) GetDescriptionOk

func (o *Underlying) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetExchangeName

func (o *Underlying) GetExchangeName() string

GetExchangeName returns the ExchangeName field value if set, zero value otherwise.

func (*Underlying) GetExchangeNameOk

func (o *Underlying) GetExchangeNameOk() (*string, bool)

GetExchangeNameOk returns a tuple with the ExchangeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetFiftyTwoWeekHigh

func (o *Underlying) GetFiftyTwoWeekHigh() float64

GetFiftyTwoWeekHigh returns the FiftyTwoWeekHigh field value if set, zero value otherwise.

func (*Underlying) GetFiftyTwoWeekHighOk

func (o *Underlying) GetFiftyTwoWeekHighOk() (*float64, bool)

GetFiftyTwoWeekHighOk returns a tuple with the FiftyTwoWeekHigh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetFiftyTwoWeekLow

func (o *Underlying) GetFiftyTwoWeekLow() float64

GetFiftyTwoWeekLow returns the FiftyTwoWeekLow field value if set, zero value otherwise.

func (*Underlying) GetFiftyTwoWeekLowOk

func (o *Underlying) GetFiftyTwoWeekLowOk() (*float64, bool)

GetFiftyTwoWeekLowOk returns a tuple with the FiftyTwoWeekLow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetHighPrice

func (o *Underlying) GetHighPrice() float64

GetHighPrice returns the HighPrice field value if set, zero value otherwise.

func (*Underlying) GetHighPriceOk

func (o *Underlying) GetHighPriceOk() (*float64, bool)

GetHighPriceOk returns a tuple with the HighPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetLast

func (o *Underlying) GetLast() float64

GetLast returns the Last field value if set, zero value otherwise.

func (*Underlying) GetLastOk

func (o *Underlying) GetLastOk() (*float64, bool)

GetLastOk returns a tuple with the Last field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetLowPrice

func (o *Underlying) GetLowPrice() float64

GetLowPrice returns the LowPrice field value if set, zero value otherwise.

func (*Underlying) GetLowPriceOk

func (o *Underlying) GetLowPriceOk() (*float64, bool)

GetLowPriceOk returns a tuple with the LowPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetMark

func (o *Underlying) GetMark() float64

GetMark returns the Mark field value if set, zero value otherwise.

func (*Underlying) GetMarkChange

func (o *Underlying) GetMarkChange() float64

GetMarkChange returns the MarkChange field value if set, zero value otherwise.

func (*Underlying) GetMarkChangeOk

func (o *Underlying) GetMarkChangeOk() (*float64, bool)

GetMarkChangeOk returns a tuple with the MarkChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetMarkOk

func (o *Underlying) GetMarkOk() (*float64, bool)

GetMarkOk returns a tuple with the Mark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetMarkPercentChange

func (o *Underlying) GetMarkPercentChange() float64

GetMarkPercentChange returns the MarkPercentChange field value if set, zero value otherwise.

func (*Underlying) GetMarkPercentChangeOk

func (o *Underlying) GetMarkPercentChangeOk() (*float64, bool)

GetMarkPercentChangeOk returns a tuple with the MarkPercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetOpenPrice

func (o *Underlying) GetOpenPrice() float64

GetOpenPrice returns the OpenPrice field value if set, zero value otherwise.

func (*Underlying) GetOpenPriceOk

func (o *Underlying) GetOpenPriceOk() (*float64, bool)

GetOpenPriceOk returns a tuple with the OpenPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetPercentChange

func (o *Underlying) GetPercentChange() float64

GetPercentChange returns the PercentChange field value if set, zero value otherwise.

func (*Underlying) GetPercentChangeOk

func (o *Underlying) GetPercentChangeOk() (*float64, bool)

GetPercentChangeOk returns a tuple with the PercentChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetQuoteTime

func (o *Underlying) GetQuoteTime() int64

GetQuoteTime returns the QuoteTime field value if set, zero value otherwise.

func (*Underlying) GetQuoteTimeOk

func (o *Underlying) GetQuoteTimeOk() (*int64, bool)

GetQuoteTimeOk returns a tuple with the QuoteTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetSymbol

func (o *Underlying) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*Underlying) GetSymbolOk

func (o *Underlying) GetSymbolOk() (*string, bool)

GetSymbolOk returns a tuple with the Symbol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetTotalVolume

func (o *Underlying) GetTotalVolume() int64

GetTotalVolume returns the TotalVolume field value if set, zero value otherwise.

func (*Underlying) GetTotalVolumeOk

func (o *Underlying) GetTotalVolumeOk() (*int64, bool)

GetTotalVolumeOk returns a tuple with the TotalVolume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) GetTradeTime

func (o *Underlying) GetTradeTime() int64

GetTradeTime returns the TradeTime field value if set, zero value otherwise.

func (*Underlying) GetTradeTimeOk

func (o *Underlying) GetTradeTimeOk() (*int64, bool)

GetTradeTimeOk returns a tuple with the TradeTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Underlying) HasAsk

func (o *Underlying) HasAsk() bool

HasAsk returns a boolean if a field has been set.

func (*Underlying) HasAskSize

func (o *Underlying) HasAskSize() bool

HasAskSize returns a boolean if a field has been set.

func (*Underlying) HasBid

func (o *Underlying) HasBid() bool

HasBid returns a boolean if a field has been set.

func (*Underlying) HasBidSize

func (o *Underlying) HasBidSize() bool

HasBidSize returns a boolean if a field has been set.

func (*Underlying) HasChange

func (o *Underlying) HasChange() bool

HasChange returns a boolean if a field has been set.

func (*Underlying) HasClose

func (o *Underlying) HasClose() bool

HasClose returns a boolean if a field has been set.

func (*Underlying) HasDelayed

func (o *Underlying) HasDelayed() bool

HasDelayed returns a boolean if a field has been set.

func (*Underlying) HasDescription

func (o *Underlying) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Underlying) HasExchangeName

func (o *Underlying) HasExchangeName() bool

HasExchangeName returns a boolean if a field has been set.

func (*Underlying) HasFiftyTwoWeekHigh

func (o *Underlying) HasFiftyTwoWeekHigh() bool

HasFiftyTwoWeekHigh returns a boolean if a field has been set.

func (*Underlying) HasFiftyTwoWeekLow

func (o *Underlying) HasFiftyTwoWeekLow() bool

HasFiftyTwoWeekLow returns a boolean if a field has been set.

func (*Underlying) HasHighPrice

func (o *Underlying) HasHighPrice() bool

HasHighPrice returns a boolean if a field has been set.

func (*Underlying) HasLast

func (o *Underlying) HasLast() bool

HasLast returns a boolean if a field has been set.

func (*Underlying) HasLowPrice

func (o *Underlying) HasLowPrice() bool

HasLowPrice returns a boolean if a field has been set.

func (*Underlying) HasMark

func (o *Underlying) HasMark() bool

HasMark returns a boolean if a field has been set.

func (*Underlying) HasMarkChange

func (o *Underlying) HasMarkChange() bool

HasMarkChange returns a boolean if a field has been set.

func (*Underlying) HasMarkPercentChange

func (o *Underlying) HasMarkPercentChange() bool

HasMarkPercentChange returns a boolean if a field has been set.

func (*Underlying) HasOpenPrice

func (o *Underlying) HasOpenPrice() bool

HasOpenPrice returns a boolean if a field has been set.

func (*Underlying) HasPercentChange

func (o *Underlying) HasPercentChange() bool

HasPercentChange returns a boolean if a field has been set.

func (*Underlying) HasQuoteTime

func (o *Underlying) HasQuoteTime() bool

HasQuoteTime returns a boolean if a field has been set.

func (*Underlying) HasSymbol

func (o *Underlying) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*Underlying) HasTotalVolume

func (o *Underlying) HasTotalVolume() bool

HasTotalVolume returns a boolean if a field has been set.

func (*Underlying) HasTradeTime

func (o *Underlying) HasTradeTime() bool

HasTradeTime returns a boolean if a field has been set.

func (Underlying) MarshalJSON

func (o Underlying) MarshalJSON() ([]byte, error)

func (*Underlying) SetAsk

func (o *Underlying) SetAsk(v float64)

SetAsk gets a reference to the given float64 and assigns it to the Ask field.

func (*Underlying) SetAskSize

func (o *Underlying) SetAskSize(v int32)

SetAskSize gets a reference to the given int32 and assigns it to the AskSize field.

func (*Underlying) SetBid

func (o *Underlying) SetBid(v float64)

SetBid gets a reference to the given float64 and assigns it to the Bid field.

func (*Underlying) SetBidSize

func (o *Underlying) SetBidSize(v int32)

SetBidSize gets a reference to the given int32 and assigns it to the BidSize field.

func (*Underlying) SetChange

func (o *Underlying) SetChange(v float64)

SetChange gets a reference to the given float64 and assigns it to the Change field.

func (*Underlying) SetClose

func (o *Underlying) SetClose(v float64)

SetClose gets a reference to the given float64 and assigns it to the Close field.

func (*Underlying) SetDelayed

func (o *Underlying) SetDelayed(v bool)

SetDelayed gets a reference to the given bool and assigns it to the Delayed field.

func (*Underlying) SetDescription

func (o *Underlying) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Underlying) SetExchangeName

func (o *Underlying) SetExchangeName(v string)

SetExchangeName gets a reference to the given string and assigns it to the ExchangeName field.

func (*Underlying) SetFiftyTwoWeekHigh

func (o *Underlying) SetFiftyTwoWeekHigh(v float64)

SetFiftyTwoWeekHigh gets a reference to the given float64 and assigns it to the FiftyTwoWeekHigh field.

func (*Underlying) SetFiftyTwoWeekLow

func (o *Underlying) SetFiftyTwoWeekLow(v float64)

SetFiftyTwoWeekLow gets a reference to the given float64 and assigns it to the FiftyTwoWeekLow field.

func (*Underlying) SetHighPrice

func (o *Underlying) SetHighPrice(v float64)

SetHighPrice gets a reference to the given float64 and assigns it to the HighPrice field.

func (*Underlying) SetLast

func (o *Underlying) SetLast(v float64)

SetLast gets a reference to the given float64 and assigns it to the Last field.

func (*Underlying) SetLowPrice

func (o *Underlying) SetLowPrice(v float64)

SetLowPrice gets a reference to the given float64 and assigns it to the LowPrice field.

func (*Underlying) SetMark

func (o *Underlying) SetMark(v float64)

SetMark gets a reference to the given float64 and assigns it to the Mark field.

func (*Underlying) SetMarkChange

func (o *Underlying) SetMarkChange(v float64)

SetMarkChange gets a reference to the given float64 and assigns it to the MarkChange field.

func (*Underlying) SetMarkPercentChange

func (o *Underlying) SetMarkPercentChange(v float64)

SetMarkPercentChange gets a reference to the given float64 and assigns it to the MarkPercentChange field.

func (*Underlying) SetOpenPrice

func (o *Underlying) SetOpenPrice(v float64)

SetOpenPrice gets a reference to the given float64 and assigns it to the OpenPrice field.

func (*Underlying) SetPercentChange

func (o *Underlying) SetPercentChange(v float64)

SetPercentChange gets a reference to the given float64 and assigns it to the PercentChange field.

func (*Underlying) SetQuoteTime

func (o *Underlying) SetQuoteTime(v int64)

SetQuoteTime gets a reference to the given int64 and assigns it to the QuoteTime field.

func (*Underlying) SetSymbol

func (o *Underlying) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*Underlying) SetTotalVolume

func (o *Underlying) SetTotalVolume(v int64)

SetTotalVolume gets a reference to the given int64 and assigns it to the TotalVolume field.

func (*Underlying) SetTradeTime

func (o *Underlying) SetTradeTime(v int64)

SetTradeTime gets a reference to the given int64 and assigns it to the TradeTime field.

func (Underlying) ToMap

func (o Underlying) ToMap() (map[string]interface{}, error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL