pmargin

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: May 7, 2025 License: MIT Imports: 30 Imported by: 0

README

Go API client for pmargin

OpenAPI specification for Binance exchange - Pmargin API

Overview

This API client was generated by the OpenAPI Generator project.

Please do not edit the generated code manually, but rather regenerate it from OpenXAPI.

  • API version: 0.3.0
  • Package version: 0.3.0

Installation

Put the package under your project folder and add the following in import:

import (
    pmargin "github.com/openxapi/binance-go/pmargin"
)

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Usage

Example

conf := pmargin.NewConfiguration()
client := pmargin.NewAPIClient(conf)
ctx := context.Background()

info, res, err := client.SpotTradingAPI.GetExchangeInfoV3(ctx).Symbol("BTCUSDT").Execute()
if err != nil {
    fmt.Println(err)
}
fmt.Printf("%+v\n", info)
fmt.Printf("%+v\n", res)

Authentication

The API client supports HMAC, RSA and Ed25519 authentication.

The authentication is calculated per request, so you can use different keys for different requests.

HMAC

Example

conf := pmargin.NewConfiguration()
client := pmargin.NewAPIClient(conf)
ctx := context.Background()

// get API key from env
apiKey := os.Getenv("BINANCE_API_KEY")
auth := pmargin.NewAuth(apiKey)
auth.SetSecretKey(os.Getenv("BINANCE_SECRET_KEY"))
ctx, err = auth.ContextWithValue(ctx)
if err != nil {
    fmt.Println(err)
}
// Get current time in millisecond
user, res, err := client.SpotTradingAPI.GetAccountV3(ctx).Timestamp(time.Now().UnixMilli()).Execute()
if err != nil {
    fmt.Println(err)
}
fmt.Printf("%+v\n", user)
fmt.Printf("%+v\n", res)
RSA or Ed25519

Example

conf := pmargin.NewConfiguration()
client := pmargin.NewAPIClient(conf)
ctx := context.Background()

// get API key from env
apiKey := os.Getenv("BINANCE_API_KEY")
auth := pmargin.NewAuth(apiKey)
// Key type will be auto-detected, you can use RSA or Ed25519 key here
auth.PrivateKeyPath = "/local/.keys/binance_api_test_private_key.pem"
ctx, err = auth.ContextWithValue(ctx)
if err != nil {
    fmt.Println(err)
}
// Get current time in millisecond
user, res, err := client.SpotTradingAPI.GetAccountV3(ctx).Timestamp(time.Now().UnixMilli()).Execute()
if err != nil {
    fmt.Println(err)
}
fmt.Printf("%+v\n", user)
fmt.Printf("%+v\n", res)

Configuration

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value pmargin.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), pmargin.ContextServerIndex, 1)

Documentation for API Endpoints

All URIs are relative to https://papi.binance.com

Class Method HTTP request Description
PortfolioMarginAPI CreateAssetCollectionV1 Post /papi/v1/asset-collection Fund Collection by Asset(TRADE)
PortfolioMarginAPI CreateAutoCollectionV1 Post /papi/v1/auto-collection Fund Auto-collection(TRADE)
PortfolioMarginAPI CreateBnbTransferV1 Post /papi/v1/bnb-transfer BNB transfer (TRADE)
PortfolioMarginAPI CreateCmConditionalOrderV1 Post /papi/v1/cm/conditional/order New CM Conditional Order(TRADE)
PortfolioMarginAPI CreateCmLeverageV1 Post /papi/v1/cm/leverage Change CM Initial Leverage (TRADE)
PortfolioMarginAPI CreateCmOrderV1 Post /papi/v1/cm/order New CM Order(TRADE)
PortfolioMarginAPI CreateCmPositionSideDualV1 Post /papi/v1/cm/positionSide/dual Change CM Position Mode(TRADE)
PortfolioMarginAPI CreateListenKeyV1 Post /papi/v1/listenKey Start User Data Stream(USER_STREAM)
PortfolioMarginAPI CreateMarginLoanV1 Post /papi/v1/marginLoan Margin Account Borrow(MARGIN)
PortfolioMarginAPI CreateMarginOrderOcoV1 Post /papi/v1/margin/order/oco Margin Account New OCO(TRADE)
PortfolioMarginAPI CreateMarginOrderV1 Post /papi/v1/margin/order New Margin Order(TRADE)
PortfolioMarginAPI CreateMarginRepayDebtV1 Post /papi/v1/margin/repay-debt Margin Account Repay Debt(TRADE)
PortfolioMarginAPI CreateRepayFuturesNegativeBalanceV1 Post /papi/v1/repay-futures-negative-balance Repay futures Negative Balance(USER_DATA)
PortfolioMarginAPI CreateRepayFuturesSwitchV1 Post /papi/v1/repay-futures-switch Change Auto-repay-futures Status(TRADE)
PortfolioMarginAPI CreateRepayLoanV1 Post /papi/v1/repayLoan Margin Account Repay(MARGIN)
PortfolioMarginAPI CreateUmConditionalOrderV1 Post /papi/v1/um/conditional/order New UM Conditional Order (TRADE)
PortfolioMarginAPI CreateUmFeeBurnV1 Post /papi/v1/um/feeBurn Toggle BNB Burn On UM Futures Trade (TRADE)
PortfolioMarginAPI CreateUmLeverageV1 Post /papi/v1/um/leverage Change UM Initial Leverage(TRADE)
PortfolioMarginAPI CreateUmOrderV1 Post /papi/v1/um/order New UM Order (TRADE)
PortfolioMarginAPI CreateUmPositionSideDualV1 Post /papi/v1/um/positionSide/dual Change UM Position Mode(TRADE)
PortfolioMarginAPI DeleteCmAllOpenOrdersV1 Delete /papi/v1/cm/allOpenOrders Cancel All CM Open Orders(TRADE)
PortfolioMarginAPI DeleteCmConditionalAllOpenOrdersV1 Delete /papi/v1/cm/conditional/allOpenOrders Cancel All CM Open Conditional Orders(TRADE)
PortfolioMarginAPI DeleteCmConditionalOrderV1 Delete /papi/v1/cm/conditional/order Cancel CM Conditional Order(TRADE)
PortfolioMarginAPI DeleteCmOrderV1 Delete /papi/v1/cm/order Cancel CM Order(TRADE)
PortfolioMarginAPI DeleteListenKeyV1 Delete /papi/v1/listenKey Close User Data Stream(USER_STREAM)
PortfolioMarginAPI DeleteMarginAllOpenOrdersV1 Delete /papi/v1/margin/allOpenOrders Cancel Margin Account All Open Orders on a Symbol(TRADE)
PortfolioMarginAPI DeleteMarginOrderListV1 Delete /papi/v1/margin/orderList Cancel Margin Account OCO Orders(TRADE)
PortfolioMarginAPI DeleteMarginOrderV1 Delete /papi/v1/margin/order Cancel Margin Account Order(TRADE)
PortfolioMarginAPI DeleteUmAllOpenOrdersV1 Delete /papi/v1/um/allOpenOrders Cancel All UM Open Orders(TRADE)
PortfolioMarginAPI DeleteUmConditionalAllOpenOrdersV1 Delete /papi/v1/um/conditional/allOpenOrders Cancel All UM Open Conditional Orders (TRADE)
PortfolioMarginAPI DeleteUmConditionalOrderV1 Delete /papi/v1/um/conditional/order Cancel UM Conditional Order(TRADE)
PortfolioMarginAPI DeleteUmOrderV1 Delete /papi/v1/um/order Cancel UM Order(TRADE)
PortfolioMarginAPI GetAccountV1 Get /papi/v1/account Account Information(USER_DATA)
PortfolioMarginAPI GetBalanceV1 Get /papi/v1/balance Account Balance(USER_DATA)
PortfolioMarginAPI GetCmAccountV1 Get /papi/v1/cm/account Get CM Account Detail(USER_DATA)
PortfolioMarginAPI GetCmAdlQuantileV1 Get /papi/v1/cm/adlQuantile CM Position ADL Quantile Estimation(USER_DATA)
PortfolioMarginAPI GetCmAllOrdersV1 Get /papi/v1/cm/allOrders Query All CM Orders (USER_DATA)
PortfolioMarginAPI GetCmCommissionRateV1 Get /papi/v1/cm/commissionRate Get User Commission Rate for CM(USER_DATA)
PortfolioMarginAPI GetCmConditionalAllOrdersV1 Get /papi/v1/cm/conditional/allOrders Query All CM Conditional Orders(USER_DATA)
PortfolioMarginAPI GetCmConditionalOpenOrderV1 Get /papi/v1/cm/conditional/openOrder Query Current CM Open Conditional Order(USER_DATA)
PortfolioMarginAPI GetCmConditionalOpenOrdersV1 Get /papi/v1/cm/conditional/openOrders Query All Current CM Open Conditional Orders (USER_DATA)
PortfolioMarginAPI GetCmConditionalOrderHistoryV1 Get /papi/v1/cm/conditional/orderHistory Query CM Conditional Order History(USER_DATA)
PortfolioMarginAPI GetCmForceOrdersV1 Get /papi/v1/cm/forceOrders Query User's CM Force Orders(USER_DATA)
PortfolioMarginAPI GetCmIncomeV1 Get /papi/v1/cm/income Get CM Income History(USER_DATA)
PortfolioMarginAPI GetCmLeverageBracketV1 Get /papi/v1/cm/leverageBracket CM Notional and Leverage Brackets(USER_DATA)
PortfolioMarginAPI GetCmOpenOrderV1 Get /papi/v1/cm/openOrder Query Current CM Open Order (USER_DATA)
PortfolioMarginAPI GetCmOpenOrdersV1 Get /papi/v1/cm/openOrders Query All Current CM Open Orders(USER_DATA)
PortfolioMarginAPI GetCmOrderAmendmentV1 Get /papi/v1/cm/orderAmendment Query CM Modify Order History(TRADE)
PortfolioMarginAPI GetCmOrderV1 Get /papi/v1/cm/order Query CM Order(USER_DATA)
PortfolioMarginAPI GetCmPositionRiskV1 Get /papi/v1/cm/positionRisk Query CM Position Information(USER_DATA)
PortfolioMarginAPI GetCmPositionSideDualV1 Get /papi/v1/cm/positionSide/dual Get CM Current Position Mode(USER_DATA)
PortfolioMarginAPI GetCmUserTradesV1 Get /papi/v1/cm/userTrades CM Account Trade List(USER_DATA)
PortfolioMarginAPI GetMarginAllOrderListV1 Get /papi/v1/margin/allOrderList Query Margin Account's all OCO (USER_DATA)
PortfolioMarginAPI GetMarginAllOrdersV1 Get /papi/v1/margin/allOrders Query All Margin Account Orders (USER_DATA)
PortfolioMarginAPI GetMarginForceOrdersV1 Get /papi/v1/margin/forceOrders Query User's Margin Force Orders(USER_DATA)
PortfolioMarginAPI GetMarginMarginInterestHistoryV1 Get /papi/v1/margin/marginInterestHistory Get Margin Borrow/Loan Interest History(USER_DATA)
PortfolioMarginAPI GetMarginMarginLoanV1 Get /papi/v1/margin/marginLoan Query Margin Loan Record(USER_DATA)
PortfolioMarginAPI GetMarginMaxBorrowableV1 Get /papi/v1/margin/maxBorrowable Margin Max Borrow(USER_DATA)
PortfolioMarginAPI GetMarginMaxWithdrawV1 Get /papi/v1/margin/maxWithdraw Query Margin Max Withdraw(USER_DATA)
PortfolioMarginAPI GetMarginMyTradesV1 Get /papi/v1/margin/myTrades Margin Account Trade List (USER_DATA)
PortfolioMarginAPI GetMarginOpenOrderListV1 Get /papi/v1/margin/openOrderList Query Margin Account's Open OCO (USER_DATA)
PortfolioMarginAPI GetMarginOpenOrdersV1 Get /papi/v1/margin/openOrders Query Current Margin Open Order (USER_DATA)
PortfolioMarginAPI GetMarginOrderListV1 Get /papi/v1/margin/orderList Query Margin Account's OCO (USER_DATA)
PortfolioMarginAPI GetMarginOrderV1 Get /papi/v1/margin/order Query Margin Account Order (USER_DATA)
PortfolioMarginAPI GetMarginRepayLoanV1 Get /papi/v1/margin/repayLoan Query Margin repay Record(USER_DATA)
PortfolioMarginAPI GetPingV1 Get /papi/v1/ping Test Connectivity
PortfolioMarginAPI GetPortfolioInterestHistoryV1 Get /papi/v1/portfolio/interest-history Query Portfolio Margin Negative Balance Interest History(USER_DATA)
PortfolioMarginAPI GetPortfolioNegativeBalanceExchangeRecordV1 Get /papi/v1/portfolio/negative-balance-exchange-record Query User Negative Balance Auto Exchange Record (USER_DATA)
PortfolioMarginAPI GetRateLimitOrderV1 Get /papi/v1/rateLimit/order Query User Rate Limit (USER_DATA)
PortfolioMarginAPI GetRepayFuturesSwitchV1 Get /papi/v1/repay-futures-switch Get Auto-repay-futures Status(USER_DATA)
PortfolioMarginAPI GetUmAccountConfigV1 Get /papi/v1/um/accountConfig UM Futures Account Configuration(USER_DATA)
PortfolioMarginAPI GetUmAccountV1 Get /papi/v1/um/account Get UM Account Detail(USER_DATA)
PortfolioMarginAPI GetUmAccountV2 Get /papi/v2/um/account Get UM Account Detail V2(USER_DATA)
PortfolioMarginAPI GetUmAdlQuantileV1 Get /papi/v1/um/adlQuantile UM Position ADL Quantile Estimation(USER_DATA)
PortfolioMarginAPI GetUmAllOrdersV1 Get /papi/v1/um/allOrders Query All UM Orders(USER_DATA)
PortfolioMarginAPI GetUmApiTradingStatusV1 Get /papi/v1/um/apiTradingStatus Portfolio Margin UM Trading Quantitative Rules Indicators(USER_DATA)
PortfolioMarginAPI GetUmCommissionRateV1 Get /papi/v1/um/commissionRate Get User Commission Rate for UM(USER_DATA)
PortfolioMarginAPI GetUmConditionalAllOrdersV1 Get /papi/v1/um/conditional/allOrders Query All UM Conditional Orders(USER_DATA)
PortfolioMarginAPI GetUmConditionalOpenOrderV1 Get /papi/v1/um/conditional/openOrder Query Current UM Open Conditional Order(USER_DATA)
PortfolioMarginAPI GetUmConditionalOpenOrdersV1 Get /papi/v1/um/conditional/openOrders Query All Current UM Open Conditional Orders(USER_DATA)
PortfolioMarginAPI GetUmConditionalOrderHistoryV1 Get /papi/v1/um/conditional/orderHistory Query UM Conditional Order History(USER_DATA)
PortfolioMarginAPI GetUmFeeBurnV1 Get /papi/v1/um/feeBurn Get UM Futures BNB Burn Status (USER_DATA)
PortfolioMarginAPI GetUmForceOrdersV1 Get /papi/v1/um/forceOrders Query User's UM Force Orders (USER_DATA)
PortfolioMarginAPI GetUmIncomeAsynIdV1 Get /papi/v1/um/income/asyn/id Get UM Futures Transaction Download Link by Id(USER_DATA)
PortfolioMarginAPI GetUmIncomeAsynV1 Get /papi/v1/um/income/asyn Get Download Id For UM Futures Transaction History (USER_DATA)
PortfolioMarginAPI GetUmIncomeV1 Get /papi/v1/um/income Get UM Income History(USER_DATA)
PortfolioMarginAPI GetUmLeverageBracketV1 Get /papi/v1/um/leverageBracket UM Notional and Leverage Brackets (USER_DATA)
PortfolioMarginAPI GetUmOpenOrderV1 Get /papi/v1/um/openOrder Query Current UM Open Order(USER_DATA)
PortfolioMarginAPI GetUmOpenOrdersV1 Get /papi/v1/um/openOrders Query All Current UM Open Orders(USER_DATA)
PortfolioMarginAPI GetUmOrderAmendmentV1 Get /papi/v1/um/orderAmendment Query UM Modify Order History(TRADE)
PortfolioMarginAPI GetUmOrderAsynIdV1 Get /papi/v1/um/order/asyn/id Get UM Futures Order Download Link by Id(USER_DATA)
PortfolioMarginAPI GetUmOrderAsynV1 Get /papi/v1/um/order/asyn Get Download Id For UM Futures Order History (USER_DATA)
PortfolioMarginAPI GetUmOrderV1 Get /papi/v1/um/order Query UM Order (USER_DATA)
PortfolioMarginAPI GetUmPositionRiskV1 Get /papi/v1/um/positionRisk Query UM Position Information(USER_DATA)
PortfolioMarginAPI GetUmPositionSideDualV1 Get /papi/v1/um/positionSide/dual Get UM Current Position Mode(USER_DATA)
PortfolioMarginAPI GetUmSymbolConfigV1 Get /papi/v1/um/symbolConfig UM Futures Symbol Configuration(USER_DATA)
PortfolioMarginAPI GetUmTradeAsynIdV1 Get /papi/v1/um/trade/asyn/id Get UM Futures Trade Download Link by Id(USER_DATA)
PortfolioMarginAPI GetUmTradeAsynV1 Get /papi/v1/um/trade/asyn Get Download Id For UM Futures Trade History (USER_DATA)
PortfolioMarginAPI GetUmUserTradesV1 Get /papi/v1/um/userTrades UM Account Trade List(USER_DATA)
PortfolioMarginAPI UpdateCmOrderV1 Put /papi/v1/cm/order Modify CM Order(TRADE)
PortfolioMarginAPI UpdateListenKeyV1 Put /papi/v1/listenKey Keepalive User Data Stream (USER_STREAM)
PortfolioMarginAPI UpdateUmOrderV1 Put /papi/v1/um/order Modify UM Order(TRADE)

Documentation For Models

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation

Index

Constants

View Source
const (
	KeyTypeHMAC    KeyType = "HMAC"
	KeyTypeRSA             = "RSA"
	KeyTypeED25519         = "ED25519"
)

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	ContextBinanceAuth = contextKey("binanceAuth")

	// 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")
)

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 {
	PortfolioMarginAPI *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Binance Portfolio Margin API API v0.3.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 APIError

type APIError struct {
	Code *int32  `json:"code,omitempty"`
	Msg  *string `json:"msg,omitempty"`
}

APIError binance API error

func NewAPIError

func NewAPIError() *APIError

NewAPIError instantiates a new APIError 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 NewAPIErrorWithDefaults

func NewAPIErrorWithDefaults() *APIError

NewAPIErrorWithDefaults instantiates a new APIError 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 (*APIError) GetCode

func (o *APIError) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*APIError) GetCodeOk

func (o *APIError) GetCodeOk() (*int32, bool)

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

func (*APIError) GetMsg

func (o *APIError) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*APIError) GetMsgOk

func (o *APIError) GetMsgOk() (*string, bool)

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

func (*APIError) HasCode

func (o *APIError) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*APIError) HasMsg

func (o *APIError) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (APIError) MarshalJSON

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

func (*APIError) SetCode

func (o *APIError) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*APIError) SetMsg

func (o *APIError) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (APIError) ToMap

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

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 ApiCreateAssetCollectionV1Request

type ApiCreateAssetCollectionV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateAssetCollectionV1Request) Asset

func (ApiCreateAssetCollectionV1Request) Execute

func (ApiCreateAssetCollectionV1Request) RecvWindow

func (ApiCreateAssetCollectionV1Request) Timestamp

type ApiCreateAutoCollectionV1Request

type ApiCreateAutoCollectionV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateAutoCollectionV1Request) Execute

func (ApiCreateAutoCollectionV1Request) RecvWindow

func (ApiCreateAutoCollectionV1Request) Timestamp

type ApiCreateBnbTransferV1Request

type ApiCreateBnbTransferV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateBnbTransferV1Request) Amount

func (ApiCreateBnbTransferV1Request) Execute

func (ApiCreateBnbTransferV1Request) RecvWindow

func (ApiCreateBnbTransferV1Request) Timestamp

func (ApiCreateBnbTransferV1Request) TransferSide

type ApiCreateCmConditionalOrderV1Request

type ApiCreateCmConditionalOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateCmConditionalOrderV1Request) ActivationPrice

func (ApiCreateCmConditionalOrderV1Request) CallbackRate

func (ApiCreateCmConditionalOrderV1Request) Execute

func (ApiCreateCmConditionalOrderV1Request) NewClientStrategyId

func (r ApiCreateCmConditionalOrderV1Request) NewClientStrategyId(newClientStrategyId string) ApiCreateCmConditionalOrderV1Request

func (ApiCreateCmConditionalOrderV1Request) PositionSide

func (ApiCreateCmConditionalOrderV1Request) Price

func (ApiCreateCmConditionalOrderV1Request) PriceProtect

func (ApiCreateCmConditionalOrderV1Request) Quantity

func (ApiCreateCmConditionalOrderV1Request) RecvWindow

func (ApiCreateCmConditionalOrderV1Request) ReduceOnly

func (ApiCreateCmConditionalOrderV1Request) Side

func (ApiCreateCmConditionalOrderV1Request) StopPrice

func (ApiCreateCmConditionalOrderV1Request) StrategyType

func (ApiCreateCmConditionalOrderV1Request) Symbol

func (ApiCreateCmConditionalOrderV1Request) TimeInForce

func (ApiCreateCmConditionalOrderV1Request) Timestamp

func (ApiCreateCmConditionalOrderV1Request) WorkingType

type ApiCreateCmLeverageV1Request

type ApiCreateCmLeverageV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateCmLeverageV1Request) Execute

func (ApiCreateCmLeverageV1Request) Leverage

func (ApiCreateCmLeverageV1Request) RecvWindow

func (ApiCreateCmLeverageV1Request) Symbol

func (ApiCreateCmLeverageV1Request) Timestamp

type ApiCreateCmOrderV1Request

type ApiCreateCmOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateCmOrderV1Request) Execute

func (ApiCreateCmOrderV1Request) NewClientOrderId

func (r ApiCreateCmOrderV1Request) NewClientOrderId(newClientOrderId string) ApiCreateCmOrderV1Request

func (ApiCreateCmOrderV1Request) NewOrderRespType

func (r ApiCreateCmOrderV1Request) NewOrderRespType(newOrderRespType string) ApiCreateCmOrderV1Request

func (ApiCreateCmOrderV1Request) PositionSide

func (r ApiCreateCmOrderV1Request) PositionSide(positionSide string) ApiCreateCmOrderV1Request

func (ApiCreateCmOrderV1Request) Price

func (ApiCreateCmOrderV1Request) PriceMatch

func (ApiCreateCmOrderV1Request) Quantity

func (ApiCreateCmOrderV1Request) RecvWindow

func (ApiCreateCmOrderV1Request) ReduceOnly

func (ApiCreateCmOrderV1Request) Side

func (ApiCreateCmOrderV1Request) Symbol

func (ApiCreateCmOrderV1Request) TimeInForce

func (r ApiCreateCmOrderV1Request) TimeInForce(timeInForce string) ApiCreateCmOrderV1Request

func (ApiCreateCmOrderV1Request) Timestamp

func (ApiCreateCmOrderV1Request) Type_

type ApiCreateCmPositionSideDualV1Request

type ApiCreateCmPositionSideDualV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateCmPositionSideDualV1Request) DualSidePosition

func (ApiCreateCmPositionSideDualV1Request) Execute

func (ApiCreateCmPositionSideDualV1Request) RecvWindow

func (ApiCreateCmPositionSideDualV1Request) Timestamp

type ApiCreateListenKeyV1Request

type ApiCreateListenKeyV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateListenKeyV1Request) Execute

type ApiCreateMarginLoanV1Request

type ApiCreateMarginLoanV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateMarginLoanV1Request) Amount

func (ApiCreateMarginLoanV1Request) Asset

func (ApiCreateMarginLoanV1Request) Execute

func (ApiCreateMarginLoanV1Request) RecvWindow

func (ApiCreateMarginLoanV1Request) Timestamp

type ApiCreateMarginOrderOcoV1Request

type ApiCreateMarginOrderOcoV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateMarginOrderOcoV1Request) Execute

func (ApiCreateMarginOrderOcoV1Request) LimitClientOrderId

func (r ApiCreateMarginOrderOcoV1Request) LimitClientOrderId(limitClientOrderId string) ApiCreateMarginOrderOcoV1Request

func (ApiCreateMarginOrderOcoV1Request) LimitIcebergQty

func (ApiCreateMarginOrderOcoV1Request) ListClientOrderId

func (r ApiCreateMarginOrderOcoV1Request) ListClientOrderId(listClientOrderId string) ApiCreateMarginOrderOcoV1Request

func (ApiCreateMarginOrderOcoV1Request) NewOrderRespType

func (r ApiCreateMarginOrderOcoV1Request) NewOrderRespType(newOrderRespType string) ApiCreateMarginOrderOcoV1Request

func (ApiCreateMarginOrderOcoV1Request) Price

func (ApiCreateMarginOrderOcoV1Request) Quantity

func (ApiCreateMarginOrderOcoV1Request) RecvWindow

func (ApiCreateMarginOrderOcoV1Request) Side

func (ApiCreateMarginOrderOcoV1Request) SideEffectType

func (ApiCreateMarginOrderOcoV1Request) StopClientOrderId

func (r ApiCreateMarginOrderOcoV1Request) StopClientOrderId(stopClientOrderId string) ApiCreateMarginOrderOcoV1Request

func (ApiCreateMarginOrderOcoV1Request) StopIcebergQty

func (ApiCreateMarginOrderOcoV1Request) StopLimitPrice

func (ApiCreateMarginOrderOcoV1Request) StopLimitTimeInForce

func (r ApiCreateMarginOrderOcoV1Request) StopLimitTimeInForce(stopLimitTimeInForce string) ApiCreateMarginOrderOcoV1Request

func (ApiCreateMarginOrderOcoV1Request) StopPrice

func (ApiCreateMarginOrderOcoV1Request) Symbol

func (ApiCreateMarginOrderOcoV1Request) Timestamp

type ApiCreateMarginOrderV1Request

type ApiCreateMarginOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateMarginOrderV1Request) AutoRepayAtCancel

func (r ApiCreateMarginOrderV1Request) AutoRepayAtCancel(autoRepayAtCancel bool) ApiCreateMarginOrderV1Request

func (ApiCreateMarginOrderV1Request) Execute

func (ApiCreateMarginOrderV1Request) IcebergQty

func (ApiCreateMarginOrderV1Request) NewClientOrderId

func (r ApiCreateMarginOrderV1Request) NewClientOrderId(newClientOrderId string) ApiCreateMarginOrderV1Request

func (ApiCreateMarginOrderV1Request) NewOrderRespType

func (r ApiCreateMarginOrderV1Request) NewOrderRespType(newOrderRespType string) ApiCreateMarginOrderV1Request

func (ApiCreateMarginOrderV1Request) Price

func (ApiCreateMarginOrderV1Request) Quantity

func (ApiCreateMarginOrderV1Request) QuoteOrderQty

func (ApiCreateMarginOrderV1Request) RecvWindow

func (ApiCreateMarginOrderV1Request) SelfTradePreventionMode

func (r ApiCreateMarginOrderV1Request) SelfTradePreventionMode(selfTradePreventionMode string) ApiCreateMarginOrderV1Request

func (ApiCreateMarginOrderV1Request) Side

func (ApiCreateMarginOrderV1Request) SideEffectType

func (r ApiCreateMarginOrderV1Request) SideEffectType(sideEffectType string) ApiCreateMarginOrderV1Request

func (ApiCreateMarginOrderV1Request) StopPrice

func (ApiCreateMarginOrderV1Request) Symbol

func (ApiCreateMarginOrderV1Request) TimeInForce

func (ApiCreateMarginOrderV1Request) Timestamp

func (ApiCreateMarginOrderV1Request) Type_

type ApiCreateMarginRepayDebtV1Request

type ApiCreateMarginRepayDebtV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateMarginRepayDebtV1Request) Amount

func (ApiCreateMarginRepayDebtV1Request) Asset

func (ApiCreateMarginRepayDebtV1Request) Execute

func (ApiCreateMarginRepayDebtV1Request) RecvWindow

func (ApiCreateMarginRepayDebtV1Request) SpecifyRepayAssets

func (r ApiCreateMarginRepayDebtV1Request) SpecifyRepayAssets(specifyRepayAssets string) ApiCreateMarginRepayDebtV1Request

func (ApiCreateMarginRepayDebtV1Request) Timestamp

type ApiCreateRepayFuturesNegativeBalanceV1Request

type ApiCreateRepayFuturesNegativeBalanceV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateRepayFuturesNegativeBalanceV1Request) Execute

func (ApiCreateRepayFuturesNegativeBalanceV1Request) RecvWindow

func (ApiCreateRepayFuturesNegativeBalanceV1Request) Timestamp

type ApiCreateRepayFuturesSwitchV1Request

type ApiCreateRepayFuturesSwitchV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateRepayFuturesSwitchV1Request) AutoRepay

func (ApiCreateRepayFuturesSwitchV1Request) Execute

func (ApiCreateRepayFuturesSwitchV1Request) RecvWindow

func (ApiCreateRepayFuturesSwitchV1Request) Timestamp

type ApiCreateRepayLoanV1Request

type ApiCreateRepayLoanV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateRepayLoanV1Request) Amount

func (ApiCreateRepayLoanV1Request) Asset

func (ApiCreateRepayLoanV1Request) Execute

func (ApiCreateRepayLoanV1Request) RecvWindow

func (ApiCreateRepayLoanV1Request) Timestamp

type ApiCreateUmConditionalOrderV1Request

type ApiCreateUmConditionalOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateUmConditionalOrderV1Request) ActivationPrice

func (ApiCreateUmConditionalOrderV1Request) CallbackRate

func (ApiCreateUmConditionalOrderV1Request) Execute

func (ApiCreateUmConditionalOrderV1Request) GoodTillDate

func (ApiCreateUmConditionalOrderV1Request) NewClientStrategyId

func (r ApiCreateUmConditionalOrderV1Request) NewClientStrategyId(newClientStrategyId string) ApiCreateUmConditionalOrderV1Request

func (ApiCreateUmConditionalOrderV1Request) PositionSide

func (ApiCreateUmConditionalOrderV1Request) Price

func (ApiCreateUmConditionalOrderV1Request) PriceMatch

func (ApiCreateUmConditionalOrderV1Request) PriceProtect

func (ApiCreateUmConditionalOrderV1Request) Quantity

func (ApiCreateUmConditionalOrderV1Request) RecvWindow

func (ApiCreateUmConditionalOrderV1Request) ReduceOnly

func (ApiCreateUmConditionalOrderV1Request) SelfTradePreventionMode

func (r ApiCreateUmConditionalOrderV1Request) SelfTradePreventionMode(selfTradePreventionMode string) ApiCreateUmConditionalOrderV1Request

func (ApiCreateUmConditionalOrderV1Request) Side

func (ApiCreateUmConditionalOrderV1Request) StopPrice

func (ApiCreateUmConditionalOrderV1Request) StrategyType

func (ApiCreateUmConditionalOrderV1Request) Symbol

func (ApiCreateUmConditionalOrderV1Request) TimeInForce

func (ApiCreateUmConditionalOrderV1Request) Timestamp

func (ApiCreateUmConditionalOrderV1Request) WorkingType

type ApiCreateUmFeeBurnV1Request

type ApiCreateUmFeeBurnV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateUmFeeBurnV1Request) Execute

func (ApiCreateUmFeeBurnV1Request) FeeBurn

func (ApiCreateUmFeeBurnV1Request) RecvWindow

func (ApiCreateUmFeeBurnV1Request) Timestamp

type ApiCreateUmLeverageV1Request

type ApiCreateUmLeverageV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateUmLeverageV1Request) Execute

func (ApiCreateUmLeverageV1Request) Leverage

func (ApiCreateUmLeverageV1Request) RecvWindow

func (ApiCreateUmLeverageV1Request) Symbol

func (ApiCreateUmLeverageV1Request) Timestamp

type ApiCreateUmOrderV1Request

type ApiCreateUmOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateUmOrderV1Request) Execute

func (ApiCreateUmOrderV1Request) GoodTillDate

func (r ApiCreateUmOrderV1Request) GoodTillDate(goodTillDate int64) ApiCreateUmOrderV1Request

func (ApiCreateUmOrderV1Request) NewClientOrderId

func (r ApiCreateUmOrderV1Request) NewClientOrderId(newClientOrderId string) ApiCreateUmOrderV1Request

func (ApiCreateUmOrderV1Request) NewOrderRespType

func (r ApiCreateUmOrderV1Request) NewOrderRespType(newOrderRespType string) ApiCreateUmOrderV1Request

func (ApiCreateUmOrderV1Request) PositionSide

func (r ApiCreateUmOrderV1Request) PositionSide(positionSide string) ApiCreateUmOrderV1Request

func (ApiCreateUmOrderV1Request) Price

func (ApiCreateUmOrderV1Request) PriceMatch

func (ApiCreateUmOrderV1Request) Quantity

func (ApiCreateUmOrderV1Request) RecvWindow

func (ApiCreateUmOrderV1Request) ReduceOnly

func (ApiCreateUmOrderV1Request) SelfTradePreventionMode

func (r ApiCreateUmOrderV1Request) SelfTradePreventionMode(selfTradePreventionMode string) ApiCreateUmOrderV1Request

func (ApiCreateUmOrderV1Request) Side

func (ApiCreateUmOrderV1Request) Symbol

func (ApiCreateUmOrderV1Request) TimeInForce

func (r ApiCreateUmOrderV1Request) TimeInForce(timeInForce string) ApiCreateUmOrderV1Request

func (ApiCreateUmOrderV1Request) Timestamp

func (ApiCreateUmOrderV1Request) Type_

type ApiCreateUmPositionSideDualV1Request

type ApiCreateUmPositionSideDualV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiCreateUmPositionSideDualV1Request) DualSidePosition

func (ApiCreateUmPositionSideDualV1Request) Execute

func (ApiCreateUmPositionSideDualV1Request) RecvWindow

func (ApiCreateUmPositionSideDualV1Request) Timestamp

type ApiDeleteCmAllOpenOrdersV1Request

type ApiDeleteCmAllOpenOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteCmAllOpenOrdersV1Request) Execute

func (ApiDeleteCmAllOpenOrdersV1Request) RecvWindow

func (ApiDeleteCmAllOpenOrdersV1Request) Symbol

func (ApiDeleteCmAllOpenOrdersV1Request) Timestamp

type ApiDeleteCmConditionalAllOpenOrdersV1Request

type ApiDeleteCmConditionalAllOpenOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteCmConditionalAllOpenOrdersV1Request) Execute

func (ApiDeleteCmConditionalAllOpenOrdersV1Request) RecvWindow

func (ApiDeleteCmConditionalAllOpenOrdersV1Request) Symbol

func (ApiDeleteCmConditionalAllOpenOrdersV1Request) Timestamp

type ApiDeleteCmConditionalOrderV1Request

type ApiDeleteCmConditionalOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteCmConditionalOrderV1Request) Execute

func (ApiDeleteCmConditionalOrderV1Request) NewClientStrategyId

func (r ApiDeleteCmConditionalOrderV1Request) NewClientStrategyId(newClientStrategyId string) ApiDeleteCmConditionalOrderV1Request

func (ApiDeleteCmConditionalOrderV1Request) RecvWindow

func (ApiDeleteCmConditionalOrderV1Request) StrategyId

func (ApiDeleteCmConditionalOrderV1Request) Symbol

func (ApiDeleteCmConditionalOrderV1Request) Timestamp

type ApiDeleteCmOrderV1Request

type ApiDeleteCmOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteCmOrderV1Request) Execute

func (ApiDeleteCmOrderV1Request) OrderId

func (ApiDeleteCmOrderV1Request) OrigClientOrderId

func (r ApiDeleteCmOrderV1Request) OrigClientOrderId(origClientOrderId string) ApiDeleteCmOrderV1Request

func (ApiDeleteCmOrderV1Request) RecvWindow

func (ApiDeleteCmOrderV1Request) Symbol

func (ApiDeleteCmOrderV1Request) Timestamp

type ApiDeleteListenKeyV1Request

type ApiDeleteListenKeyV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteListenKeyV1Request) Execute

func (r ApiDeleteListenKeyV1Request) Execute() (map[string]interface{}, *http.Response, error)

type ApiDeleteMarginAllOpenOrdersV1Request

type ApiDeleteMarginAllOpenOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteMarginAllOpenOrdersV1Request) Execute

func (ApiDeleteMarginAllOpenOrdersV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiDeleteMarginAllOpenOrdersV1Request) Symbol

func (ApiDeleteMarginAllOpenOrdersV1Request) Timestamp

type ApiDeleteMarginOrderListV1Request

type ApiDeleteMarginOrderListV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteMarginOrderListV1Request) Execute

func (ApiDeleteMarginOrderListV1Request) ListClientOrderId

func (r ApiDeleteMarginOrderListV1Request) ListClientOrderId(listClientOrderId string) ApiDeleteMarginOrderListV1Request

Either `orderListId` or `listClientOrderId` must be provided

func (ApiDeleteMarginOrderListV1Request) NewClientOrderId

func (r ApiDeleteMarginOrderListV1Request) NewClientOrderId(newClientOrderId string) ApiDeleteMarginOrderListV1Request

Used to uniquely identify this cancel. Automatically generated by default

func (ApiDeleteMarginOrderListV1Request) OrderListId

Either `orderListId` or `listClientOrderId` must be provided

func (ApiDeleteMarginOrderListV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiDeleteMarginOrderListV1Request) Symbol

func (ApiDeleteMarginOrderListV1Request) Timestamp

type ApiDeleteMarginOrderV1Request

type ApiDeleteMarginOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteMarginOrderV1Request) Execute

func (ApiDeleteMarginOrderV1Request) NewClientOrderId

func (r ApiDeleteMarginOrderV1Request) NewClientOrderId(newClientOrderId string) ApiDeleteMarginOrderV1Request

Used to uniquely identify this cancel. Automatically generated by default.

func (ApiDeleteMarginOrderV1Request) OrderId

func (ApiDeleteMarginOrderV1Request) OrigClientOrderId

func (r ApiDeleteMarginOrderV1Request) OrigClientOrderId(origClientOrderId string) ApiDeleteMarginOrderV1Request

func (ApiDeleteMarginOrderV1Request) RecvWindow

The value cannot be greater than `60000`

func (ApiDeleteMarginOrderV1Request) Symbol

func (ApiDeleteMarginOrderV1Request) Timestamp

type ApiDeleteUmAllOpenOrdersV1Request

type ApiDeleteUmAllOpenOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteUmAllOpenOrdersV1Request) Execute

func (ApiDeleteUmAllOpenOrdersV1Request) RecvWindow

func (ApiDeleteUmAllOpenOrdersV1Request) Symbol

func (ApiDeleteUmAllOpenOrdersV1Request) Timestamp

type ApiDeleteUmConditionalAllOpenOrdersV1Request

type ApiDeleteUmConditionalAllOpenOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteUmConditionalAllOpenOrdersV1Request) Execute

func (ApiDeleteUmConditionalAllOpenOrdersV1Request) RecvWindow

func (ApiDeleteUmConditionalAllOpenOrdersV1Request) Symbol

func (ApiDeleteUmConditionalAllOpenOrdersV1Request) Timestamp

type ApiDeleteUmConditionalOrderV1Request

type ApiDeleteUmConditionalOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteUmConditionalOrderV1Request) Execute

func (ApiDeleteUmConditionalOrderV1Request) NewClientStrategyId

func (r ApiDeleteUmConditionalOrderV1Request) NewClientStrategyId(newClientStrategyId string) ApiDeleteUmConditionalOrderV1Request

func (ApiDeleteUmConditionalOrderV1Request) RecvWindow

func (ApiDeleteUmConditionalOrderV1Request) StrategyId

func (ApiDeleteUmConditionalOrderV1Request) Symbol

func (ApiDeleteUmConditionalOrderV1Request) Timestamp

type ApiDeleteUmOrderV1Request

type ApiDeleteUmOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteUmOrderV1Request) Execute

func (ApiDeleteUmOrderV1Request) OrderId

func (ApiDeleteUmOrderV1Request) OrigClientOrderId

func (r ApiDeleteUmOrderV1Request) OrigClientOrderId(origClientOrderId string) ApiDeleteUmOrderV1Request

func (ApiDeleteUmOrderV1Request) RecvWindow

func (ApiDeleteUmOrderV1Request) Symbol

func (ApiDeleteUmOrderV1Request) Timestamp

type ApiGetAccountV1Request

type ApiGetAccountV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetAccountV1Request) Execute

func (ApiGetAccountV1Request) RecvWindow

func (r ApiGetAccountV1Request) RecvWindow(recvWindow int64) ApiGetAccountV1Request

func (ApiGetAccountV1Request) Timestamp

func (r ApiGetAccountV1Request) Timestamp(timestamp int64) ApiGetAccountV1Request

type ApiGetBalanceV1Request

type ApiGetBalanceV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetBalanceV1Request) Asset

func (ApiGetBalanceV1Request) Execute

func (ApiGetBalanceV1Request) RecvWindow

func (r ApiGetBalanceV1Request) RecvWindow(recvWindow int64) ApiGetBalanceV1Request

func (ApiGetBalanceV1Request) Timestamp

func (r ApiGetBalanceV1Request) Timestamp(timestamp int64) ApiGetBalanceV1Request

type ApiGetCmAccountV1Request

type ApiGetCmAccountV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmAccountV1Request) Execute

func (ApiGetCmAccountV1Request) RecvWindow

func (r ApiGetCmAccountV1Request) RecvWindow(recvWindow int64) ApiGetCmAccountV1Request

func (ApiGetCmAccountV1Request) Timestamp

type ApiGetCmAdlQuantileV1Request

type ApiGetCmAdlQuantileV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmAdlQuantileV1Request) Execute

type ApiGetCmAllOrdersV1Request

type ApiGetCmAllOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmAllOrdersV1Request) EndTime

func (ApiGetCmAllOrdersV1Request) Execute

func (ApiGetCmAllOrdersV1Request) Limit

Default 50; max 100.

func (ApiGetCmAllOrdersV1Request) OrderId

func (ApiGetCmAllOrdersV1Request) Pair

func (ApiGetCmAllOrdersV1Request) RecvWindow

func (ApiGetCmAllOrdersV1Request) StartTime

func (ApiGetCmAllOrdersV1Request) Symbol

func (ApiGetCmAllOrdersV1Request) Timestamp

type ApiGetCmCommissionRateV1Request

type ApiGetCmCommissionRateV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmCommissionRateV1Request) Execute

func (ApiGetCmCommissionRateV1Request) RecvWindow

func (ApiGetCmCommissionRateV1Request) Symbol

func (ApiGetCmCommissionRateV1Request) Timestamp

type ApiGetCmConditionalAllOrdersV1Request

type ApiGetCmConditionalAllOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmConditionalAllOrdersV1Request) EndTime

func (ApiGetCmConditionalAllOrdersV1Request) Execute

func (ApiGetCmConditionalAllOrdersV1Request) Limit

Default 500; max 1000.

func (ApiGetCmConditionalAllOrdersV1Request) RecvWindow

func (ApiGetCmConditionalAllOrdersV1Request) StartTime

func (ApiGetCmConditionalAllOrdersV1Request) StrategyId

func (ApiGetCmConditionalAllOrdersV1Request) Symbol

func (ApiGetCmConditionalAllOrdersV1Request) Timestamp

type ApiGetCmConditionalOpenOrderV1Request

type ApiGetCmConditionalOpenOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmConditionalOpenOrderV1Request) Execute

func (ApiGetCmConditionalOpenOrderV1Request) NewClientStrategyId

func (r ApiGetCmConditionalOpenOrderV1Request) NewClientStrategyId(newClientStrategyId string) ApiGetCmConditionalOpenOrderV1Request

func (ApiGetCmConditionalOpenOrderV1Request) RecvWindow

func (ApiGetCmConditionalOpenOrderV1Request) StrategyId

func (ApiGetCmConditionalOpenOrderV1Request) Symbol

func (ApiGetCmConditionalOpenOrderV1Request) Timestamp

type ApiGetCmConditionalOpenOrdersV1Request

type ApiGetCmConditionalOpenOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmConditionalOpenOrdersV1Request) Execute

func (ApiGetCmConditionalOpenOrdersV1Request) RecvWindow

func (ApiGetCmConditionalOpenOrdersV1Request) Symbol

func (ApiGetCmConditionalOpenOrdersV1Request) Timestamp

type ApiGetCmConditionalOrderHistoryV1Request

type ApiGetCmConditionalOrderHistoryV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmConditionalOrderHistoryV1Request) Execute

func (ApiGetCmConditionalOrderHistoryV1Request) NewClientStrategyId

func (ApiGetCmConditionalOrderHistoryV1Request) RecvWindow

func (ApiGetCmConditionalOrderHistoryV1Request) StrategyId

func (ApiGetCmConditionalOrderHistoryV1Request) Symbol

func (ApiGetCmConditionalOrderHistoryV1Request) Timestamp

type ApiGetCmForceOrdersV1Request

type ApiGetCmForceOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmForceOrdersV1Request) AutoCloseType

func (r ApiGetCmForceOrdersV1Request) AutoCloseType(autoCloseType string) ApiGetCmForceOrdersV1Request

"LIQUIDATION" for liquidation orders, "ADL" for ADL orders.

func (ApiGetCmForceOrdersV1Request) EndTime

func (ApiGetCmForceOrdersV1Request) Execute

func (ApiGetCmForceOrdersV1Request) Limit

Default 50; max 100.

func (ApiGetCmForceOrdersV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetCmForceOrdersV1Request) StartTime

func (ApiGetCmForceOrdersV1Request) Symbol

func (ApiGetCmForceOrdersV1Request) Timestamp

type ApiGetCmIncomeV1Request

type ApiGetCmIncomeV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmIncomeV1Request) EndTime

Timestamp in ms to get funding until INCLUSIVE.

func (ApiGetCmIncomeV1Request) Execute

func (ApiGetCmIncomeV1Request) IncomeType

func (r ApiGetCmIncomeV1Request) IncomeType(incomeType string) ApiGetCmIncomeV1Request

"TRANSFER","WELCOME_BONUS", "FUNDING_FEE", "REALIZED_PNL", "COMMISSION", "INSURANCE_CLEAR", and "DELIVERED_SETTELMENT"

func (ApiGetCmIncomeV1Request) Limit

Default 100; max 1000

func (ApiGetCmIncomeV1Request) Page

func (ApiGetCmIncomeV1Request) RecvWindow

func (r ApiGetCmIncomeV1Request) RecvWindow(recvWindow int64) ApiGetCmIncomeV1Request

func (ApiGetCmIncomeV1Request) StartTime

func (r ApiGetCmIncomeV1Request) StartTime(startTime int64) ApiGetCmIncomeV1Request

Timestamp in ms to get funding from INCLUSIVE.

func (ApiGetCmIncomeV1Request) Symbol

func (ApiGetCmIncomeV1Request) Timestamp

func (r ApiGetCmIncomeV1Request) Timestamp(timestamp int64) ApiGetCmIncomeV1Request

type ApiGetCmLeverageBracketV1Request

type ApiGetCmLeverageBracketV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmLeverageBracketV1Request) Execute

func (ApiGetCmLeverageBracketV1Request) RecvWindow

func (ApiGetCmLeverageBracketV1Request) Symbol

func (ApiGetCmLeverageBracketV1Request) Timestamp

type ApiGetCmOpenOrderV1Request

type ApiGetCmOpenOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmOpenOrderV1Request) Execute

func (ApiGetCmOpenOrderV1Request) OrderId

func (ApiGetCmOpenOrderV1Request) OrigClientOrderId

func (r ApiGetCmOpenOrderV1Request) OrigClientOrderId(origClientOrderId string) ApiGetCmOpenOrderV1Request

func (ApiGetCmOpenOrderV1Request) RecvWindow

func (ApiGetCmOpenOrderV1Request) Symbol

func (ApiGetCmOpenOrderV1Request) Timestamp

type ApiGetCmOpenOrdersV1Request

type ApiGetCmOpenOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmOpenOrdersV1Request) Execute

func (ApiGetCmOpenOrdersV1Request) Pair

func (ApiGetCmOpenOrdersV1Request) RecvWindow

func (ApiGetCmOpenOrdersV1Request) Symbol

func (ApiGetCmOpenOrdersV1Request) Timestamp

type ApiGetCmOrderAmendmentV1Request

type ApiGetCmOrderAmendmentV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmOrderAmendmentV1Request) EndTime

Timestamp in ms to get modification history until INCLUSIVE

func (ApiGetCmOrderAmendmentV1Request) Execute

func (ApiGetCmOrderAmendmentV1Request) Limit

Default 50, max 100

func (ApiGetCmOrderAmendmentV1Request) OrderId

func (ApiGetCmOrderAmendmentV1Request) OrigClientOrderId

func (r ApiGetCmOrderAmendmentV1Request) OrigClientOrderId(origClientOrderId string) ApiGetCmOrderAmendmentV1Request

func (ApiGetCmOrderAmendmentV1Request) RecvWindow

func (ApiGetCmOrderAmendmentV1Request) StartTime

Timestamp in ms to get modification history from INCLUSIVE

func (ApiGetCmOrderAmendmentV1Request) Symbol

func (ApiGetCmOrderAmendmentV1Request) Timestamp

type ApiGetCmOrderV1Request

type ApiGetCmOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmOrderV1Request) Execute

func (ApiGetCmOrderV1Request) OrderId

func (ApiGetCmOrderV1Request) OrigClientOrderId

func (r ApiGetCmOrderV1Request) OrigClientOrderId(origClientOrderId string) ApiGetCmOrderV1Request

func (ApiGetCmOrderV1Request) RecvWindow

func (r ApiGetCmOrderV1Request) RecvWindow(recvWindow int64) ApiGetCmOrderV1Request

func (ApiGetCmOrderV1Request) Symbol

func (ApiGetCmOrderV1Request) Timestamp

func (r ApiGetCmOrderV1Request) Timestamp(timestamp int64) ApiGetCmOrderV1Request

type ApiGetCmPositionRiskV1Request

type ApiGetCmPositionRiskV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmPositionRiskV1Request) Execute

func (ApiGetCmPositionRiskV1Request) MarginAsset

func (ApiGetCmPositionRiskV1Request) Pair

func (ApiGetCmPositionRiskV1Request) RecvWindow

func (ApiGetCmPositionRiskV1Request) Timestamp

type ApiGetCmPositionSideDualV1Request

type ApiGetCmPositionSideDualV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmPositionSideDualV1Request) Execute

func (ApiGetCmPositionSideDualV1Request) RecvWindow

func (ApiGetCmPositionSideDualV1Request) Timestamp

type ApiGetCmUserTradesV1Request

type ApiGetCmUserTradesV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetCmUserTradesV1Request) EndTime

func (ApiGetCmUserTradesV1Request) Execute

func (ApiGetCmUserTradesV1Request) FromId

Trade id to fetch from. Default gets most recent trades.

func (ApiGetCmUserTradesV1Request) Limit

Default 50; max 1000.

func (ApiGetCmUserTradesV1Request) Pair

func (ApiGetCmUserTradesV1Request) RecvWindow

func (ApiGetCmUserTradesV1Request) StartTime

func (ApiGetCmUserTradesV1Request) Symbol

func (ApiGetCmUserTradesV1Request) Timestamp

type ApiGetMarginAllOrderListV1Request

type ApiGetMarginAllOrderListV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginAllOrderListV1Request) EndTime

func (ApiGetMarginAllOrderListV1Request) Execute

func (ApiGetMarginAllOrderListV1Request) FromId

If supplied, neither startTime or endTime can be provided

func (ApiGetMarginAllOrderListV1Request) Limit

Default 500; max 500.

func (ApiGetMarginAllOrderListV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetMarginAllOrderListV1Request) StartTime

func (ApiGetMarginAllOrderListV1Request) Timestamp

type ApiGetMarginAllOrdersV1Request

type ApiGetMarginAllOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginAllOrdersV1Request) EndTime

func (ApiGetMarginAllOrdersV1Request) Execute

func (ApiGetMarginAllOrdersV1Request) Limit

Default 500; max 500.

func (ApiGetMarginAllOrdersV1Request) OrderId

func (ApiGetMarginAllOrdersV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetMarginAllOrdersV1Request) StartTime

func (ApiGetMarginAllOrdersV1Request) Symbol

func (ApiGetMarginAllOrdersV1Request) Timestamp

type ApiGetMarginForceOrdersV1Request

type ApiGetMarginForceOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginForceOrdersV1Request) Current

Currently querying page. Start from 1. Default:1

func (ApiGetMarginForceOrdersV1Request) EndTime

func (ApiGetMarginForceOrdersV1Request) Execute

func (ApiGetMarginForceOrdersV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetMarginForceOrdersV1Request) Size

Default:10 Max:100

func (ApiGetMarginForceOrdersV1Request) StartTime

func (ApiGetMarginForceOrdersV1Request) Timestamp

type ApiGetMarginMarginInterestHistoryV1Request

type ApiGetMarginMarginInterestHistoryV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginMarginInterestHistoryV1Request) Archived

Default: `false`. Set to `true` for archived data from 6 months ago

func (ApiGetMarginMarginInterestHistoryV1Request) Asset

func (ApiGetMarginMarginInterestHistoryV1Request) Current

Currently querying page. Start from 1. Default:1

func (ApiGetMarginMarginInterestHistoryV1Request) EndTime

func (ApiGetMarginMarginInterestHistoryV1Request) Execute

func (ApiGetMarginMarginInterestHistoryV1Request) RecvWindow

The value cannot be greater than `60000`

func (ApiGetMarginMarginInterestHistoryV1Request) Size

Default:10 Max:100

func (ApiGetMarginMarginInterestHistoryV1Request) StartTime

func (ApiGetMarginMarginInterestHistoryV1Request) Timestamp

type ApiGetMarginMarginLoanV1Request

type ApiGetMarginMarginLoanV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginMarginLoanV1Request) Archived

Default: `false`. Set to `true` for archived data from 6 months ago

func (ApiGetMarginMarginLoanV1Request) Asset

func (ApiGetMarginMarginLoanV1Request) Current

Currently querying page. Start from 1. Default:1

func (ApiGetMarginMarginLoanV1Request) EndTime

func (ApiGetMarginMarginLoanV1Request) Execute

func (ApiGetMarginMarginLoanV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetMarginMarginLoanV1Request) Size

Default:10 Max:100

func (ApiGetMarginMarginLoanV1Request) StartTime

func (ApiGetMarginMarginLoanV1Request) Timestamp

func (ApiGetMarginMarginLoanV1Request) TxId

the `tranId` in `POST/papi/v1/marginLoan`

type ApiGetMarginMaxBorrowableV1Request

type ApiGetMarginMaxBorrowableV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginMaxBorrowableV1Request) Asset

func (ApiGetMarginMaxBorrowableV1Request) Execute

func (ApiGetMarginMaxBorrowableV1Request) RecvWindow

The value cannot be greater than `60000`

func (ApiGetMarginMaxBorrowableV1Request) Timestamp

type ApiGetMarginMaxWithdrawV1Request

type ApiGetMarginMaxWithdrawV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginMaxWithdrawV1Request) Asset

func (ApiGetMarginMaxWithdrawV1Request) Execute

func (ApiGetMarginMaxWithdrawV1Request) RecvWindow

The value cannot be greater than `60000`

func (ApiGetMarginMaxWithdrawV1Request) Timestamp

type ApiGetMarginMyTradesV1Request

type ApiGetMarginMyTradesV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginMyTradesV1Request) EndTime

func (ApiGetMarginMyTradesV1Request) Execute

func (ApiGetMarginMyTradesV1Request) FromId

TradeId to fetch from. Default gets most recent trades.

func (ApiGetMarginMyTradesV1Request) Limit

Default 500; max 1000.

func (ApiGetMarginMyTradesV1Request) OrderId

func (ApiGetMarginMyTradesV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetMarginMyTradesV1Request) StartTime

func (ApiGetMarginMyTradesV1Request) Symbol

func (ApiGetMarginMyTradesV1Request) Timestamp

type ApiGetMarginOpenOrderListV1Request

type ApiGetMarginOpenOrderListV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginOpenOrderListV1Request) Execute

func (ApiGetMarginOpenOrderListV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetMarginOpenOrderListV1Request) Timestamp

type ApiGetMarginOpenOrdersV1Request

type ApiGetMarginOpenOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginOpenOrdersV1Request) Execute

func (ApiGetMarginOpenOrdersV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetMarginOpenOrdersV1Request) Symbol

func (ApiGetMarginOpenOrdersV1Request) Timestamp

type ApiGetMarginOrderListV1Request

type ApiGetMarginOrderListV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginOrderListV1Request) Execute

func (ApiGetMarginOrderListV1Request) OrderListId

Either orderListId or origClientOrderId must be provided

func (ApiGetMarginOrderListV1Request) OrigClientOrderId

func (r ApiGetMarginOrderListV1Request) OrigClientOrderId(origClientOrderId string) ApiGetMarginOrderListV1Request

Either orderListId or origClientOrderId must be provided

func (ApiGetMarginOrderListV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetMarginOrderListV1Request) Timestamp

type ApiGetMarginOrderV1Request

type ApiGetMarginOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginOrderV1Request) Execute

func (ApiGetMarginOrderV1Request) OrderId

func (ApiGetMarginOrderV1Request) OrigClientOrderId

func (r ApiGetMarginOrderV1Request) OrigClientOrderId(origClientOrderId string) ApiGetMarginOrderV1Request

func (ApiGetMarginOrderV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetMarginOrderV1Request) Symbol

func (ApiGetMarginOrderV1Request) Timestamp

type ApiGetMarginRepayLoanV1Request

type ApiGetMarginRepayLoanV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetMarginRepayLoanV1Request) Archived

Default: `false`. Set to `true` for archived data from 6 months ago

func (ApiGetMarginRepayLoanV1Request) Asset

func (ApiGetMarginRepayLoanV1Request) Current

Currently querying page. Start from 1. Default:1

func (ApiGetMarginRepayLoanV1Request) EndTime

func (ApiGetMarginRepayLoanV1Request) Execute

func (ApiGetMarginRepayLoanV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetMarginRepayLoanV1Request) Size

Default:10 Max:100

func (ApiGetMarginRepayLoanV1Request) StartTime

func (ApiGetMarginRepayLoanV1Request) Timestamp

func (ApiGetMarginRepayLoanV1Request) TxId

the tranId in `POST/papi/v1/repayLoan`

type ApiGetPingV1Request

type ApiGetPingV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetPingV1Request) Execute

func (r ApiGetPingV1Request) Execute() (map[string]interface{}, *http.Response, error)

type ApiGetPortfolioInterestHistoryV1Request

type ApiGetPortfolioInterestHistoryV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetPortfolioInterestHistoryV1Request) Asset

func (ApiGetPortfolioInterestHistoryV1Request) EndTime

func (ApiGetPortfolioInterestHistoryV1Request) Execute

func (ApiGetPortfolioInterestHistoryV1Request) RecvWindow

func (ApiGetPortfolioInterestHistoryV1Request) Size

Default:10 Max:100

func (ApiGetPortfolioInterestHistoryV1Request) StartTime

func (ApiGetPortfolioInterestHistoryV1Request) Timestamp

type ApiGetPortfolioNegativeBalanceExchangeRecordV1Request

type ApiGetPortfolioNegativeBalanceExchangeRecordV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetPortfolioNegativeBalanceExchangeRecordV1Request) EndTime

func (ApiGetPortfolioNegativeBalanceExchangeRecordV1Request) Execute

func (ApiGetPortfolioNegativeBalanceExchangeRecordV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetPortfolioNegativeBalanceExchangeRecordV1Request) StartTime

func (ApiGetPortfolioNegativeBalanceExchangeRecordV1Request) Timestamp

type ApiGetRateLimitOrderV1Request

type ApiGetRateLimitOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetRateLimitOrderV1Request) Execute

func (ApiGetRateLimitOrderV1Request) RecvWindow

func (ApiGetRateLimitOrderV1Request) Timestamp

type ApiGetRepayFuturesSwitchV1Request

type ApiGetRepayFuturesSwitchV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetRepayFuturesSwitchV1Request) Execute

func (ApiGetRepayFuturesSwitchV1Request) RecvWindow

func (ApiGetRepayFuturesSwitchV1Request) Timestamp

type ApiGetUmAccountConfigV1Request

type ApiGetUmAccountConfigV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmAccountConfigV1Request) Execute

func (ApiGetUmAccountConfigV1Request) RecvWindow

func (ApiGetUmAccountConfigV1Request) Timestamp

type ApiGetUmAccountV1Request

type ApiGetUmAccountV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmAccountV1Request) Execute

func (ApiGetUmAccountV1Request) RecvWindow

func (r ApiGetUmAccountV1Request) RecvWindow(recvWindow int64) ApiGetUmAccountV1Request

func (ApiGetUmAccountV1Request) Timestamp

type ApiGetUmAccountV2Request

type ApiGetUmAccountV2Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmAccountV2Request) Execute

func (ApiGetUmAccountV2Request) RecvWindow

func (r ApiGetUmAccountV2Request) RecvWindow(recvWindow int64) ApiGetUmAccountV2Request

func (ApiGetUmAccountV2Request) Timestamp

type ApiGetUmAdlQuantileV1Request

type ApiGetUmAdlQuantileV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmAdlQuantileV1Request) Execute

func (ApiGetUmAdlQuantileV1Request) RecvWindow

func (ApiGetUmAdlQuantileV1Request) Symbol

func (ApiGetUmAdlQuantileV1Request) Timestamp

type ApiGetUmAllOrdersV1Request

type ApiGetUmAllOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmAllOrdersV1Request) EndTime

func (ApiGetUmAllOrdersV1Request) Execute

func (ApiGetUmAllOrdersV1Request) Limit

Default 500; max 1000.

func (ApiGetUmAllOrdersV1Request) OrderId

func (ApiGetUmAllOrdersV1Request) RecvWindow

func (ApiGetUmAllOrdersV1Request) StartTime

func (ApiGetUmAllOrdersV1Request) Symbol

func (ApiGetUmAllOrdersV1Request) Timestamp

type ApiGetUmApiTradingStatusV1Request

type ApiGetUmApiTradingStatusV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmApiTradingStatusV1Request) Execute

func (ApiGetUmApiTradingStatusV1Request) RecvWindow

func (ApiGetUmApiTradingStatusV1Request) Symbol

func (ApiGetUmApiTradingStatusV1Request) Timestamp

type ApiGetUmCommissionRateV1Request

type ApiGetUmCommissionRateV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmCommissionRateV1Request) Execute

func (ApiGetUmCommissionRateV1Request) RecvWindow

func (ApiGetUmCommissionRateV1Request) Symbol

func (ApiGetUmCommissionRateV1Request) Timestamp

type ApiGetUmConditionalAllOrdersV1Request

type ApiGetUmConditionalAllOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmConditionalAllOrdersV1Request) EndTime

func (ApiGetUmConditionalAllOrdersV1Request) Execute

func (ApiGetUmConditionalAllOrdersV1Request) Limit

Default 500; max 1000.

func (ApiGetUmConditionalAllOrdersV1Request) RecvWindow

func (ApiGetUmConditionalAllOrdersV1Request) StartTime

func (ApiGetUmConditionalAllOrdersV1Request) StrategyId

func (ApiGetUmConditionalAllOrdersV1Request) Symbol

func (ApiGetUmConditionalAllOrdersV1Request) Timestamp

type ApiGetUmConditionalOpenOrderV1Request

type ApiGetUmConditionalOpenOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmConditionalOpenOrderV1Request) Execute

func (ApiGetUmConditionalOpenOrderV1Request) NewClientStrategyId

func (r ApiGetUmConditionalOpenOrderV1Request) NewClientStrategyId(newClientStrategyId string) ApiGetUmConditionalOpenOrderV1Request

func (ApiGetUmConditionalOpenOrderV1Request) RecvWindow

func (ApiGetUmConditionalOpenOrderV1Request) StrategyId

func (ApiGetUmConditionalOpenOrderV1Request) Symbol

func (ApiGetUmConditionalOpenOrderV1Request) Timestamp

type ApiGetUmConditionalOpenOrdersV1Request

type ApiGetUmConditionalOpenOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmConditionalOpenOrdersV1Request) Execute

type ApiGetUmConditionalOrderHistoryV1Request

type ApiGetUmConditionalOrderHistoryV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmConditionalOrderHistoryV1Request) Execute

func (ApiGetUmConditionalOrderHistoryV1Request) NewClientStrategyId

func (ApiGetUmConditionalOrderHistoryV1Request) RecvWindow

func (ApiGetUmConditionalOrderHistoryV1Request) StrategyId

func (ApiGetUmConditionalOrderHistoryV1Request) Symbol

func (ApiGetUmConditionalOrderHistoryV1Request) Timestamp

type ApiGetUmFeeBurnV1Request

type ApiGetUmFeeBurnV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmFeeBurnV1Request) Execute

func (ApiGetUmFeeBurnV1Request) RecvWindow

func (r ApiGetUmFeeBurnV1Request) RecvWindow(recvWindow int64) ApiGetUmFeeBurnV1Request

func (ApiGetUmFeeBurnV1Request) Timestamp

type ApiGetUmForceOrdersV1Request

type ApiGetUmForceOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmForceOrdersV1Request) AutoCloseType

func (r ApiGetUmForceOrdersV1Request) AutoCloseType(autoCloseType string) ApiGetUmForceOrdersV1Request

`LIQUIDATION` for liquidation orders, `ADL` for ADL orders.

func (ApiGetUmForceOrdersV1Request) EndTime

func (ApiGetUmForceOrdersV1Request) Execute

func (ApiGetUmForceOrdersV1Request) Limit

Default 50; max 100.

func (ApiGetUmForceOrdersV1Request) RecvWindow

The value cannot be greater than 60000

func (ApiGetUmForceOrdersV1Request) StartTime

func (ApiGetUmForceOrdersV1Request) Symbol

func (ApiGetUmForceOrdersV1Request) Timestamp

type ApiGetUmIncomeAsynIdV1Request

type ApiGetUmIncomeAsynIdV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmIncomeAsynIdV1Request) DownloadId

get by download id api

func (ApiGetUmIncomeAsynIdV1Request) Execute

func (ApiGetUmIncomeAsynIdV1Request) RecvWindow

func (ApiGetUmIncomeAsynIdV1Request) Timestamp

type ApiGetUmIncomeAsynV1Request

type ApiGetUmIncomeAsynV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmIncomeAsynV1Request) EndTime

Timestamp in ms

func (ApiGetUmIncomeAsynV1Request) Execute

func (ApiGetUmIncomeAsynV1Request) RecvWindow

func (ApiGetUmIncomeAsynV1Request) StartTime

Timestamp in ms

func (ApiGetUmIncomeAsynV1Request) Timestamp

type ApiGetUmIncomeV1Request

type ApiGetUmIncomeV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmIncomeV1Request) EndTime

Timestamp in ms to get funding until INCLUSIVE.

func (ApiGetUmIncomeV1Request) Execute

func (ApiGetUmIncomeV1Request) IncomeType

func (r ApiGetUmIncomeV1Request) IncomeType(incomeType string) ApiGetUmIncomeV1Request

TRANSFER, WELCOME_BONUS, REALIZED_PNL, FUNDING_FEE, COMMISSION, INSURANCE_CLEAR, REFERRAL_KICKBACK, COMMISSION_REBATE, API_REBATE, CONTEST_REWARD, CROSS_COLLATERAL_TRANSFER, OPTIONS_PREMIUM_FEE, OPTIONS_SETTLE_PROFIT, INTERNAL_TRANSFER, AUTO_EXCHANGE, DELIVERED_SETTELMENT, COIN_SWAP_DEPOSIT, COIN_SWAP_WITHDRAW, POSITION_LIMIT_INCREASE_FEE

func (ApiGetUmIncomeV1Request) Limit

Default 100; max 1000

func (ApiGetUmIncomeV1Request) Page

func (ApiGetUmIncomeV1Request) RecvWindow

func (r ApiGetUmIncomeV1Request) RecvWindow(recvWindow int64) ApiGetUmIncomeV1Request

func (ApiGetUmIncomeV1Request) StartTime

func (r ApiGetUmIncomeV1Request) StartTime(startTime int64) ApiGetUmIncomeV1Request

Timestamp in ms to get funding from INCLUSIVE.

func (ApiGetUmIncomeV1Request) Symbol

func (ApiGetUmIncomeV1Request) Timestamp

func (r ApiGetUmIncomeV1Request) Timestamp(timestamp int64) ApiGetUmIncomeV1Request

type ApiGetUmLeverageBracketV1Request

type ApiGetUmLeverageBracketV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmLeverageBracketV1Request) Execute

func (ApiGetUmLeverageBracketV1Request) RecvWindow

func (ApiGetUmLeverageBracketV1Request) Symbol

func (ApiGetUmLeverageBracketV1Request) Timestamp

type ApiGetUmOpenOrderV1Request

type ApiGetUmOpenOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmOpenOrderV1Request) Execute

func (ApiGetUmOpenOrderV1Request) OrderId

func (ApiGetUmOpenOrderV1Request) OrigClientOrderId

func (r ApiGetUmOpenOrderV1Request) OrigClientOrderId(origClientOrderId string) ApiGetUmOpenOrderV1Request

func (ApiGetUmOpenOrderV1Request) RecvWindow

func (ApiGetUmOpenOrderV1Request) Symbol

func (ApiGetUmOpenOrderV1Request) Timestamp

type ApiGetUmOpenOrdersV1Request

type ApiGetUmOpenOrdersV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmOpenOrdersV1Request) Execute

func (ApiGetUmOpenOrdersV1Request) RecvWindow

func (ApiGetUmOpenOrdersV1Request) Symbol

func (ApiGetUmOpenOrdersV1Request) Timestamp

type ApiGetUmOrderAmendmentV1Request

type ApiGetUmOrderAmendmentV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmOrderAmendmentV1Request) EndTime

Timestamp in ms to get modification history until INCLUSIVE

func (ApiGetUmOrderAmendmentV1Request) Execute

func (ApiGetUmOrderAmendmentV1Request) Limit

Default 500, max 1000

func (ApiGetUmOrderAmendmentV1Request) OrderId

func (ApiGetUmOrderAmendmentV1Request) OrigClientOrderId

func (r ApiGetUmOrderAmendmentV1Request) OrigClientOrderId(origClientOrderId string) ApiGetUmOrderAmendmentV1Request

func (ApiGetUmOrderAmendmentV1Request) RecvWindow

func (ApiGetUmOrderAmendmentV1Request) StartTime

Timestamp in ms to get modification history from INCLUSIVE

func (ApiGetUmOrderAmendmentV1Request) Symbol

func (ApiGetUmOrderAmendmentV1Request) Timestamp

type ApiGetUmOrderAsynIdV1Request

type ApiGetUmOrderAsynIdV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmOrderAsynIdV1Request) DownloadId

get by download id api

func (ApiGetUmOrderAsynIdV1Request) Execute

func (ApiGetUmOrderAsynIdV1Request) RecvWindow

func (ApiGetUmOrderAsynIdV1Request) Timestamp

type ApiGetUmOrderAsynV1Request

type ApiGetUmOrderAsynV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmOrderAsynV1Request) EndTime

Timestamp in ms

func (ApiGetUmOrderAsynV1Request) Execute

func (ApiGetUmOrderAsynV1Request) RecvWindow

func (ApiGetUmOrderAsynV1Request) StartTime

Timestamp in ms

func (ApiGetUmOrderAsynV1Request) Timestamp

type ApiGetUmOrderV1Request

type ApiGetUmOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmOrderV1Request) Execute

func (ApiGetUmOrderV1Request) OrderId

func (ApiGetUmOrderV1Request) OrigClientOrderId

func (r ApiGetUmOrderV1Request) OrigClientOrderId(origClientOrderId string) ApiGetUmOrderV1Request

func (ApiGetUmOrderV1Request) RecvWindow

func (r ApiGetUmOrderV1Request) RecvWindow(recvWindow int64) ApiGetUmOrderV1Request

func (ApiGetUmOrderV1Request) Symbol

func (ApiGetUmOrderV1Request) Timestamp

func (r ApiGetUmOrderV1Request) Timestamp(timestamp int64) ApiGetUmOrderV1Request

type ApiGetUmPositionRiskV1Request

type ApiGetUmPositionRiskV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmPositionRiskV1Request) Execute

type ApiGetUmPositionSideDualV1Request

type ApiGetUmPositionSideDualV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmPositionSideDualV1Request) Execute

func (ApiGetUmPositionSideDualV1Request) RecvWindow

func (ApiGetUmPositionSideDualV1Request) Timestamp

type ApiGetUmSymbolConfigV1Request

type ApiGetUmSymbolConfigV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmSymbolConfigV1Request) Execute

func (ApiGetUmSymbolConfigV1Request) RecvWindow

func (ApiGetUmSymbolConfigV1Request) Symbol

func (ApiGetUmSymbolConfigV1Request) Timestamp

type ApiGetUmTradeAsynIdV1Request

type ApiGetUmTradeAsynIdV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmTradeAsynIdV1Request) DownloadId

get by download id api

func (ApiGetUmTradeAsynIdV1Request) Execute

func (ApiGetUmTradeAsynIdV1Request) RecvWindow

func (ApiGetUmTradeAsynIdV1Request) Timestamp

type ApiGetUmTradeAsynV1Request

type ApiGetUmTradeAsynV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmTradeAsynV1Request) EndTime

Timestamp in ms

func (ApiGetUmTradeAsynV1Request) Execute

func (ApiGetUmTradeAsynV1Request) RecvWindow

func (ApiGetUmTradeAsynV1Request) StartTime

Timestamp in ms

func (ApiGetUmTradeAsynV1Request) Timestamp

type ApiGetUmUserTradesV1Request

type ApiGetUmUserTradesV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiGetUmUserTradesV1Request) EndTime

func (ApiGetUmUserTradesV1Request) Execute

func (ApiGetUmUserTradesV1Request) FromId

Trade id to fetch from. Default gets most recent trades.

func (ApiGetUmUserTradesV1Request) Limit

Default 500; max 1000.

func (ApiGetUmUserTradesV1Request) RecvWindow

func (ApiGetUmUserTradesV1Request) StartTime

func (ApiGetUmUserTradesV1Request) Symbol

func (ApiGetUmUserTradesV1Request) Timestamp

type ApiUpdateCmOrderV1Request

type ApiUpdateCmOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateCmOrderV1Request) Execute

func (ApiUpdateCmOrderV1Request) OrderId

func (ApiUpdateCmOrderV1Request) OrigClientOrderId

func (r ApiUpdateCmOrderV1Request) OrigClientOrderId(origClientOrderId string) ApiUpdateCmOrderV1Request

func (ApiUpdateCmOrderV1Request) Price

func (ApiUpdateCmOrderV1Request) PriceMatch

func (ApiUpdateCmOrderV1Request) Quantity

func (ApiUpdateCmOrderV1Request) RecvWindow

func (ApiUpdateCmOrderV1Request) Side

func (ApiUpdateCmOrderV1Request) Symbol

func (ApiUpdateCmOrderV1Request) Timestamp

type ApiUpdateListenKeyV1Request

type ApiUpdateListenKeyV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateListenKeyV1Request) Execute

func (r ApiUpdateListenKeyV1Request) Execute() (map[string]interface{}, *http.Response, error)

type ApiUpdateUmOrderV1Request

type ApiUpdateUmOrderV1Request struct {
	ApiService *PortfolioMarginAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateUmOrderV1Request) Execute

func (ApiUpdateUmOrderV1Request) OrderId

func (ApiUpdateUmOrderV1Request) OrigClientOrderId

func (r ApiUpdateUmOrderV1Request) OrigClientOrderId(origClientOrderId string) ApiUpdateUmOrderV1Request

func (ApiUpdateUmOrderV1Request) Price

func (ApiUpdateUmOrderV1Request) PriceMatch

func (ApiUpdateUmOrderV1Request) Quantity

func (ApiUpdateUmOrderV1Request) RecvWindow

func (ApiUpdateUmOrderV1Request) Side

func (ApiUpdateUmOrderV1Request) Symbol

func (ApiUpdateUmOrderV1Request) Timestamp

type Auth

type Auth struct {
	APIKey           string
	KeyType          KeyType
	PrivateKeyPath   string    // The path to the private key.
	PrivateKeyReader io.Reader // provide the APIKey using the types which implement io.Reader interface.
	Passphrase       string    // The passphrase to decrypt the private key, if the key is encrypted.
	// contains filtered or unexported fields
}

Auth provides Binance API key based authentication to a request passed via context using ContextBinanceAuth

func NewAuth

func NewAuth(apiKey string) *Auth

func (*Auth) ContextWithValue

func (b *Auth) ContextWithValue(ctx context.Context) (context.Context, error)

ContextWithValue validates the Auth configuration parameters and returns a context suitable for HTTP signature. An error is returned if the Auth configuration parameters are invalid.

func (*Auth) SetPrivateKey

func (b *Auth) SetPrivateKey(privateKey []byte) error

SetPrivateKey accepts a private key string and sets it.

func (*Auth) SetSecretKey

func (b *Auth) SetSecretKey(secretKey string)

func (*Auth) Sign

func (b *Auth) Sign(r *http.Request) (err 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 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 CreateAssetCollectionV1Resp

type CreateAssetCollectionV1Resp struct {
	Msg *string `json:"msg,omitempty"`
}

CreateAssetCollectionV1Resp struct for CreateAssetCollectionV1Resp

func NewCreateAssetCollectionV1Resp

func NewCreateAssetCollectionV1Resp() *CreateAssetCollectionV1Resp

NewCreateAssetCollectionV1Resp instantiates a new CreateAssetCollectionV1Resp 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 NewCreateAssetCollectionV1RespWithDefaults

func NewCreateAssetCollectionV1RespWithDefaults() *CreateAssetCollectionV1Resp

NewCreateAssetCollectionV1RespWithDefaults instantiates a new CreateAssetCollectionV1Resp 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 (*CreateAssetCollectionV1Resp) GetMsg

func (o *CreateAssetCollectionV1Resp) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*CreateAssetCollectionV1Resp) GetMsgOk

func (o *CreateAssetCollectionV1Resp) GetMsgOk() (*string, bool)

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

func (*CreateAssetCollectionV1Resp) HasMsg

func (o *CreateAssetCollectionV1Resp) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (CreateAssetCollectionV1Resp) MarshalJSON

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

func (*CreateAssetCollectionV1Resp) SetMsg

func (o *CreateAssetCollectionV1Resp) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (CreateAssetCollectionV1Resp) ToMap

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

type CreateAutoCollectionV1Resp

type CreateAutoCollectionV1Resp struct {
	Msg *string `json:"msg,omitempty"`
}

CreateAutoCollectionV1Resp struct for CreateAutoCollectionV1Resp

func NewCreateAutoCollectionV1Resp

func NewCreateAutoCollectionV1Resp() *CreateAutoCollectionV1Resp

NewCreateAutoCollectionV1Resp instantiates a new CreateAutoCollectionV1Resp 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 NewCreateAutoCollectionV1RespWithDefaults

func NewCreateAutoCollectionV1RespWithDefaults() *CreateAutoCollectionV1Resp

NewCreateAutoCollectionV1RespWithDefaults instantiates a new CreateAutoCollectionV1Resp 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 (*CreateAutoCollectionV1Resp) GetMsg

func (o *CreateAutoCollectionV1Resp) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*CreateAutoCollectionV1Resp) GetMsgOk

func (o *CreateAutoCollectionV1Resp) GetMsgOk() (*string, bool)

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

func (*CreateAutoCollectionV1Resp) HasMsg

func (o *CreateAutoCollectionV1Resp) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (CreateAutoCollectionV1Resp) MarshalJSON

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

func (*CreateAutoCollectionV1Resp) SetMsg

func (o *CreateAutoCollectionV1Resp) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (CreateAutoCollectionV1Resp) ToMap

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

type CreateBnbTransferV1Resp

type CreateBnbTransferV1Resp struct {
	TranId *int64 `json:"tranId,omitempty"`
}

CreateBnbTransferV1Resp struct for CreateBnbTransferV1Resp

func NewCreateBnbTransferV1Resp

func NewCreateBnbTransferV1Resp() *CreateBnbTransferV1Resp

NewCreateBnbTransferV1Resp instantiates a new CreateBnbTransferV1Resp 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 NewCreateBnbTransferV1RespWithDefaults

func NewCreateBnbTransferV1RespWithDefaults() *CreateBnbTransferV1Resp

NewCreateBnbTransferV1RespWithDefaults instantiates a new CreateBnbTransferV1Resp 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 (*CreateBnbTransferV1Resp) GetTranId

func (o *CreateBnbTransferV1Resp) GetTranId() int64

GetTranId returns the TranId field value if set, zero value otherwise.

func (*CreateBnbTransferV1Resp) GetTranIdOk

func (o *CreateBnbTransferV1Resp) GetTranIdOk() (*int64, bool)

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

func (*CreateBnbTransferV1Resp) HasTranId

func (o *CreateBnbTransferV1Resp) HasTranId() bool

HasTranId returns a boolean if a field has been set.

func (CreateBnbTransferV1Resp) MarshalJSON

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

func (*CreateBnbTransferV1Resp) SetTranId

func (o *CreateBnbTransferV1Resp) SetTranId(v int64)

SetTranId gets a reference to the given int64 and assigns it to the TranId field.

func (CreateBnbTransferV1Resp) ToMap

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

type CreateCmConditionalOrderV1Resp

type CreateCmConditionalOrderV1Resp struct {
	ActivatePrice       *string `json:"activatePrice,omitempty"`
	BookTime            *int64  `json:"bookTime,omitempty"`
	NewClientStrategyId *string `json:"newClientStrategyId,omitempty"`
	OrigQty             *string `json:"origQty,omitempty"`
	Pair                *string `json:"pair,omitempty"`
	PositionSide        *string `json:"positionSide,omitempty"`
	Price               *string `json:"price,omitempty"`
	PriceProtect        *bool   `json:"priceProtect,omitempty"`
	PriceRate           *string `json:"priceRate,omitempty"`
	ReduceOnly          *bool   `json:"reduceOnly,omitempty"`
	Side                *string `json:"side,omitempty"`
	StopPrice           *string `json:"stopPrice,omitempty"`
	StrategyId          *int64  `json:"strategyId,omitempty"`
	StrategyStatus      *string `json:"strategyStatus,omitempty"`
	StrategyType        *string `json:"strategyType,omitempty"`
	Symbol              *string `json:"symbol,omitempty"`
	TimeInForce         *string `json:"timeInForce,omitempty"`
	UpdateTime          *int64  `json:"updateTime,omitempty"`
	WorkingType         *string `json:"workingType,omitempty"`
}

CreateCmConditionalOrderV1Resp struct for CreateCmConditionalOrderV1Resp

func NewCreateCmConditionalOrderV1Resp

func NewCreateCmConditionalOrderV1Resp() *CreateCmConditionalOrderV1Resp

NewCreateCmConditionalOrderV1Resp instantiates a new CreateCmConditionalOrderV1Resp 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 NewCreateCmConditionalOrderV1RespWithDefaults

func NewCreateCmConditionalOrderV1RespWithDefaults() *CreateCmConditionalOrderV1Resp

NewCreateCmConditionalOrderV1RespWithDefaults instantiates a new CreateCmConditionalOrderV1Resp 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 (*CreateCmConditionalOrderV1Resp) GetActivatePrice

func (o *CreateCmConditionalOrderV1Resp) GetActivatePrice() string

GetActivatePrice returns the ActivatePrice field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetActivatePriceOk

func (o *CreateCmConditionalOrderV1Resp) GetActivatePriceOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetBookTime

func (o *CreateCmConditionalOrderV1Resp) GetBookTime() int64

GetBookTime returns the BookTime field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetBookTimeOk

func (o *CreateCmConditionalOrderV1Resp) GetBookTimeOk() (*int64, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetNewClientStrategyId

func (o *CreateCmConditionalOrderV1Resp) GetNewClientStrategyId() string

GetNewClientStrategyId returns the NewClientStrategyId field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetNewClientStrategyIdOk

func (o *CreateCmConditionalOrderV1Resp) GetNewClientStrategyIdOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetOrigQty

func (o *CreateCmConditionalOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetOrigQtyOk

func (o *CreateCmConditionalOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetPair

GetPair returns the Pair field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetPairOk

func (o *CreateCmConditionalOrderV1Resp) GetPairOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetPositionSide

func (o *CreateCmConditionalOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetPositionSideOk

func (o *CreateCmConditionalOrderV1Resp) GetPositionSideOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetPrice

func (o *CreateCmConditionalOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetPriceOk

func (o *CreateCmConditionalOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetPriceProtect

func (o *CreateCmConditionalOrderV1Resp) GetPriceProtect() bool

GetPriceProtect returns the PriceProtect field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetPriceProtectOk

func (o *CreateCmConditionalOrderV1Resp) GetPriceProtectOk() (*bool, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetPriceRate

func (o *CreateCmConditionalOrderV1Resp) GetPriceRate() string

GetPriceRate returns the PriceRate field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetPriceRateOk

func (o *CreateCmConditionalOrderV1Resp) GetPriceRateOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetReduceOnly

func (o *CreateCmConditionalOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetReduceOnlyOk

func (o *CreateCmConditionalOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetSideOk

func (o *CreateCmConditionalOrderV1Resp) GetSideOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetStopPrice

func (o *CreateCmConditionalOrderV1Resp) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetStopPriceOk

func (o *CreateCmConditionalOrderV1Resp) GetStopPriceOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetStrategyId

func (o *CreateCmConditionalOrderV1Resp) GetStrategyId() int64

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetStrategyIdOk

func (o *CreateCmConditionalOrderV1Resp) GetStrategyIdOk() (*int64, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetStrategyStatus

func (o *CreateCmConditionalOrderV1Resp) GetStrategyStatus() string

GetStrategyStatus returns the StrategyStatus field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetStrategyStatusOk

func (o *CreateCmConditionalOrderV1Resp) GetStrategyStatusOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetStrategyType

func (o *CreateCmConditionalOrderV1Resp) GetStrategyType() string

GetStrategyType returns the StrategyType field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetStrategyTypeOk

func (o *CreateCmConditionalOrderV1Resp) GetStrategyTypeOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetSymbol

func (o *CreateCmConditionalOrderV1Resp) GetSymbol() string

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

func (*CreateCmConditionalOrderV1Resp) GetSymbolOk

func (o *CreateCmConditionalOrderV1Resp) 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 (*CreateCmConditionalOrderV1Resp) GetTimeInForce

func (o *CreateCmConditionalOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetTimeInForceOk

func (o *CreateCmConditionalOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetUpdateTime

func (o *CreateCmConditionalOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetUpdateTimeOk

func (o *CreateCmConditionalOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*CreateCmConditionalOrderV1Resp) GetWorkingType

func (o *CreateCmConditionalOrderV1Resp) GetWorkingType() string

GetWorkingType returns the WorkingType field value if set, zero value otherwise.

func (*CreateCmConditionalOrderV1Resp) GetWorkingTypeOk

func (o *CreateCmConditionalOrderV1Resp) GetWorkingTypeOk() (*string, bool)

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

func (*CreateCmConditionalOrderV1Resp) HasActivatePrice

func (o *CreateCmConditionalOrderV1Resp) HasActivatePrice() bool

HasActivatePrice returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasBookTime

func (o *CreateCmConditionalOrderV1Resp) HasBookTime() bool

HasBookTime returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasNewClientStrategyId

func (o *CreateCmConditionalOrderV1Resp) HasNewClientStrategyId() bool

HasNewClientStrategyId returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasOrigQty

func (o *CreateCmConditionalOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasPair

func (o *CreateCmConditionalOrderV1Resp) HasPair() bool

HasPair returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasPositionSide

func (o *CreateCmConditionalOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasPrice

func (o *CreateCmConditionalOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasPriceProtect

func (o *CreateCmConditionalOrderV1Resp) HasPriceProtect() bool

HasPriceProtect returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasPriceRate

func (o *CreateCmConditionalOrderV1Resp) HasPriceRate() bool

HasPriceRate returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasReduceOnly

func (o *CreateCmConditionalOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasSide

func (o *CreateCmConditionalOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasStopPrice

func (o *CreateCmConditionalOrderV1Resp) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasStrategyId

func (o *CreateCmConditionalOrderV1Resp) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasStrategyStatus

func (o *CreateCmConditionalOrderV1Resp) HasStrategyStatus() bool

HasStrategyStatus returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasStrategyType

func (o *CreateCmConditionalOrderV1Resp) HasStrategyType() bool

HasStrategyType returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasSymbol

func (o *CreateCmConditionalOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasTimeInForce

func (o *CreateCmConditionalOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasUpdateTime

func (o *CreateCmConditionalOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (*CreateCmConditionalOrderV1Resp) HasWorkingType

func (o *CreateCmConditionalOrderV1Resp) HasWorkingType() bool

HasWorkingType returns a boolean if a field has been set.

func (CreateCmConditionalOrderV1Resp) MarshalJSON

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

func (*CreateCmConditionalOrderV1Resp) SetActivatePrice

func (o *CreateCmConditionalOrderV1Resp) SetActivatePrice(v string)

SetActivatePrice gets a reference to the given string and assigns it to the ActivatePrice field.

func (*CreateCmConditionalOrderV1Resp) SetBookTime

func (o *CreateCmConditionalOrderV1Resp) SetBookTime(v int64)

SetBookTime gets a reference to the given int64 and assigns it to the BookTime field.

func (*CreateCmConditionalOrderV1Resp) SetNewClientStrategyId

func (o *CreateCmConditionalOrderV1Resp) SetNewClientStrategyId(v string)

SetNewClientStrategyId gets a reference to the given string and assigns it to the NewClientStrategyId field.

func (*CreateCmConditionalOrderV1Resp) SetOrigQty

func (o *CreateCmConditionalOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*CreateCmConditionalOrderV1Resp) SetPair

func (o *CreateCmConditionalOrderV1Resp) SetPair(v string)

SetPair gets a reference to the given string and assigns it to the Pair field.

func (*CreateCmConditionalOrderV1Resp) SetPositionSide

func (o *CreateCmConditionalOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*CreateCmConditionalOrderV1Resp) SetPrice

func (o *CreateCmConditionalOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*CreateCmConditionalOrderV1Resp) SetPriceProtect

func (o *CreateCmConditionalOrderV1Resp) SetPriceProtect(v bool)

SetPriceProtect gets a reference to the given bool and assigns it to the PriceProtect field.

func (*CreateCmConditionalOrderV1Resp) SetPriceRate

func (o *CreateCmConditionalOrderV1Resp) SetPriceRate(v string)

SetPriceRate gets a reference to the given string and assigns it to the PriceRate field.

func (*CreateCmConditionalOrderV1Resp) SetReduceOnly

func (o *CreateCmConditionalOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*CreateCmConditionalOrderV1Resp) SetSide

func (o *CreateCmConditionalOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*CreateCmConditionalOrderV1Resp) SetStopPrice

func (o *CreateCmConditionalOrderV1Resp) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*CreateCmConditionalOrderV1Resp) SetStrategyId

func (o *CreateCmConditionalOrderV1Resp) SetStrategyId(v int64)

SetStrategyId gets a reference to the given int64 and assigns it to the StrategyId field.

func (*CreateCmConditionalOrderV1Resp) SetStrategyStatus

func (o *CreateCmConditionalOrderV1Resp) SetStrategyStatus(v string)

SetStrategyStatus gets a reference to the given string and assigns it to the StrategyStatus field.

func (*CreateCmConditionalOrderV1Resp) SetStrategyType

func (o *CreateCmConditionalOrderV1Resp) SetStrategyType(v string)

SetStrategyType gets a reference to the given string and assigns it to the StrategyType field.

func (*CreateCmConditionalOrderV1Resp) SetSymbol

func (o *CreateCmConditionalOrderV1Resp) SetSymbol(v string)

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

func (*CreateCmConditionalOrderV1Resp) SetTimeInForce

func (o *CreateCmConditionalOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*CreateCmConditionalOrderV1Resp) SetUpdateTime

func (o *CreateCmConditionalOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (*CreateCmConditionalOrderV1Resp) SetWorkingType

func (o *CreateCmConditionalOrderV1Resp) SetWorkingType(v string)

SetWorkingType gets a reference to the given string and assigns it to the WorkingType field.

func (CreateCmConditionalOrderV1Resp) ToMap

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

type CreateCmLeverageV1Resp

type CreateCmLeverageV1Resp struct {
	Leverage *int32  `json:"leverage,omitempty"`
	MaxQty   *string `json:"maxQty,omitempty"`
	Symbol   *string `json:"symbol,omitempty"`
}

CreateCmLeverageV1Resp struct for CreateCmLeverageV1Resp

func NewCreateCmLeverageV1Resp

func NewCreateCmLeverageV1Resp() *CreateCmLeverageV1Resp

NewCreateCmLeverageV1Resp instantiates a new CreateCmLeverageV1Resp 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 NewCreateCmLeverageV1RespWithDefaults

func NewCreateCmLeverageV1RespWithDefaults() *CreateCmLeverageV1Resp

NewCreateCmLeverageV1RespWithDefaults instantiates a new CreateCmLeverageV1Resp 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 (*CreateCmLeverageV1Resp) GetLeverage

func (o *CreateCmLeverageV1Resp) GetLeverage() int32

GetLeverage returns the Leverage field value if set, zero value otherwise.

func (*CreateCmLeverageV1Resp) GetLeverageOk

func (o *CreateCmLeverageV1Resp) GetLeverageOk() (*int32, bool)

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

func (*CreateCmLeverageV1Resp) GetMaxQty

func (o *CreateCmLeverageV1Resp) GetMaxQty() string

GetMaxQty returns the MaxQty field value if set, zero value otherwise.

func (*CreateCmLeverageV1Resp) GetMaxQtyOk

func (o *CreateCmLeverageV1Resp) GetMaxQtyOk() (*string, bool)

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

func (*CreateCmLeverageV1Resp) GetSymbol

func (o *CreateCmLeverageV1Resp) GetSymbol() string

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

func (*CreateCmLeverageV1Resp) GetSymbolOk

func (o *CreateCmLeverageV1Resp) 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 (*CreateCmLeverageV1Resp) HasLeverage

func (o *CreateCmLeverageV1Resp) HasLeverage() bool

HasLeverage returns a boolean if a field has been set.

func (*CreateCmLeverageV1Resp) HasMaxQty

func (o *CreateCmLeverageV1Resp) HasMaxQty() bool

HasMaxQty returns a boolean if a field has been set.

func (*CreateCmLeverageV1Resp) HasSymbol

func (o *CreateCmLeverageV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (CreateCmLeverageV1Resp) MarshalJSON

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

func (*CreateCmLeverageV1Resp) SetLeverage

func (o *CreateCmLeverageV1Resp) SetLeverage(v int32)

SetLeverage gets a reference to the given int32 and assigns it to the Leverage field.

func (*CreateCmLeverageV1Resp) SetMaxQty

func (o *CreateCmLeverageV1Resp) SetMaxQty(v string)

SetMaxQty gets a reference to the given string and assigns it to the MaxQty field.

func (*CreateCmLeverageV1Resp) SetSymbol

func (o *CreateCmLeverageV1Resp) SetSymbol(v string)

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

func (CreateCmLeverageV1Resp) ToMap

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

type CreateCmOrderV1Resp

type CreateCmOrderV1Resp struct {
	AvgPrice      *string `json:"avgPrice,omitempty"`
	ClientOrderId *string `json:"clientOrderId,omitempty"`
	CumBase       *string `json:"cumBase,omitempty"`
	CumQty        *string `json:"cumQty,omitempty"`
	ExecutedQty   *string `json:"executedQty,omitempty"`
	OrderId       *int64  `json:"orderId,omitempty"`
	OrigQty       *string `json:"origQty,omitempty"`
	Pair          *string `json:"pair,omitempty"`
	PositionSide  *string `json:"positionSide,omitempty"`
	Price         *string `json:"price,omitempty"`
	ReduceOnly    *bool   `json:"reduceOnly,omitempty"`
	Side          *string `json:"side,omitempty"`
	Status        *string `json:"status,omitempty"`
	Symbol        *string `json:"symbol,omitempty"`
	TimeInForce   *string `json:"timeInForce,omitempty"`
	Type          *string `json:"type,omitempty"`
	UpdateTime    *int64  `json:"updateTime,omitempty"`
}

CreateCmOrderV1Resp struct for CreateCmOrderV1Resp

func NewCreateCmOrderV1Resp

func NewCreateCmOrderV1Resp() *CreateCmOrderV1Resp

NewCreateCmOrderV1Resp instantiates a new CreateCmOrderV1Resp 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 NewCreateCmOrderV1RespWithDefaults

func NewCreateCmOrderV1RespWithDefaults() *CreateCmOrderV1Resp

NewCreateCmOrderV1RespWithDefaults instantiates a new CreateCmOrderV1Resp 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 (*CreateCmOrderV1Resp) GetAvgPrice

func (o *CreateCmOrderV1Resp) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetAvgPriceOk

func (o *CreateCmOrderV1Resp) GetAvgPriceOk() (*string, bool)

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

func (*CreateCmOrderV1Resp) GetClientOrderId

func (o *CreateCmOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetClientOrderIdOk

func (o *CreateCmOrderV1Resp) GetClientOrderIdOk() (*string, bool)

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

func (*CreateCmOrderV1Resp) GetCumBase

func (o *CreateCmOrderV1Resp) GetCumBase() string

GetCumBase returns the CumBase field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetCumBaseOk

func (o *CreateCmOrderV1Resp) GetCumBaseOk() (*string, bool)

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

func (*CreateCmOrderV1Resp) GetCumQty

func (o *CreateCmOrderV1Resp) GetCumQty() string

GetCumQty returns the CumQty field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetCumQtyOk

func (o *CreateCmOrderV1Resp) GetCumQtyOk() (*string, bool)

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

func (*CreateCmOrderV1Resp) GetExecutedQty

func (o *CreateCmOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetExecutedQtyOk

func (o *CreateCmOrderV1Resp) GetExecutedQtyOk() (*string, bool)

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

func (*CreateCmOrderV1Resp) GetOrderId

func (o *CreateCmOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetOrderIdOk

func (o *CreateCmOrderV1Resp) GetOrderIdOk() (*int64, bool)

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

func (*CreateCmOrderV1Resp) GetOrigQty

func (o *CreateCmOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetOrigQtyOk

func (o *CreateCmOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*CreateCmOrderV1Resp) GetPair

func (o *CreateCmOrderV1Resp) GetPair() string

GetPair returns the Pair field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetPairOk

func (o *CreateCmOrderV1Resp) GetPairOk() (*string, bool)

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

func (*CreateCmOrderV1Resp) GetPositionSide

func (o *CreateCmOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetPositionSideOk

func (o *CreateCmOrderV1Resp) GetPositionSideOk() (*string, bool)

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

func (*CreateCmOrderV1Resp) GetPrice

func (o *CreateCmOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetPriceOk

func (o *CreateCmOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*CreateCmOrderV1Resp) GetReduceOnly

func (o *CreateCmOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetReduceOnlyOk

func (o *CreateCmOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

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

func (*CreateCmOrderV1Resp) GetSide

func (o *CreateCmOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetSideOk

func (o *CreateCmOrderV1Resp) GetSideOk() (*string, bool)

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

func (*CreateCmOrderV1Resp) GetStatus

func (o *CreateCmOrderV1Resp) GetStatus() string

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

func (*CreateCmOrderV1Resp) GetStatusOk

func (o *CreateCmOrderV1Resp) 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 (*CreateCmOrderV1Resp) GetSymbol

func (o *CreateCmOrderV1Resp) GetSymbol() string

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

func (*CreateCmOrderV1Resp) GetSymbolOk

func (o *CreateCmOrderV1Resp) 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 (*CreateCmOrderV1Resp) GetTimeInForce

func (o *CreateCmOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetTimeInForceOk

func (o *CreateCmOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*CreateCmOrderV1Resp) GetType

func (o *CreateCmOrderV1Resp) GetType() string

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

func (*CreateCmOrderV1Resp) GetTypeOk

func (o *CreateCmOrderV1Resp) 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 (*CreateCmOrderV1Resp) GetUpdateTime

func (o *CreateCmOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*CreateCmOrderV1Resp) GetUpdateTimeOk

func (o *CreateCmOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*CreateCmOrderV1Resp) HasAvgPrice

func (o *CreateCmOrderV1Resp) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasClientOrderId

func (o *CreateCmOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasCumBase

func (o *CreateCmOrderV1Resp) HasCumBase() bool

HasCumBase returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasCumQty

func (o *CreateCmOrderV1Resp) HasCumQty() bool

HasCumQty returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasExecutedQty

func (o *CreateCmOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasOrderId

func (o *CreateCmOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasOrigQty

func (o *CreateCmOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasPair

func (o *CreateCmOrderV1Resp) HasPair() bool

HasPair returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasPositionSide

func (o *CreateCmOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasPrice

func (o *CreateCmOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasReduceOnly

func (o *CreateCmOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasSide

func (o *CreateCmOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasStatus

func (o *CreateCmOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasSymbol

func (o *CreateCmOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasTimeInForce

func (o *CreateCmOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasType

func (o *CreateCmOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (*CreateCmOrderV1Resp) HasUpdateTime

func (o *CreateCmOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (CreateCmOrderV1Resp) MarshalJSON

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

func (*CreateCmOrderV1Resp) SetAvgPrice

func (o *CreateCmOrderV1Resp) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*CreateCmOrderV1Resp) SetClientOrderId

func (o *CreateCmOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*CreateCmOrderV1Resp) SetCumBase

func (o *CreateCmOrderV1Resp) SetCumBase(v string)

SetCumBase gets a reference to the given string and assigns it to the CumBase field.

func (*CreateCmOrderV1Resp) SetCumQty

func (o *CreateCmOrderV1Resp) SetCumQty(v string)

SetCumQty gets a reference to the given string and assigns it to the CumQty field.

func (*CreateCmOrderV1Resp) SetExecutedQty

func (o *CreateCmOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*CreateCmOrderV1Resp) SetOrderId

func (o *CreateCmOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*CreateCmOrderV1Resp) SetOrigQty

func (o *CreateCmOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*CreateCmOrderV1Resp) SetPair

func (o *CreateCmOrderV1Resp) SetPair(v string)

SetPair gets a reference to the given string and assigns it to the Pair field.

func (*CreateCmOrderV1Resp) SetPositionSide

func (o *CreateCmOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*CreateCmOrderV1Resp) SetPrice

func (o *CreateCmOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*CreateCmOrderV1Resp) SetReduceOnly

func (o *CreateCmOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*CreateCmOrderV1Resp) SetSide

func (o *CreateCmOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*CreateCmOrderV1Resp) SetStatus

func (o *CreateCmOrderV1Resp) SetStatus(v string)

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

func (*CreateCmOrderV1Resp) SetSymbol

func (o *CreateCmOrderV1Resp) SetSymbol(v string)

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

func (*CreateCmOrderV1Resp) SetTimeInForce

func (o *CreateCmOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*CreateCmOrderV1Resp) SetType

func (o *CreateCmOrderV1Resp) SetType(v string)

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

func (*CreateCmOrderV1Resp) SetUpdateTime

func (o *CreateCmOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (CreateCmOrderV1Resp) ToMap

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

type CreateCmPositionSideDualV1Resp

type CreateCmPositionSideDualV1Resp struct {
	Code *int32  `json:"code,omitempty"`
	Msg  *string `json:"msg,omitempty"`
}

CreateCmPositionSideDualV1Resp struct for CreateCmPositionSideDualV1Resp

func NewCreateCmPositionSideDualV1Resp

func NewCreateCmPositionSideDualV1Resp() *CreateCmPositionSideDualV1Resp

NewCreateCmPositionSideDualV1Resp instantiates a new CreateCmPositionSideDualV1Resp 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 NewCreateCmPositionSideDualV1RespWithDefaults

func NewCreateCmPositionSideDualV1RespWithDefaults() *CreateCmPositionSideDualV1Resp

NewCreateCmPositionSideDualV1RespWithDefaults instantiates a new CreateCmPositionSideDualV1Resp 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 (*CreateCmPositionSideDualV1Resp) GetCode

GetCode returns the Code field value if set, zero value otherwise.

func (*CreateCmPositionSideDualV1Resp) GetCodeOk

func (o *CreateCmPositionSideDualV1Resp) GetCodeOk() (*int32, bool)

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

func (*CreateCmPositionSideDualV1Resp) GetMsg

GetMsg returns the Msg field value if set, zero value otherwise.

func (*CreateCmPositionSideDualV1Resp) GetMsgOk

func (o *CreateCmPositionSideDualV1Resp) GetMsgOk() (*string, bool)

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

func (*CreateCmPositionSideDualV1Resp) HasCode

func (o *CreateCmPositionSideDualV1Resp) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*CreateCmPositionSideDualV1Resp) HasMsg

HasMsg returns a boolean if a field has been set.

func (CreateCmPositionSideDualV1Resp) MarshalJSON

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

func (*CreateCmPositionSideDualV1Resp) SetCode

func (o *CreateCmPositionSideDualV1Resp) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*CreateCmPositionSideDualV1Resp) SetMsg

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (CreateCmPositionSideDualV1Resp) ToMap

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

type CreateListenKeyV1Resp

type CreateListenKeyV1Resp struct {
	ListenKey *string `json:"listenKey,omitempty"`
}

CreateListenKeyV1Resp struct for CreateListenKeyV1Resp

func NewCreateListenKeyV1Resp

func NewCreateListenKeyV1Resp() *CreateListenKeyV1Resp

NewCreateListenKeyV1Resp instantiates a new CreateListenKeyV1Resp 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 NewCreateListenKeyV1RespWithDefaults

func NewCreateListenKeyV1RespWithDefaults() *CreateListenKeyV1Resp

NewCreateListenKeyV1RespWithDefaults instantiates a new CreateListenKeyV1Resp 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 (*CreateListenKeyV1Resp) GetListenKey

func (o *CreateListenKeyV1Resp) GetListenKey() string

GetListenKey returns the ListenKey field value if set, zero value otherwise.

func (*CreateListenKeyV1Resp) GetListenKeyOk

func (o *CreateListenKeyV1Resp) GetListenKeyOk() (*string, bool)

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

func (*CreateListenKeyV1Resp) HasListenKey

func (o *CreateListenKeyV1Resp) HasListenKey() bool

HasListenKey returns a boolean if a field has been set.

func (CreateListenKeyV1Resp) MarshalJSON

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

func (*CreateListenKeyV1Resp) SetListenKey

func (o *CreateListenKeyV1Resp) SetListenKey(v string)

SetListenKey gets a reference to the given string and assigns it to the ListenKey field.

func (CreateListenKeyV1Resp) ToMap

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

type CreateMarginLoanV1Resp

type CreateMarginLoanV1Resp struct {
	TranId *int64 `json:"tranId,omitempty"`
}

CreateMarginLoanV1Resp struct for CreateMarginLoanV1Resp

func NewCreateMarginLoanV1Resp

func NewCreateMarginLoanV1Resp() *CreateMarginLoanV1Resp

NewCreateMarginLoanV1Resp instantiates a new CreateMarginLoanV1Resp 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 NewCreateMarginLoanV1RespWithDefaults

func NewCreateMarginLoanV1RespWithDefaults() *CreateMarginLoanV1Resp

NewCreateMarginLoanV1RespWithDefaults instantiates a new CreateMarginLoanV1Resp 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 (*CreateMarginLoanV1Resp) GetTranId

func (o *CreateMarginLoanV1Resp) GetTranId() int64

GetTranId returns the TranId field value if set, zero value otherwise.

func (*CreateMarginLoanV1Resp) GetTranIdOk

func (o *CreateMarginLoanV1Resp) GetTranIdOk() (*int64, bool)

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

func (*CreateMarginLoanV1Resp) HasTranId

func (o *CreateMarginLoanV1Resp) HasTranId() bool

HasTranId returns a boolean if a field has been set.

func (CreateMarginLoanV1Resp) MarshalJSON

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

func (*CreateMarginLoanV1Resp) SetTranId

func (o *CreateMarginLoanV1Resp) SetTranId(v int64)

SetTranId gets a reference to the given int64 and assigns it to the TranId field.

func (CreateMarginLoanV1Resp) ToMap

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

type CreateMarginOrderOcoV1Resp

type CreateMarginOrderOcoV1Resp struct {
	ContingencyType       *string                                       `json:"contingencyType,omitempty"`
	ListClientOrderId     *string                                       `json:"listClientOrderId,omitempty"`
	ListOrderStatus       *string                                       `json:"listOrderStatus,omitempty"`
	ListStatusType        *string                                       `json:"listStatusType,omitempty"`
	MarginBuyBorrowAmount *string                                       `json:"marginBuyBorrowAmount,omitempty"`
	MarginBuyBorrowAsset  *string                                       `json:"marginBuyBorrowAsset,omitempty"`
	OrderListId           *int64                                        `json:"orderListId,omitempty"`
	OrderReports          []CreateMarginOrderOcoV1RespOrderReportsInner `json:"orderReports,omitempty"`
	Orders                []CreateMarginOrderOcoV1RespOrdersInner       `json:"orders,omitempty"`
	Symbol                *string                                       `json:"symbol,omitempty"`
	TransactionTime       *int64                                        `json:"transactionTime,omitempty"`
}

CreateMarginOrderOcoV1Resp struct for CreateMarginOrderOcoV1Resp

func NewCreateMarginOrderOcoV1Resp

func NewCreateMarginOrderOcoV1Resp() *CreateMarginOrderOcoV1Resp

NewCreateMarginOrderOcoV1Resp instantiates a new CreateMarginOrderOcoV1Resp 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 NewCreateMarginOrderOcoV1RespWithDefaults

func NewCreateMarginOrderOcoV1RespWithDefaults() *CreateMarginOrderOcoV1Resp

NewCreateMarginOrderOcoV1RespWithDefaults instantiates a new CreateMarginOrderOcoV1Resp 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 (*CreateMarginOrderOcoV1Resp) GetContingencyType

func (o *CreateMarginOrderOcoV1Resp) GetContingencyType() string

GetContingencyType returns the ContingencyType field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1Resp) GetContingencyTypeOk

func (o *CreateMarginOrderOcoV1Resp) GetContingencyTypeOk() (*string, bool)

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

func (*CreateMarginOrderOcoV1Resp) GetListClientOrderId

func (o *CreateMarginOrderOcoV1Resp) GetListClientOrderId() string

GetListClientOrderId returns the ListClientOrderId field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1Resp) GetListClientOrderIdOk

func (o *CreateMarginOrderOcoV1Resp) GetListClientOrderIdOk() (*string, bool)

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

func (*CreateMarginOrderOcoV1Resp) GetListOrderStatus

func (o *CreateMarginOrderOcoV1Resp) GetListOrderStatus() string

GetListOrderStatus returns the ListOrderStatus field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1Resp) GetListOrderStatusOk

func (o *CreateMarginOrderOcoV1Resp) GetListOrderStatusOk() (*string, bool)

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

func (*CreateMarginOrderOcoV1Resp) GetListStatusType

func (o *CreateMarginOrderOcoV1Resp) GetListStatusType() string

GetListStatusType returns the ListStatusType field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1Resp) GetListStatusTypeOk

func (o *CreateMarginOrderOcoV1Resp) GetListStatusTypeOk() (*string, bool)

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

func (*CreateMarginOrderOcoV1Resp) GetMarginBuyBorrowAmount

func (o *CreateMarginOrderOcoV1Resp) GetMarginBuyBorrowAmount() string

GetMarginBuyBorrowAmount returns the MarginBuyBorrowAmount field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1Resp) GetMarginBuyBorrowAmountOk

func (o *CreateMarginOrderOcoV1Resp) GetMarginBuyBorrowAmountOk() (*string, bool)

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

func (*CreateMarginOrderOcoV1Resp) GetMarginBuyBorrowAsset

func (o *CreateMarginOrderOcoV1Resp) GetMarginBuyBorrowAsset() string

GetMarginBuyBorrowAsset returns the MarginBuyBorrowAsset field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1Resp) GetMarginBuyBorrowAssetOk

func (o *CreateMarginOrderOcoV1Resp) GetMarginBuyBorrowAssetOk() (*string, bool)

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

func (*CreateMarginOrderOcoV1Resp) GetOrderListId

func (o *CreateMarginOrderOcoV1Resp) GetOrderListId() int64

GetOrderListId returns the OrderListId field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1Resp) GetOrderListIdOk

func (o *CreateMarginOrderOcoV1Resp) GetOrderListIdOk() (*int64, bool)

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

func (*CreateMarginOrderOcoV1Resp) GetOrderReports

GetOrderReports returns the OrderReports field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1Resp) GetOrderReportsOk

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

func (*CreateMarginOrderOcoV1Resp) GetOrders

GetOrders returns the Orders field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1Resp) GetOrdersOk

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

func (*CreateMarginOrderOcoV1Resp) GetSymbol

func (o *CreateMarginOrderOcoV1Resp) GetSymbol() string

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

func (*CreateMarginOrderOcoV1Resp) GetSymbolOk

func (o *CreateMarginOrderOcoV1Resp) 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 (*CreateMarginOrderOcoV1Resp) GetTransactionTime

func (o *CreateMarginOrderOcoV1Resp) GetTransactionTime() int64

GetTransactionTime returns the TransactionTime field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1Resp) GetTransactionTimeOk

func (o *CreateMarginOrderOcoV1Resp) GetTransactionTimeOk() (*int64, bool)

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

func (*CreateMarginOrderOcoV1Resp) HasContingencyType

func (o *CreateMarginOrderOcoV1Resp) HasContingencyType() bool

HasContingencyType returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1Resp) HasListClientOrderId

func (o *CreateMarginOrderOcoV1Resp) HasListClientOrderId() bool

HasListClientOrderId returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1Resp) HasListOrderStatus

func (o *CreateMarginOrderOcoV1Resp) HasListOrderStatus() bool

HasListOrderStatus returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1Resp) HasListStatusType

func (o *CreateMarginOrderOcoV1Resp) HasListStatusType() bool

HasListStatusType returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1Resp) HasMarginBuyBorrowAmount

func (o *CreateMarginOrderOcoV1Resp) HasMarginBuyBorrowAmount() bool

HasMarginBuyBorrowAmount returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1Resp) HasMarginBuyBorrowAsset

func (o *CreateMarginOrderOcoV1Resp) HasMarginBuyBorrowAsset() bool

HasMarginBuyBorrowAsset returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1Resp) HasOrderListId

func (o *CreateMarginOrderOcoV1Resp) HasOrderListId() bool

HasOrderListId returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1Resp) HasOrderReports

func (o *CreateMarginOrderOcoV1Resp) HasOrderReports() bool

HasOrderReports returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1Resp) HasOrders

func (o *CreateMarginOrderOcoV1Resp) HasOrders() bool

HasOrders returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1Resp) HasSymbol

func (o *CreateMarginOrderOcoV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1Resp) HasTransactionTime

func (o *CreateMarginOrderOcoV1Resp) HasTransactionTime() bool

HasTransactionTime returns a boolean if a field has been set.

func (CreateMarginOrderOcoV1Resp) MarshalJSON

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

func (*CreateMarginOrderOcoV1Resp) SetContingencyType

func (o *CreateMarginOrderOcoV1Resp) SetContingencyType(v string)

SetContingencyType gets a reference to the given string and assigns it to the ContingencyType field.

func (*CreateMarginOrderOcoV1Resp) SetListClientOrderId

func (o *CreateMarginOrderOcoV1Resp) SetListClientOrderId(v string)

SetListClientOrderId gets a reference to the given string and assigns it to the ListClientOrderId field.

func (*CreateMarginOrderOcoV1Resp) SetListOrderStatus

func (o *CreateMarginOrderOcoV1Resp) SetListOrderStatus(v string)

SetListOrderStatus gets a reference to the given string and assigns it to the ListOrderStatus field.

func (*CreateMarginOrderOcoV1Resp) SetListStatusType

func (o *CreateMarginOrderOcoV1Resp) SetListStatusType(v string)

SetListStatusType gets a reference to the given string and assigns it to the ListStatusType field.

func (*CreateMarginOrderOcoV1Resp) SetMarginBuyBorrowAmount

func (o *CreateMarginOrderOcoV1Resp) SetMarginBuyBorrowAmount(v string)

SetMarginBuyBorrowAmount gets a reference to the given string and assigns it to the MarginBuyBorrowAmount field.

func (*CreateMarginOrderOcoV1Resp) SetMarginBuyBorrowAsset

func (o *CreateMarginOrderOcoV1Resp) SetMarginBuyBorrowAsset(v string)

SetMarginBuyBorrowAsset gets a reference to the given string and assigns it to the MarginBuyBorrowAsset field.

func (*CreateMarginOrderOcoV1Resp) SetOrderListId

func (o *CreateMarginOrderOcoV1Resp) SetOrderListId(v int64)

SetOrderListId gets a reference to the given int64 and assigns it to the OrderListId field.

func (*CreateMarginOrderOcoV1Resp) SetOrderReports

SetOrderReports gets a reference to the given []CreateMarginOrderOcoV1RespOrderReportsInner and assigns it to the OrderReports field.

func (*CreateMarginOrderOcoV1Resp) SetOrders

SetOrders gets a reference to the given []CreateMarginOrderOcoV1RespOrdersInner and assigns it to the Orders field.

func (*CreateMarginOrderOcoV1Resp) SetSymbol

func (o *CreateMarginOrderOcoV1Resp) SetSymbol(v string)

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

func (*CreateMarginOrderOcoV1Resp) SetTransactionTime

func (o *CreateMarginOrderOcoV1Resp) SetTransactionTime(v int64)

SetTransactionTime gets a reference to the given int64 and assigns it to the TransactionTime field.

func (CreateMarginOrderOcoV1Resp) ToMap

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

type CreateMarginOrderOcoV1RespOrderReportsInner

type CreateMarginOrderOcoV1RespOrderReportsInner struct {
	ClientOrderId       *string `json:"clientOrderId,omitempty"`
	CummulativeQuoteQty *string `json:"cummulativeQuoteQty,omitempty"`
	ExecutedQty         *string `json:"executedQty,omitempty"`
	OrderId             *int64  `json:"orderId,omitempty"`
	OrderListId         *int64  `json:"orderListId,omitempty"`
	OrigQty             *string `json:"origQty,omitempty"`
	Price               *string `json:"price,omitempty"`
	Side                *string `json:"side,omitempty"`
	Status              *string `json:"status,omitempty"`
	StopPrice           *string `json:"stopPrice,omitempty"`
	Symbol              *string `json:"symbol,omitempty"`
	TimeInForce         *string `json:"timeInForce,omitempty"`
	TransactTime        *int64  `json:"transactTime,omitempty"`
	Type                *string `json:"type,omitempty"`
}

CreateMarginOrderOcoV1RespOrderReportsInner struct for CreateMarginOrderOcoV1RespOrderReportsInner

func NewCreateMarginOrderOcoV1RespOrderReportsInner

func NewCreateMarginOrderOcoV1RespOrderReportsInner() *CreateMarginOrderOcoV1RespOrderReportsInner

NewCreateMarginOrderOcoV1RespOrderReportsInner instantiates a new CreateMarginOrderOcoV1RespOrderReportsInner 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 NewCreateMarginOrderOcoV1RespOrderReportsInnerWithDefaults

func NewCreateMarginOrderOcoV1RespOrderReportsInnerWithDefaults() *CreateMarginOrderOcoV1RespOrderReportsInner

NewCreateMarginOrderOcoV1RespOrderReportsInnerWithDefaults instantiates a new CreateMarginOrderOcoV1RespOrderReportsInner 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 (*CreateMarginOrderOcoV1RespOrderReportsInner) GetClientOrderId

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetClientOrderIdOk

func (o *CreateMarginOrderOcoV1RespOrderReportsInner) GetClientOrderIdOk() (*string, bool)

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetCummulativeQuoteQty

func (o *CreateMarginOrderOcoV1RespOrderReportsInner) GetCummulativeQuoteQty() string

GetCummulativeQuoteQty returns the CummulativeQuoteQty field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetCummulativeQuoteQtyOk

func (o *CreateMarginOrderOcoV1RespOrderReportsInner) GetCummulativeQuoteQtyOk() (*string, bool)

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetExecutedQty

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetExecutedQtyOk

func (o *CreateMarginOrderOcoV1RespOrderReportsInner) GetExecutedQtyOk() (*string, bool)

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetOrderId

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetOrderIdOk

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetOrderListId

GetOrderListId returns the OrderListId field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetOrderListIdOk

func (o *CreateMarginOrderOcoV1RespOrderReportsInner) GetOrderListIdOk() (*int64, bool)

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetOrigQty

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetOrigQtyOk

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetPriceOk

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetSideOk

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetStatus

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetStatusOk

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 (*CreateMarginOrderOcoV1RespOrderReportsInner) GetStopPrice

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetStopPriceOk

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetSymbol

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetSymbolOk

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 (*CreateMarginOrderOcoV1RespOrderReportsInner) GetTimeInForce

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetTimeInForceOk

func (o *CreateMarginOrderOcoV1RespOrderReportsInner) GetTimeInForceOk() (*string, bool)

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetTransactTime

GetTransactTime returns the TransactTime field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetTransactTimeOk

func (o *CreateMarginOrderOcoV1RespOrderReportsInner) GetTransactTimeOk() (*int64, bool)

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetType

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) GetTypeOk

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 (*CreateMarginOrderOcoV1RespOrderReportsInner) HasClientOrderId

func (o *CreateMarginOrderOcoV1RespOrderReportsInner) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasCummulativeQuoteQty

func (o *CreateMarginOrderOcoV1RespOrderReportsInner) HasCummulativeQuoteQty() bool

HasCummulativeQuoteQty returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasExecutedQty

HasExecutedQty returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasOrderId

HasOrderId returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasOrderListId

HasOrderListId returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasOrigQty

HasOrigQty returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasPrice

HasPrice returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasSide

HasSide returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasStatus

HasStatus returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasStopPrice

HasStopPrice returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasTimeInForce

HasTimeInForce returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasTransactTime

HasTransactTime returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) HasType

HasType returns a boolean if a field has been set.

func (CreateMarginOrderOcoV1RespOrderReportsInner) MarshalJSON

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetClientOrderId

func (o *CreateMarginOrderOcoV1RespOrderReportsInner) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetCummulativeQuoteQty

func (o *CreateMarginOrderOcoV1RespOrderReportsInner) SetCummulativeQuoteQty(v string)

SetCummulativeQuoteQty gets a reference to the given string and assigns it to the CummulativeQuoteQty field.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetExecutedQty

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetOrderId

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetOrderListId

SetOrderListId gets a reference to the given int64 and assigns it to the OrderListId field.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetOrigQty

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetPrice

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetSide

SetSide gets a reference to the given string and assigns it to the Side field.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetStatus

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetStopPrice

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetSymbol

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

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetTimeInForce

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetTransactTime

func (o *CreateMarginOrderOcoV1RespOrderReportsInner) SetTransactTime(v int64)

SetTransactTime gets a reference to the given int64 and assigns it to the TransactTime field.

func (*CreateMarginOrderOcoV1RespOrderReportsInner) SetType

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

func (CreateMarginOrderOcoV1RespOrderReportsInner) ToMap

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

type CreateMarginOrderOcoV1RespOrdersInner

type CreateMarginOrderOcoV1RespOrdersInner struct {
	ClientOrderId *string `json:"clientOrderId,omitempty"`
	OrderId       *int64  `json:"orderId,omitempty"`
	Symbol        *string `json:"symbol,omitempty"`
}

CreateMarginOrderOcoV1RespOrdersInner struct for CreateMarginOrderOcoV1RespOrdersInner

func NewCreateMarginOrderOcoV1RespOrdersInner

func NewCreateMarginOrderOcoV1RespOrdersInner() *CreateMarginOrderOcoV1RespOrdersInner

NewCreateMarginOrderOcoV1RespOrdersInner instantiates a new CreateMarginOrderOcoV1RespOrdersInner 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 NewCreateMarginOrderOcoV1RespOrdersInnerWithDefaults

func NewCreateMarginOrderOcoV1RespOrdersInnerWithDefaults() *CreateMarginOrderOcoV1RespOrdersInner

NewCreateMarginOrderOcoV1RespOrdersInnerWithDefaults instantiates a new CreateMarginOrderOcoV1RespOrdersInner 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 (*CreateMarginOrderOcoV1RespOrdersInner) GetClientOrderId

func (o *CreateMarginOrderOcoV1RespOrdersInner) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrdersInner) GetClientOrderIdOk

func (o *CreateMarginOrderOcoV1RespOrdersInner) GetClientOrderIdOk() (*string, bool)

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

func (*CreateMarginOrderOcoV1RespOrdersInner) GetOrderId

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*CreateMarginOrderOcoV1RespOrdersInner) GetOrderIdOk

func (o *CreateMarginOrderOcoV1RespOrdersInner) GetOrderIdOk() (*int64, bool)

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

func (*CreateMarginOrderOcoV1RespOrdersInner) GetSymbol

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

func (*CreateMarginOrderOcoV1RespOrdersInner) GetSymbolOk

func (o *CreateMarginOrderOcoV1RespOrdersInner) 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 (*CreateMarginOrderOcoV1RespOrdersInner) HasClientOrderId

func (o *CreateMarginOrderOcoV1RespOrdersInner) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrdersInner) HasOrderId

HasOrderId returns a boolean if a field has been set.

func (*CreateMarginOrderOcoV1RespOrdersInner) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (CreateMarginOrderOcoV1RespOrdersInner) MarshalJSON

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

func (*CreateMarginOrderOcoV1RespOrdersInner) SetClientOrderId

func (o *CreateMarginOrderOcoV1RespOrdersInner) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*CreateMarginOrderOcoV1RespOrdersInner) SetOrderId

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*CreateMarginOrderOcoV1RespOrdersInner) SetSymbol

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

func (CreateMarginOrderOcoV1RespOrdersInner) ToMap

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

type CreateMarginOrderV1Resp

type CreateMarginOrderV1Resp struct {
	ClientOrderId         *string                             `json:"clientOrderId,omitempty"`
	CummulativeQuoteQty   *string                             `json:"cummulativeQuoteQty,omitempty"`
	ExecutedQty           *string                             `json:"executedQty,omitempty"`
	Fills                 []CreateMarginOrderV1RespFillsInner `json:"fills,omitempty"`
	MarginBuyBorrowAmount *int32                              `json:"marginBuyBorrowAmount,omitempty"`
	MarginBuyBorrowAsset  *string                             `json:"marginBuyBorrowAsset,omitempty"`
	OrderId               *int64                              `json:"orderId,omitempty"`
	OrigQty               *string                             `json:"origQty,omitempty"`
	Price                 *string                             `json:"price,omitempty"`
	Side                  *string                             `json:"side,omitempty"`
	Status                *string                             `json:"status,omitempty"`
	Symbol                *string                             `json:"symbol,omitempty"`
	TimeInForce           *string                             `json:"timeInForce,omitempty"`
	TransactTime          *int64                              `json:"transactTime,omitempty"`
	Type                  *string                             `json:"type,omitempty"`
}

CreateMarginOrderV1Resp struct for CreateMarginOrderV1Resp

func NewCreateMarginOrderV1Resp

func NewCreateMarginOrderV1Resp() *CreateMarginOrderV1Resp

NewCreateMarginOrderV1Resp instantiates a new CreateMarginOrderV1Resp 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 NewCreateMarginOrderV1RespWithDefaults

func NewCreateMarginOrderV1RespWithDefaults() *CreateMarginOrderV1Resp

NewCreateMarginOrderV1RespWithDefaults instantiates a new CreateMarginOrderV1Resp 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 (*CreateMarginOrderV1Resp) GetClientOrderId

func (o *CreateMarginOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*CreateMarginOrderV1Resp) GetClientOrderIdOk

func (o *CreateMarginOrderV1Resp) GetClientOrderIdOk() (*string, bool)

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

func (*CreateMarginOrderV1Resp) GetCummulativeQuoteQty

func (o *CreateMarginOrderV1Resp) GetCummulativeQuoteQty() string

GetCummulativeQuoteQty returns the CummulativeQuoteQty field value if set, zero value otherwise.

func (*CreateMarginOrderV1Resp) GetCummulativeQuoteQtyOk

func (o *CreateMarginOrderV1Resp) GetCummulativeQuoteQtyOk() (*string, bool)

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

func (*CreateMarginOrderV1Resp) GetExecutedQty

func (o *CreateMarginOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*CreateMarginOrderV1Resp) GetExecutedQtyOk

func (o *CreateMarginOrderV1Resp) GetExecutedQtyOk() (*string, bool)

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

func (*CreateMarginOrderV1Resp) GetFills

GetFills returns the Fills field value if set, zero value otherwise.

func (*CreateMarginOrderV1Resp) GetFillsOk

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

func (*CreateMarginOrderV1Resp) GetMarginBuyBorrowAmount

func (o *CreateMarginOrderV1Resp) GetMarginBuyBorrowAmount() int32

GetMarginBuyBorrowAmount returns the MarginBuyBorrowAmount field value if set, zero value otherwise.

func (*CreateMarginOrderV1Resp) GetMarginBuyBorrowAmountOk

func (o *CreateMarginOrderV1Resp) GetMarginBuyBorrowAmountOk() (*int32, bool)

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

func (*CreateMarginOrderV1Resp) GetMarginBuyBorrowAsset

func (o *CreateMarginOrderV1Resp) GetMarginBuyBorrowAsset() string

GetMarginBuyBorrowAsset returns the MarginBuyBorrowAsset field value if set, zero value otherwise.

func (*CreateMarginOrderV1Resp) GetMarginBuyBorrowAssetOk

func (o *CreateMarginOrderV1Resp) GetMarginBuyBorrowAssetOk() (*string, bool)

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

func (*CreateMarginOrderV1Resp) GetOrderId

func (o *CreateMarginOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*CreateMarginOrderV1Resp) GetOrderIdOk

func (o *CreateMarginOrderV1Resp) GetOrderIdOk() (*int64, bool)

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

func (*CreateMarginOrderV1Resp) GetOrigQty

func (o *CreateMarginOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*CreateMarginOrderV1Resp) GetOrigQtyOk

func (o *CreateMarginOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*CreateMarginOrderV1Resp) GetPrice

func (o *CreateMarginOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*CreateMarginOrderV1Resp) GetPriceOk

func (o *CreateMarginOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*CreateMarginOrderV1Resp) GetSide

func (o *CreateMarginOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*CreateMarginOrderV1Resp) GetSideOk

func (o *CreateMarginOrderV1Resp) GetSideOk() (*string, bool)

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

func (*CreateMarginOrderV1Resp) GetStatus

func (o *CreateMarginOrderV1Resp) GetStatus() string

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

func (*CreateMarginOrderV1Resp) GetStatusOk

func (o *CreateMarginOrderV1Resp) 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 (*CreateMarginOrderV1Resp) GetSymbol

func (o *CreateMarginOrderV1Resp) GetSymbol() string

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

func (*CreateMarginOrderV1Resp) GetSymbolOk

func (o *CreateMarginOrderV1Resp) 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 (*CreateMarginOrderV1Resp) GetTimeInForce

func (o *CreateMarginOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*CreateMarginOrderV1Resp) GetTimeInForceOk

func (o *CreateMarginOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*CreateMarginOrderV1Resp) GetTransactTime

func (o *CreateMarginOrderV1Resp) GetTransactTime() int64

GetTransactTime returns the TransactTime field value if set, zero value otherwise.

func (*CreateMarginOrderV1Resp) GetTransactTimeOk

func (o *CreateMarginOrderV1Resp) GetTransactTimeOk() (*int64, bool)

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

func (*CreateMarginOrderV1Resp) GetType

func (o *CreateMarginOrderV1Resp) GetType() string

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

func (*CreateMarginOrderV1Resp) GetTypeOk

func (o *CreateMarginOrderV1Resp) 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 (*CreateMarginOrderV1Resp) HasClientOrderId

func (o *CreateMarginOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasCummulativeQuoteQty

func (o *CreateMarginOrderV1Resp) HasCummulativeQuoteQty() bool

HasCummulativeQuoteQty returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasExecutedQty

func (o *CreateMarginOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasFills

func (o *CreateMarginOrderV1Resp) HasFills() bool

HasFills returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasMarginBuyBorrowAmount

func (o *CreateMarginOrderV1Resp) HasMarginBuyBorrowAmount() bool

HasMarginBuyBorrowAmount returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasMarginBuyBorrowAsset

func (o *CreateMarginOrderV1Resp) HasMarginBuyBorrowAsset() bool

HasMarginBuyBorrowAsset returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasOrderId

func (o *CreateMarginOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasOrigQty

func (o *CreateMarginOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasPrice

func (o *CreateMarginOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasSide

func (o *CreateMarginOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasStatus

func (o *CreateMarginOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasSymbol

func (o *CreateMarginOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasTimeInForce

func (o *CreateMarginOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasTransactTime

func (o *CreateMarginOrderV1Resp) HasTransactTime() bool

HasTransactTime returns a boolean if a field has been set.

func (*CreateMarginOrderV1Resp) HasType

func (o *CreateMarginOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (CreateMarginOrderV1Resp) MarshalJSON

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

func (*CreateMarginOrderV1Resp) SetClientOrderId

func (o *CreateMarginOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*CreateMarginOrderV1Resp) SetCummulativeQuoteQty

func (o *CreateMarginOrderV1Resp) SetCummulativeQuoteQty(v string)

SetCummulativeQuoteQty gets a reference to the given string and assigns it to the CummulativeQuoteQty field.

func (*CreateMarginOrderV1Resp) SetExecutedQty

func (o *CreateMarginOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*CreateMarginOrderV1Resp) SetFills

SetFills gets a reference to the given []CreateMarginOrderV1RespFillsInner and assigns it to the Fills field.

func (*CreateMarginOrderV1Resp) SetMarginBuyBorrowAmount

func (o *CreateMarginOrderV1Resp) SetMarginBuyBorrowAmount(v int32)

SetMarginBuyBorrowAmount gets a reference to the given int32 and assigns it to the MarginBuyBorrowAmount field.

func (*CreateMarginOrderV1Resp) SetMarginBuyBorrowAsset

func (o *CreateMarginOrderV1Resp) SetMarginBuyBorrowAsset(v string)

SetMarginBuyBorrowAsset gets a reference to the given string and assigns it to the MarginBuyBorrowAsset field.

func (*CreateMarginOrderV1Resp) SetOrderId

func (o *CreateMarginOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*CreateMarginOrderV1Resp) SetOrigQty

func (o *CreateMarginOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*CreateMarginOrderV1Resp) SetPrice

func (o *CreateMarginOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*CreateMarginOrderV1Resp) SetSide

func (o *CreateMarginOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*CreateMarginOrderV1Resp) SetStatus

func (o *CreateMarginOrderV1Resp) SetStatus(v string)

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

func (*CreateMarginOrderV1Resp) SetSymbol

func (o *CreateMarginOrderV1Resp) SetSymbol(v string)

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

func (*CreateMarginOrderV1Resp) SetTimeInForce

func (o *CreateMarginOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*CreateMarginOrderV1Resp) SetTransactTime

func (o *CreateMarginOrderV1Resp) SetTransactTime(v int64)

SetTransactTime gets a reference to the given int64 and assigns it to the TransactTime field.

func (*CreateMarginOrderV1Resp) SetType

func (o *CreateMarginOrderV1Resp) SetType(v string)

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

func (CreateMarginOrderV1Resp) ToMap

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

type CreateMarginOrderV1RespFillsInner

type CreateMarginOrderV1RespFillsInner struct {
	Commission      *string `json:"commission,omitempty"`
	CommissionAsset *string `json:"commissionAsset,omitempty"`
	Price           *string `json:"price,omitempty"`
	Qty             *string `json:"qty,omitempty"`
}

CreateMarginOrderV1RespFillsInner struct for CreateMarginOrderV1RespFillsInner

func NewCreateMarginOrderV1RespFillsInner

func NewCreateMarginOrderV1RespFillsInner() *CreateMarginOrderV1RespFillsInner

NewCreateMarginOrderV1RespFillsInner instantiates a new CreateMarginOrderV1RespFillsInner 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 NewCreateMarginOrderV1RespFillsInnerWithDefaults

func NewCreateMarginOrderV1RespFillsInnerWithDefaults() *CreateMarginOrderV1RespFillsInner

NewCreateMarginOrderV1RespFillsInnerWithDefaults instantiates a new CreateMarginOrderV1RespFillsInner 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 (*CreateMarginOrderV1RespFillsInner) GetCommission

func (o *CreateMarginOrderV1RespFillsInner) GetCommission() string

GetCommission returns the Commission field value if set, zero value otherwise.

func (*CreateMarginOrderV1RespFillsInner) GetCommissionAsset

func (o *CreateMarginOrderV1RespFillsInner) GetCommissionAsset() string

GetCommissionAsset returns the CommissionAsset field value if set, zero value otherwise.

func (*CreateMarginOrderV1RespFillsInner) GetCommissionAssetOk

func (o *CreateMarginOrderV1RespFillsInner) GetCommissionAssetOk() (*string, bool)

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

func (*CreateMarginOrderV1RespFillsInner) GetCommissionOk

func (o *CreateMarginOrderV1RespFillsInner) GetCommissionOk() (*string, bool)

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

func (*CreateMarginOrderV1RespFillsInner) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*CreateMarginOrderV1RespFillsInner) GetPriceOk

func (o *CreateMarginOrderV1RespFillsInner) GetPriceOk() (*string, bool)

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

func (*CreateMarginOrderV1RespFillsInner) GetQty

GetQty returns the Qty field value if set, zero value otherwise.

func (*CreateMarginOrderV1RespFillsInner) GetQtyOk

func (o *CreateMarginOrderV1RespFillsInner) GetQtyOk() (*string, bool)

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

func (*CreateMarginOrderV1RespFillsInner) HasCommission

func (o *CreateMarginOrderV1RespFillsInner) HasCommission() bool

HasCommission returns a boolean if a field has been set.

func (*CreateMarginOrderV1RespFillsInner) HasCommissionAsset

func (o *CreateMarginOrderV1RespFillsInner) HasCommissionAsset() bool

HasCommissionAsset returns a boolean if a field has been set.

func (*CreateMarginOrderV1RespFillsInner) HasPrice

HasPrice returns a boolean if a field has been set.

func (*CreateMarginOrderV1RespFillsInner) HasQty

HasQty returns a boolean if a field has been set.

func (CreateMarginOrderV1RespFillsInner) MarshalJSON

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

func (*CreateMarginOrderV1RespFillsInner) SetCommission

func (o *CreateMarginOrderV1RespFillsInner) SetCommission(v string)

SetCommission gets a reference to the given string and assigns it to the Commission field.

func (*CreateMarginOrderV1RespFillsInner) SetCommissionAsset

func (o *CreateMarginOrderV1RespFillsInner) SetCommissionAsset(v string)

SetCommissionAsset gets a reference to the given string and assigns it to the CommissionAsset field.

func (*CreateMarginOrderV1RespFillsInner) SetPrice

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*CreateMarginOrderV1RespFillsInner) SetQty

SetQty gets a reference to the given string and assigns it to the Qty field.

func (CreateMarginOrderV1RespFillsInner) ToMap

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

type CreateMarginRepayDebtV1Resp

type CreateMarginRepayDebtV1Resp struct {
	Amount             *string  `json:"amount,omitempty"`
	Asset              *string  `json:"asset,omitempty"`
	SpecifyRepayAssets []string `json:"specifyRepayAssets,omitempty"`
	Success            *bool    `json:"success,omitempty"`
	UpdateTime         *int64   `json:"updateTime,omitempty"`
}

CreateMarginRepayDebtV1Resp struct for CreateMarginRepayDebtV1Resp

func NewCreateMarginRepayDebtV1Resp

func NewCreateMarginRepayDebtV1Resp() *CreateMarginRepayDebtV1Resp

NewCreateMarginRepayDebtV1Resp instantiates a new CreateMarginRepayDebtV1Resp 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 NewCreateMarginRepayDebtV1RespWithDefaults

func NewCreateMarginRepayDebtV1RespWithDefaults() *CreateMarginRepayDebtV1Resp

NewCreateMarginRepayDebtV1RespWithDefaults instantiates a new CreateMarginRepayDebtV1Resp 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 (*CreateMarginRepayDebtV1Resp) GetAmount

func (o *CreateMarginRepayDebtV1Resp) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*CreateMarginRepayDebtV1Resp) GetAmountOk

func (o *CreateMarginRepayDebtV1Resp) GetAmountOk() (*string, bool)

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

func (*CreateMarginRepayDebtV1Resp) GetAsset

func (o *CreateMarginRepayDebtV1Resp) GetAsset() string

GetAsset returns the Asset field value if set, zero value otherwise.

func (*CreateMarginRepayDebtV1Resp) GetAssetOk

func (o *CreateMarginRepayDebtV1Resp) GetAssetOk() (*string, bool)

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

func (*CreateMarginRepayDebtV1Resp) GetSpecifyRepayAssets

func (o *CreateMarginRepayDebtV1Resp) GetSpecifyRepayAssets() []string

GetSpecifyRepayAssets returns the SpecifyRepayAssets field value if set, zero value otherwise.

func (*CreateMarginRepayDebtV1Resp) GetSpecifyRepayAssetsOk

func (o *CreateMarginRepayDebtV1Resp) GetSpecifyRepayAssetsOk() ([]string, bool)

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

func (*CreateMarginRepayDebtV1Resp) GetSuccess

func (o *CreateMarginRepayDebtV1Resp) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*CreateMarginRepayDebtV1Resp) GetSuccessOk

func (o *CreateMarginRepayDebtV1Resp) GetSuccessOk() (*bool, bool)

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

func (*CreateMarginRepayDebtV1Resp) GetUpdateTime

func (o *CreateMarginRepayDebtV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*CreateMarginRepayDebtV1Resp) GetUpdateTimeOk

func (o *CreateMarginRepayDebtV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*CreateMarginRepayDebtV1Resp) HasAmount

func (o *CreateMarginRepayDebtV1Resp) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*CreateMarginRepayDebtV1Resp) HasAsset

func (o *CreateMarginRepayDebtV1Resp) HasAsset() bool

HasAsset returns a boolean if a field has been set.

func (*CreateMarginRepayDebtV1Resp) HasSpecifyRepayAssets

func (o *CreateMarginRepayDebtV1Resp) HasSpecifyRepayAssets() bool

HasSpecifyRepayAssets returns a boolean if a field has been set.

func (*CreateMarginRepayDebtV1Resp) HasSuccess

func (o *CreateMarginRepayDebtV1Resp) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (*CreateMarginRepayDebtV1Resp) HasUpdateTime

func (o *CreateMarginRepayDebtV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (CreateMarginRepayDebtV1Resp) MarshalJSON

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

func (*CreateMarginRepayDebtV1Resp) SetAmount

func (o *CreateMarginRepayDebtV1Resp) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*CreateMarginRepayDebtV1Resp) SetAsset

func (o *CreateMarginRepayDebtV1Resp) SetAsset(v string)

SetAsset gets a reference to the given string and assigns it to the Asset field.

func (*CreateMarginRepayDebtV1Resp) SetSpecifyRepayAssets

func (o *CreateMarginRepayDebtV1Resp) SetSpecifyRepayAssets(v []string)

SetSpecifyRepayAssets gets a reference to the given []string and assigns it to the SpecifyRepayAssets field.

func (*CreateMarginRepayDebtV1Resp) SetSuccess

func (o *CreateMarginRepayDebtV1Resp) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*CreateMarginRepayDebtV1Resp) SetUpdateTime

func (o *CreateMarginRepayDebtV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (CreateMarginRepayDebtV1Resp) ToMap

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

type CreateRepayFuturesNegativeBalanceV1Resp

type CreateRepayFuturesNegativeBalanceV1Resp struct {
	Msg *string `json:"msg,omitempty"`
}

CreateRepayFuturesNegativeBalanceV1Resp struct for CreateRepayFuturesNegativeBalanceV1Resp

func NewCreateRepayFuturesNegativeBalanceV1Resp

func NewCreateRepayFuturesNegativeBalanceV1Resp() *CreateRepayFuturesNegativeBalanceV1Resp

NewCreateRepayFuturesNegativeBalanceV1Resp instantiates a new CreateRepayFuturesNegativeBalanceV1Resp 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 NewCreateRepayFuturesNegativeBalanceV1RespWithDefaults

func NewCreateRepayFuturesNegativeBalanceV1RespWithDefaults() *CreateRepayFuturesNegativeBalanceV1Resp

NewCreateRepayFuturesNegativeBalanceV1RespWithDefaults instantiates a new CreateRepayFuturesNegativeBalanceV1Resp 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 (*CreateRepayFuturesNegativeBalanceV1Resp) GetMsg

GetMsg returns the Msg field value if set, zero value otherwise.

func (*CreateRepayFuturesNegativeBalanceV1Resp) GetMsgOk

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

func (*CreateRepayFuturesNegativeBalanceV1Resp) HasMsg

HasMsg returns a boolean if a field has been set.

func (CreateRepayFuturesNegativeBalanceV1Resp) MarshalJSON

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

func (*CreateRepayFuturesNegativeBalanceV1Resp) SetMsg

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (CreateRepayFuturesNegativeBalanceV1Resp) ToMap

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

type CreateRepayFuturesSwitchV1Resp

type CreateRepayFuturesSwitchV1Resp struct {
	Msg *string `json:"msg,omitempty"`
}

CreateRepayFuturesSwitchV1Resp struct for CreateRepayFuturesSwitchV1Resp

func NewCreateRepayFuturesSwitchV1Resp

func NewCreateRepayFuturesSwitchV1Resp() *CreateRepayFuturesSwitchV1Resp

NewCreateRepayFuturesSwitchV1Resp instantiates a new CreateRepayFuturesSwitchV1Resp 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 NewCreateRepayFuturesSwitchV1RespWithDefaults

func NewCreateRepayFuturesSwitchV1RespWithDefaults() *CreateRepayFuturesSwitchV1Resp

NewCreateRepayFuturesSwitchV1RespWithDefaults instantiates a new CreateRepayFuturesSwitchV1Resp 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 (*CreateRepayFuturesSwitchV1Resp) GetMsg

GetMsg returns the Msg field value if set, zero value otherwise.

func (*CreateRepayFuturesSwitchV1Resp) GetMsgOk

func (o *CreateRepayFuturesSwitchV1Resp) GetMsgOk() (*string, bool)

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

func (*CreateRepayFuturesSwitchV1Resp) HasMsg

HasMsg returns a boolean if a field has been set.

func (CreateRepayFuturesSwitchV1Resp) MarshalJSON

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

func (*CreateRepayFuturesSwitchV1Resp) SetMsg

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (CreateRepayFuturesSwitchV1Resp) ToMap

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

type CreateRepayLoanV1Resp

type CreateRepayLoanV1Resp struct {
	TranId *int64 `json:"tranId,omitempty"`
}

CreateRepayLoanV1Resp struct for CreateRepayLoanV1Resp

func NewCreateRepayLoanV1Resp

func NewCreateRepayLoanV1Resp() *CreateRepayLoanV1Resp

NewCreateRepayLoanV1Resp instantiates a new CreateRepayLoanV1Resp 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 NewCreateRepayLoanV1RespWithDefaults

func NewCreateRepayLoanV1RespWithDefaults() *CreateRepayLoanV1Resp

NewCreateRepayLoanV1RespWithDefaults instantiates a new CreateRepayLoanV1Resp 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 (*CreateRepayLoanV1Resp) GetTranId

func (o *CreateRepayLoanV1Resp) GetTranId() int64

GetTranId returns the TranId field value if set, zero value otherwise.

func (*CreateRepayLoanV1Resp) GetTranIdOk

func (o *CreateRepayLoanV1Resp) GetTranIdOk() (*int64, bool)

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

func (*CreateRepayLoanV1Resp) HasTranId

func (o *CreateRepayLoanV1Resp) HasTranId() bool

HasTranId returns a boolean if a field has been set.

func (CreateRepayLoanV1Resp) MarshalJSON

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

func (*CreateRepayLoanV1Resp) SetTranId

func (o *CreateRepayLoanV1Resp) SetTranId(v int64)

SetTranId gets a reference to the given int64 and assigns it to the TranId field.

func (CreateRepayLoanV1Resp) ToMap

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

type CreateUmConditionalOrderV1Resp

type CreateUmConditionalOrderV1Resp struct {
	ActivatePrice           *string `json:"activatePrice,omitempty"`
	BookTime                *int64  `json:"bookTime,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	NewClientStrategyId     *string `json:"newClientStrategyId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceMatch              *string `json:"priceMatch,omitempty"`
	PriceProtect            *bool   `json:"priceProtect,omitempty"`
	PriceRate               *string `json:"priceRate,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	StopPrice               *string `json:"stopPrice,omitempty"`
	StrategyId              *int64  `json:"strategyId,omitempty"`
	StrategyStatus          *string `json:"strategyStatus,omitempty"`
	StrategyType            *string `json:"strategyType,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
	WorkingType             *string `json:"workingType,omitempty"`
}

CreateUmConditionalOrderV1Resp struct for CreateUmConditionalOrderV1Resp

func NewCreateUmConditionalOrderV1Resp

func NewCreateUmConditionalOrderV1Resp() *CreateUmConditionalOrderV1Resp

NewCreateUmConditionalOrderV1Resp instantiates a new CreateUmConditionalOrderV1Resp 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 NewCreateUmConditionalOrderV1RespWithDefaults

func NewCreateUmConditionalOrderV1RespWithDefaults() *CreateUmConditionalOrderV1Resp

NewCreateUmConditionalOrderV1RespWithDefaults instantiates a new CreateUmConditionalOrderV1Resp 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 (*CreateUmConditionalOrderV1Resp) GetActivatePrice

func (o *CreateUmConditionalOrderV1Resp) GetActivatePrice() string

GetActivatePrice returns the ActivatePrice field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetActivatePriceOk

func (o *CreateUmConditionalOrderV1Resp) GetActivatePriceOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetBookTime

func (o *CreateUmConditionalOrderV1Resp) GetBookTime() int64

GetBookTime returns the BookTime field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetBookTimeOk

func (o *CreateUmConditionalOrderV1Resp) GetBookTimeOk() (*int64, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetGoodTillDate

func (o *CreateUmConditionalOrderV1Resp) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetGoodTillDateOk

func (o *CreateUmConditionalOrderV1Resp) GetGoodTillDateOk() (*int64, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetNewClientStrategyId

func (o *CreateUmConditionalOrderV1Resp) GetNewClientStrategyId() string

GetNewClientStrategyId returns the NewClientStrategyId field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetNewClientStrategyIdOk

func (o *CreateUmConditionalOrderV1Resp) GetNewClientStrategyIdOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetOrigQty

func (o *CreateUmConditionalOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetOrigQtyOk

func (o *CreateUmConditionalOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetPositionSide

func (o *CreateUmConditionalOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetPositionSideOk

func (o *CreateUmConditionalOrderV1Resp) GetPositionSideOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetPrice

func (o *CreateUmConditionalOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetPriceMatch

func (o *CreateUmConditionalOrderV1Resp) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetPriceMatchOk

func (o *CreateUmConditionalOrderV1Resp) GetPriceMatchOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetPriceOk

func (o *CreateUmConditionalOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetPriceProtect

func (o *CreateUmConditionalOrderV1Resp) GetPriceProtect() bool

GetPriceProtect returns the PriceProtect field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetPriceProtectOk

func (o *CreateUmConditionalOrderV1Resp) GetPriceProtectOk() (*bool, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetPriceRate

func (o *CreateUmConditionalOrderV1Resp) GetPriceRate() string

GetPriceRate returns the PriceRate field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetPriceRateOk

func (o *CreateUmConditionalOrderV1Resp) GetPriceRateOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetReduceOnly

func (o *CreateUmConditionalOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetReduceOnlyOk

func (o *CreateUmConditionalOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetSelfTradePreventionMode

func (o *CreateUmConditionalOrderV1Resp) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetSelfTradePreventionModeOk

func (o *CreateUmConditionalOrderV1Resp) GetSelfTradePreventionModeOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetSideOk

func (o *CreateUmConditionalOrderV1Resp) GetSideOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetStopPrice

func (o *CreateUmConditionalOrderV1Resp) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetStopPriceOk

func (o *CreateUmConditionalOrderV1Resp) GetStopPriceOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetStrategyId

func (o *CreateUmConditionalOrderV1Resp) GetStrategyId() int64

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetStrategyIdOk

func (o *CreateUmConditionalOrderV1Resp) GetStrategyIdOk() (*int64, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetStrategyStatus

func (o *CreateUmConditionalOrderV1Resp) GetStrategyStatus() string

GetStrategyStatus returns the StrategyStatus field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetStrategyStatusOk

func (o *CreateUmConditionalOrderV1Resp) GetStrategyStatusOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetStrategyType

func (o *CreateUmConditionalOrderV1Resp) GetStrategyType() string

GetStrategyType returns the StrategyType field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetStrategyTypeOk

func (o *CreateUmConditionalOrderV1Resp) GetStrategyTypeOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetSymbol

func (o *CreateUmConditionalOrderV1Resp) GetSymbol() string

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

func (*CreateUmConditionalOrderV1Resp) GetSymbolOk

func (o *CreateUmConditionalOrderV1Resp) 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 (*CreateUmConditionalOrderV1Resp) GetTimeInForce

func (o *CreateUmConditionalOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetTimeInForceOk

func (o *CreateUmConditionalOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetUpdateTime

func (o *CreateUmConditionalOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetUpdateTimeOk

func (o *CreateUmConditionalOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*CreateUmConditionalOrderV1Resp) GetWorkingType

func (o *CreateUmConditionalOrderV1Resp) GetWorkingType() string

GetWorkingType returns the WorkingType field value if set, zero value otherwise.

func (*CreateUmConditionalOrderV1Resp) GetWorkingTypeOk

func (o *CreateUmConditionalOrderV1Resp) GetWorkingTypeOk() (*string, bool)

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

func (*CreateUmConditionalOrderV1Resp) HasActivatePrice

func (o *CreateUmConditionalOrderV1Resp) HasActivatePrice() bool

HasActivatePrice returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasBookTime

func (o *CreateUmConditionalOrderV1Resp) HasBookTime() bool

HasBookTime returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasGoodTillDate

func (o *CreateUmConditionalOrderV1Resp) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasNewClientStrategyId

func (o *CreateUmConditionalOrderV1Resp) HasNewClientStrategyId() bool

HasNewClientStrategyId returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasOrigQty

func (o *CreateUmConditionalOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasPositionSide

func (o *CreateUmConditionalOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasPrice

func (o *CreateUmConditionalOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasPriceMatch

func (o *CreateUmConditionalOrderV1Resp) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasPriceProtect

func (o *CreateUmConditionalOrderV1Resp) HasPriceProtect() bool

HasPriceProtect returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasPriceRate

func (o *CreateUmConditionalOrderV1Resp) HasPriceRate() bool

HasPriceRate returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasReduceOnly

func (o *CreateUmConditionalOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasSelfTradePreventionMode

func (o *CreateUmConditionalOrderV1Resp) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasSide

func (o *CreateUmConditionalOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasStopPrice

func (o *CreateUmConditionalOrderV1Resp) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasStrategyId

func (o *CreateUmConditionalOrderV1Resp) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasStrategyStatus

func (o *CreateUmConditionalOrderV1Resp) HasStrategyStatus() bool

HasStrategyStatus returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasStrategyType

func (o *CreateUmConditionalOrderV1Resp) HasStrategyType() bool

HasStrategyType returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasSymbol

func (o *CreateUmConditionalOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasTimeInForce

func (o *CreateUmConditionalOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasUpdateTime

func (o *CreateUmConditionalOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (*CreateUmConditionalOrderV1Resp) HasWorkingType

func (o *CreateUmConditionalOrderV1Resp) HasWorkingType() bool

HasWorkingType returns a boolean if a field has been set.

func (CreateUmConditionalOrderV1Resp) MarshalJSON

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

func (*CreateUmConditionalOrderV1Resp) SetActivatePrice

func (o *CreateUmConditionalOrderV1Resp) SetActivatePrice(v string)

SetActivatePrice gets a reference to the given string and assigns it to the ActivatePrice field.

func (*CreateUmConditionalOrderV1Resp) SetBookTime

func (o *CreateUmConditionalOrderV1Resp) SetBookTime(v int64)

SetBookTime gets a reference to the given int64 and assigns it to the BookTime field.

func (*CreateUmConditionalOrderV1Resp) SetGoodTillDate

func (o *CreateUmConditionalOrderV1Resp) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*CreateUmConditionalOrderV1Resp) SetNewClientStrategyId

func (o *CreateUmConditionalOrderV1Resp) SetNewClientStrategyId(v string)

SetNewClientStrategyId gets a reference to the given string and assigns it to the NewClientStrategyId field.

func (*CreateUmConditionalOrderV1Resp) SetOrigQty

func (o *CreateUmConditionalOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*CreateUmConditionalOrderV1Resp) SetPositionSide

func (o *CreateUmConditionalOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*CreateUmConditionalOrderV1Resp) SetPrice

func (o *CreateUmConditionalOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*CreateUmConditionalOrderV1Resp) SetPriceMatch

func (o *CreateUmConditionalOrderV1Resp) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*CreateUmConditionalOrderV1Resp) SetPriceProtect

func (o *CreateUmConditionalOrderV1Resp) SetPriceProtect(v bool)

SetPriceProtect gets a reference to the given bool and assigns it to the PriceProtect field.

func (*CreateUmConditionalOrderV1Resp) SetPriceRate

func (o *CreateUmConditionalOrderV1Resp) SetPriceRate(v string)

SetPriceRate gets a reference to the given string and assigns it to the PriceRate field.

func (*CreateUmConditionalOrderV1Resp) SetReduceOnly

func (o *CreateUmConditionalOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*CreateUmConditionalOrderV1Resp) SetSelfTradePreventionMode

func (o *CreateUmConditionalOrderV1Resp) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*CreateUmConditionalOrderV1Resp) SetSide

func (o *CreateUmConditionalOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*CreateUmConditionalOrderV1Resp) SetStopPrice

func (o *CreateUmConditionalOrderV1Resp) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*CreateUmConditionalOrderV1Resp) SetStrategyId

func (o *CreateUmConditionalOrderV1Resp) SetStrategyId(v int64)

SetStrategyId gets a reference to the given int64 and assigns it to the StrategyId field.

func (*CreateUmConditionalOrderV1Resp) SetStrategyStatus

func (o *CreateUmConditionalOrderV1Resp) SetStrategyStatus(v string)

SetStrategyStatus gets a reference to the given string and assigns it to the StrategyStatus field.

func (*CreateUmConditionalOrderV1Resp) SetStrategyType

func (o *CreateUmConditionalOrderV1Resp) SetStrategyType(v string)

SetStrategyType gets a reference to the given string and assigns it to the StrategyType field.

func (*CreateUmConditionalOrderV1Resp) SetSymbol

func (o *CreateUmConditionalOrderV1Resp) SetSymbol(v string)

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

func (*CreateUmConditionalOrderV1Resp) SetTimeInForce

func (o *CreateUmConditionalOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*CreateUmConditionalOrderV1Resp) SetUpdateTime

func (o *CreateUmConditionalOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (*CreateUmConditionalOrderV1Resp) SetWorkingType

func (o *CreateUmConditionalOrderV1Resp) SetWorkingType(v string)

SetWorkingType gets a reference to the given string and assigns it to the WorkingType field.

func (CreateUmConditionalOrderV1Resp) ToMap

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

type CreateUmFeeBurnV1Resp

type CreateUmFeeBurnV1Resp struct {
	Code *int32  `json:"code,omitempty"`
	Msg  *string `json:"msg,omitempty"`
}

CreateUmFeeBurnV1Resp struct for CreateUmFeeBurnV1Resp

func NewCreateUmFeeBurnV1Resp

func NewCreateUmFeeBurnV1Resp() *CreateUmFeeBurnV1Resp

NewCreateUmFeeBurnV1Resp instantiates a new CreateUmFeeBurnV1Resp 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 NewCreateUmFeeBurnV1RespWithDefaults

func NewCreateUmFeeBurnV1RespWithDefaults() *CreateUmFeeBurnV1Resp

NewCreateUmFeeBurnV1RespWithDefaults instantiates a new CreateUmFeeBurnV1Resp 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 (*CreateUmFeeBurnV1Resp) GetCode

func (o *CreateUmFeeBurnV1Resp) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*CreateUmFeeBurnV1Resp) GetCodeOk

func (o *CreateUmFeeBurnV1Resp) GetCodeOk() (*int32, bool)

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

func (*CreateUmFeeBurnV1Resp) GetMsg

func (o *CreateUmFeeBurnV1Resp) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*CreateUmFeeBurnV1Resp) GetMsgOk

func (o *CreateUmFeeBurnV1Resp) GetMsgOk() (*string, bool)

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

func (*CreateUmFeeBurnV1Resp) HasCode

func (o *CreateUmFeeBurnV1Resp) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*CreateUmFeeBurnV1Resp) HasMsg

func (o *CreateUmFeeBurnV1Resp) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (CreateUmFeeBurnV1Resp) MarshalJSON

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

func (*CreateUmFeeBurnV1Resp) SetCode

func (o *CreateUmFeeBurnV1Resp) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*CreateUmFeeBurnV1Resp) SetMsg

func (o *CreateUmFeeBurnV1Resp) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (CreateUmFeeBurnV1Resp) ToMap

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

type CreateUmLeverageV1Resp

type CreateUmLeverageV1Resp struct {
	Leverage         *int32  `json:"leverage,omitempty"`
	MaxNotionalValue *string `json:"maxNotionalValue,omitempty"`
	Symbol           *string `json:"symbol,omitempty"`
}

CreateUmLeverageV1Resp struct for CreateUmLeverageV1Resp

func NewCreateUmLeverageV1Resp

func NewCreateUmLeverageV1Resp() *CreateUmLeverageV1Resp

NewCreateUmLeverageV1Resp instantiates a new CreateUmLeverageV1Resp 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 NewCreateUmLeverageV1RespWithDefaults

func NewCreateUmLeverageV1RespWithDefaults() *CreateUmLeverageV1Resp

NewCreateUmLeverageV1RespWithDefaults instantiates a new CreateUmLeverageV1Resp 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 (*CreateUmLeverageV1Resp) GetLeverage

func (o *CreateUmLeverageV1Resp) GetLeverage() int32

GetLeverage returns the Leverage field value if set, zero value otherwise.

func (*CreateUmLeverageV1Resp) GetLeverageOk

func (o *CreateUmLeverageV1Resp) GetLeverageOk() (*int32, bool)

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

func (*CreateUmLeverageV1Resp) GetMaxNotionalValue

func (o *CreateUmLeverageV1Resp) GetMaxNotionalValue() string

GetMaxNotionalValue returns the MaxNotionalValue field value if set, zero value otherwise.

func (*CreateUmLeverageV1Resp) GetMaxNotionalValueOk

func (o *CreateUmLeverageV1Resp) GetMaxNotionalValueOk() (*string, bool)

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

func (*CreateUmLeverageV1Resp) GetSymbol

func (o *CreateUmLeverageV1Resp) GetSymbol() string

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

func (*CreateUmLeverageV1Resp) GetSymbolOk

func (o *CreateUmLeverageV1Resp) 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 (*CreateUmLeverageV1Resp) HasLeverage

func (o *CreateUmLeverageV1Resp) HasLeverage() bool

HasLeverage returns a boolean if a field has been set.

func (*CreateUmLeverageV1Resp) HasMaxNotionalValue

func (o *CreateUmLeverageV1Resp) HasMaxNotionalValue() bool

HasMaxNotionalValue returns a boolean if a field has been set.

func (*CreateUmLeverageV1Resp) HasSymbol

func (o *CreateUmLeverageV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (CreateUmLeverageV1Resp) MarshalJSON

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

func (*CreateUmLeverageV1Resp) SetLeverage

func (o *CreateUmLeverageV1Resp) SetLeverage(v int32)

SetLeverage gets a reference to the given int32 and assigns it to the Leverage field.

func (*CreateUmLeverageV1Resp) SetMaxNotionalValue

func (o *CreateUmLeverageV1Resp) SetMaxNotionalValue(v string)

SetMaxNotionalValue gets a reference to the given string and assigns it to the MaxNotionalValue field.

func (*CreateUmLeverageV1Resp) SetSymbol

func (o *CreateUmLeverageV1Resp) SetSymbol(v string)

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

func (CreateUmLeverageV1Resp) ToMap

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

type CreateUmOrderV1Resp

type CreateUmOrderV1Resp struct {
	AvgPrice                *string `json:"avgPrice,omitempty"`
	ClientOrderId           *string `json:"clientOrderId,omitempty"`
	CumQty                  *string `json:"cumQty,omitempty"`
	CumQuote                *string `json:"cumQuote,omitempty"`
	ExecutedQty             *string `json:"executedQty,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	OrderId                 *int64  `json:"orderId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceMatch              *string `json:"priceMatch,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	Status                  *string `json:"status,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	Type                    *string `json:"type,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
}

CreateUmOrderV1Resp struct for CreateUmOrderV1Resp

func NewCreateUmOrderV1Resp

func NewCreateUmOrderV1Resp() *CreateUmOrderV1Resp

NewCreateUmOrderV1Resp instantiates a new CreateUmOrderV1Resp 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 NewCreateUmOrderV1RespWithDefaults

func NewCreateUmOrderV1RespWithDefaults() *CreateUmOrderV1Resp

NewCreateUmOrderV1RespWithDefaults instantiates a new CreateUmOrderV1Resp 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 (*CreateUmOrderV1Resp) GetAvgPrice

func (o *CreateUmOrderV1Resp) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetAvgPriceOk

func (o *CreateUmOrderV1Resp) GetAvgPriceOk() (*string, bool)

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

func (*CreateUmOrderV1Resp) GetClientOrderId

func (o *CreateUmOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetClientOrderIdOk

func (o *CreateUmOrderV1Resp) GetClientOrderIdOk() (*string, bool)

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

func (*CreateUmOrderV1Resp) GetCumQty

func (o *CreateUmOrderV1Resp) GetCumQty() string

GetCumQty returns the CumQty field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetCumQtyOk

func (o *CreateUmOrderV1Resp) GetCumQtyOk() (*string, bool)

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

func (*CreateUmOrderV1Resp) GetCumQuote

func (o *CreateUmOrderV1Resp) GetCumQuote() string

GetCumQuote returns the CumQuote field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetCumQuoteOk

func (o *CreateUmOrderV1Resp) GetCumQuoteOk() (*string, bool)

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

func (*CreateUmOrderV1Resp) GetExecutedQty

func (o *CreateUmOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetExecutedQtyOk

func (o *CreateUmOrderV1Resp) GetExecutedQtyOk() (*string, bool)

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

func (*CreateUmOrderV1Resp) GetGoodTillDate

func (o *CreateUmOrderV1Resp) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetGoodTillDateOk

func (o *CreateUmOrderV1Resp) GetGoodTillDateOk() (*int64, bool)

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

func (*CreateUmOrderV1Resp) GetOrderId

func (o *CreateUmOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetOrderIdOk

func (o *CreateUmOrderV1Resp) GetOrderIdOk() (*int64, bool)

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

func (*CreateUmOrderV1Resp) GetOrigQty

func (o *CreateUmOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetOrigQtyOk

func (o *CreateUmOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*CreateUmOrderV1Resp) GetPositionSide

func (o *CreateUmOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetPositionSideOk

func (o *CreateUmOrderV1Resp) GetPositionSideOk() (*string, bool)

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

func (*CreateUmOrderV1Resp) GetPrice

func (o *CreateUmOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetPriceMatch

func (o *CreateUmOrderV1Resp) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetPriceMatchOk

func (o *CreateUmOrderV1Resp) GetPriceMatchOk() (*string, bool)

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

func (*CreateUmOrderV1Resp) GetPriceOk

func (o *CreateUmOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*CreateUmOrderV1Resp) GetReduceOnly

func (o *CreateUmOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetReduceOnlyOk

func (o *CreateUmOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

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

func (*CreateUmOrderV1Resp) GetSelfTradePreventionMode

func (o *CreateUmOrderV1Resp) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetSelfTradePreventionModeOk

func (o *CreateUmOrderV1Resp) GetSelfTradePreventionModeOk() (*string, bool)

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

func (*CreateUmOrderV1Resp) GetSide

func (o *CreateUmOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetSideOk

func (o *CreateUmOrderV1Resp) GetSideOk() (*string, bool)

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

func (*CreateUmOrderV1Resp) GetStatus

func (o *CreateUmOrderV1Resp) GetStatus() string

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

func (*CreateUmOrderV1Resp) GetStatusOk

func (o *CreateUmOrderV1Resp) 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 (*CreateUmOrderV1Resp) GetSymbol

func (o *CreateUmOrderV1Resp) GetSymbol() string

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

func (*CreateUmOrderV1Resp) GetSymbolOk

func (o *CreateUmOrderV1Resp) 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 (*CreateUmOrderV1Resp) GetTimeInForce

func (o *CreateUmOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetTimeInForceOk

func (o *CreateUmOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*CreateUmOrderV1Resp) GetType

func (o *CreateUmOrderV1Resp) GetType() string

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

func (*CreateUmOrderV1Resp) GetTypeOk

func (o *CreateUmOrderV1Resp) 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 (*CreateUmOrderV1Resp) GetUpdateTime

func (o *CreateUmOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*CreateUmOrderV1Resp) GetUpdateTimeOk

func (o *CreateUmOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*CreateUmOrderV1Resp) HasAvgPrice

func (o *CreateUmOrderV1Resp) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasClientOrderId

func (o *CreateUmOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasCumQty

func (o *CreateUmOrderV1Resp) HasCumQty() bool

HasCumQty returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasCumQuote

func (o *CreateUmOrderV1Resp) HasCumQuote() bool

HasCumQuote returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasExecutedQty

func (o *CreateUmOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasGoodTillDate

func (o *CreateUmOrderV1Resp) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasOrderId

func (o *CreateUmOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasOrigQty

func (o *CreateUmOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasPositionSide

func (o *CreateUmOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasPrice

func (o *CreateUmOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasPriceMatch

func (o *CreateUmOrderV1Resp) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasReduceOnly

func (o *CreateUmOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasSelfTradePreventionMode

func (o *CreateUmOrderV1Resp) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasSide

func (o *CreateUmOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasStatus

func (o *CreateUmOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasSymbol

func (o *CreateUmOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasTimeInForce

func (o *CreateUmOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasType

func (o *CreateUmOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (*CreateUmOrderV1Resp) HasUpdateTime

func (o *CreateUmOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (CreateUmOrderV1Resp) MarshalJSON

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

func (*CreateUmOrderV1Resp) SetAvgPrice

func (o *CreateUmOrderV1Resp) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*CreateUmOrderV1Resp) SetClientOrderId

func (o *CreateUmOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*CreateUmOrderV1Resp) SetCumQty

func (o *CreateUmOrderV1Resp) SetCumQty(v string)

SetCumQty gets a reference to the given string and assigns it to the CumQty field.

func (*CreateUmOrderV1Resp) SetCumQuote

func (o *CreateUmOrderV1Resp) SetCumQuote(v string)

SetCumQuote gets a reference to the given string and assigns it to the CumQuote field.

func (*CreateUmOrderV1Resp) SetExecutedQty

func (o *CreateUmOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*CreateUmOrderV1Resp) SetGoodTillDate

func (o *CreateUmOrderV1Resp) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*CreateUmOrderV1Resp) SetOrderId

func (o *CreateUmOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*CreateUmOrderV1Resp) SetOrigQty

func (o *CreateUmOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*CreateUmOrderV1Resp) SetPositionSide

func (o *CreateUmOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*CreateUmOrderV1Resp) SetPrice

func (o *CreateUmOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*CreateUmOrderV1Resp) SetPriceMatch

func (o *CreateUmOrderV1Resp) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*CreateUmOrderV1Resp) SetReduceOnly

func (o *CreateUmOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*CreateUmOrderV1Resp) SetSelfTradePreventionMode

func (o *CreateUmOrderV1Resp) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*CreateUmOrderV1Resp) SetSide

func (o *CreateUmOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*CreateUmOrderV1Resp) SetStatus

func (o *CreateUmOrderV1Resp) SetStatus(v string)

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

func (*CreateUmOrderV1Resp) SetSymbol

func (o *CreateUmOrderV1Resp) SetSymbol(v string)

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

func (*CreateUmOrderV1Resp) SetTimeInForce

func (o *CreateUmOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*CreateUmOrderV1Resp) SetType

func (o *CreateUmOrderV1Resp) SetType(v string)

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

func (*CreateUmOrderV1Resp) SetUpdateTime

func (o *CreateUmOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (CreateUmOrderV1Resp) ToMap

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

type CreateUmPositionSideDualV1Resp

type CreateUmPositionSideDualV1Resp struct {
	Code *int32  `json:"code,omitempty"`
	Msg  *string `json:"msg,omitempty"`
}

CreateUmPositionSideDualV1Resp struct for CreateUmPositionSideDualV1Resp

func NewCreateUmPositionSideDualV1Resp

func NewCreateUmPositionSideDualV1Resp() *CreateUmPositionSideDualV1Resp

NewCreateUmPositionSideDualV1Resp instantiates a new CreateUmPositionSideDualV1Resp 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 NewCreateUmPositionSideDualV1RespWithDefaults

func NewCreateUmPositionSideDualV1RespWithDefaults() *CreateUmPositionSideDualV1Resp

NewCreateUmPositionSideDualV1RespWithDefaults instantiates a new CreateUmPositionSideDualV1Resp 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 (*CreateUmPositionSideDualV1Resp) GetCode

GetCode returns the Code field value if set, zero value otherwise.

func (*CreateUmPositionSideDualV1Resp) GetCodeOk

func (o *CreateUmPositionSideDualV1Resp) GetCodeOk() (*int32, bool)

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

func (*CreateUmPositionSideDualV1Resp) GetMsg

GetMsg returns the Msg field value if set, zero value otherwise.

func (*CreateUmPositionSideDualV1Resp) GetMsgOk

func (o *CreateUmPositionSideDualV1Resp) GetMsgOk() (*string, bool)

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

func (*CreateUmPositionSideDualV1Resp) HasCode

func (o *CreateUmPositionSideDualV1Resp) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*CreateUmPositionSideDualV1Resp) HasMsg

HasMsg returns a boolean if a field has been set.

func (CreateUmPositionSideDualV1Resp) MarshalJSON

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

func (*CreateUmPositionSideDualV1Resp) SetCode

func (o *CreateUmPositionSideDualV1Resp) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*CreateUmPositionSideDualV1Resp) SetMsg

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (CreateUmPositionSideDualV1Resp) ToMap

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

type DeleteCmAllOpenOrdersV1Resp

type DeleteCmAllOpenOrdersV1Resp struct {
	Code *int32  `json:"code,omitempty"`
	Msg  *string `json:"msg,omitempty"`
}

DeleteCmAllOpenOrdersV1Resp struct for DeleteCmAllOpenOrdersV1Resp

func NewDeleteCmAllOpenOrdersV1Resp

func NewDeleteCmAllOpenOrdersV1Resp() *DeleteCmAllOpenOrdersV1Resp

NewDeleteCmAllOpenOrdersV1Resp instantiates a new DeleteCmAllOpenOrdersV1Resp 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 NewDeleteCmAllOpenOrdersV1RespWithDefaults

func NewDeleteCmAllOpenOrdersV1RespWithDefaults() *DeleteCmAllOpenOrdersV1Resp

NewDeleteCmAllOpenOrdersV1RespWithDefaults instantiates a new DeleteCmAllOpenOrdersV1Resp 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 (*DeleteCmAllOpenOrdersV1Resp) GetCode

func (o *DeleteCmAllOpenOrdersV1Resp) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*DeleteCmAllOpenOrdersV1Resp) GetCodeOk

func (o *DeleteCmAllOpenOrdersV1Resp) GetCodeOk() (*int32, bool)

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

func (*DeleteCmAllOpenOrdersV1Resp) GetMsg

func (o *DeleteCmAllOpenOrdersV1Resp) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*DeleteCmAllOpenOrdersV1Resp) GetMsgOk

func (o *DeleteCmAllOpenOrdersV1Resp) GetMsgOk() (*string, bool)

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

func (*DeleteCmAllOpenOrdersV1Resp) HasCode

func (o *DeleteCmAllOpenOrdersV1Resp) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*DeleteCmAllOpenOrdersV1Resp) HasMsg

func (o *DeleteCmAllOpenOrdersV1Resp) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (DeleteCmAllOpenOrdersV1Resp) MarshalJSON

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

func (*DeleteCmAllOpenOrdersV1Resp) SetCode

func (o *DeleteCmAllOpenOrdersV1Resp) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*DeleteCmAllOpenOrdersV1Resp) SetMsg

func (o *DeleteCmAllOpenOrdersV1Resp) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (DeleteCmAllOpenOrdersV1Resp) ToMap

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

type DeleteCmConditionalAllOpenOrdersV1Resp

type DeleteCmConditionalAllOpenOrdersV1Resp struct {
	Code *string `json:"code,omitempty"`
	Msg  *string `json:"msg,omitempty"`
}

DeleteCmConditionalAllOpenOrdersV1Resp struct for DeleteCmConditionalAllOpenOrdersV1Resp

func NewDeleteCmConditionalAllOpenOrdersV1Resp

func NewDeleteCmConditionalAllOpenOrdersV1Resp() *DeleteCmConditionalAllOpenOrdersV1Resp

NewDeleteCmConditionalAllOpenOrdersV1Resp instantiates a new DeleteCmConditionalAllOpenOrdersV1Resp 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 NewDeleteCmConditionalAllOpenOrdersV1RespWithDefaults

func NewDeleteCmConditionalAllOpenOrdersV1RespWithDefaults() *DeleteCmConditionalAllOpenOrdersV1Resp

NewDeleteCmConditionalAllOpenOrdersV1RespWithDefaults instantiates a new DeleteCmConditionalAllOpenOrdersV1Resp 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 (*DeleteCmConditionalAllOpenOrdersV1Resp) GetCode

GetCode returns the Code field value if set, zero value otherwise.

func (*DeleteCmConditionalAllOpenOrdersV1Resp) GetCodeOk

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

func (*DeleteCmConditionalAllOpenOrdersV1Resp) GetMsg

GetMsg returns the Msg field value if set, zero value otherwise.

func (*DeleteCmConditionalAllOpenOrdersV1Resp) GetMsgOk

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

func (*DeleteCmConditionalAllOpenOrdersV1Resp) HasCode

HasCode returns a boolean if a field has been set.

func (*DeleteCmConditionalAllOpenOrdersV1Resp) HasMsg

HasMsg returns a boolean if a field has been set.

func (DeleteCmConditionalAllOpenOrdersV1Resp) MarshalJSON

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

func (*DeleteCmConditionalAllOpenOrdersV1Resp) SetCode

SetCode gets a reference to the given string and assigns it to the Code field.

func (*DeleteCmConditionalAllOpenOrdersV1Resp) SetMsg

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (DeleteCmConditionalAllOpenOrdersV1Resp) ToMap

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

type DeleteCmConditionalOrderV1Resp

type DeleteCmConditionalOrderV1Resp struct {
	ActivatePrice       *string `json:"activatePrice,omitempty"`
	BookTime            *int64  `json:"bookTime,omitempty"`
	NewClientStrategyId *string `json:"newClientStrategyId,omitempty"`
	OrigQty             *string `json:"origQty,omitempty"`
	PositionSide        *string `json:"positionSide,omitempty"`
	Price               *string `json:"price,omitempty"`
	PriceProtect        *bool   `json:"priceProtect,omitempty"`
	PriceRate           *string `json:"priceRate,omitempty"`
	ReduceOnly          *bool   `json:"reduceOnly,omitempty"`
	Side                *string `json:"side,omitempty"`
	StopPrice           *string `json:"stopPrice,omitempty"`
	StrategyId          *int64  `json:"strategyId,omitempty"`
	StrategyStatus      *string `json:"strategyStatus,omitempty"`
	StrategyType        *string `json:"strategyType,omitempty"`
	Symbol              *string `json:"symbol,omitempty"`
	TimeInForce         *string `json:"timeInForce,omitempty"`
	UpdateTime          *int64  `json:"updateTime,omitempty"`
	WorkingType         *string `json:"workingType,omitempty"`
}

DeleteCmConditionalOrderV1Resp struct for DeleteCmConditionalOrderV1Resp

func NewDeleteCmConditionalOrderV1Resp

func NewDeleteCmConditionalOrderV1Resp() *DeleteCmConditionalOrderV1Resp

NewDeleteCmConditionalOrderV1Resp instantiates a new DeleteCmConditionalOrderV1Resp 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 NewDeleteCmConditionalOrderV1RespWithDefaults

func NewDeleteCmConditionalOrderV1RespWithDefaults() *DeleteCmConditionalOrderV1Resp

NewDeleteCmConditionalOrderV1RespWithDefaults instantiates a new DeleteCmConditionalOrderV1Resp 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 (*DeleteCmConditionalOrderV1Resp) GetActivatePrice

func (o *DeleteCmConditionalOrderV1Resp) GetActivatePrice() string

GetActivatePrice returns the ActivatePrice field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetActivatePriceOk

func (o *DeleteCmConditionalOrderV1Resp) GetActivatePriceOk() (*string, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetBookTime

func (o *DeleteCmConditionalOrderV1Resp) GetBookTime() int64

GetBookTime returns the BookTime field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetBookTimeOk

func (o *DeleteCmConditionalOrderV1Resp) GetBookTimeOk() (*int64, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetNewClientStrategyId

func (o *DeleteCmConditionalOrderV1Resp) GetNewClientStrategyId() string

GetNewClientStrategyId returns the NewClientStrategyId field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetNewClientStrategyIdOk

func (o *DeleteCmConditionalOrderV1Resp) GetNewClientStrategyIdOk() (*string, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetOrigQty

func (o *DeleteCmConditionalOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetOrigQtyOk

func (o *DeleteCmConditionalOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetPositionSide

func (o *DeleteCmConditionalOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetPositionSideOk

func (o *DeleteCmConditionalOrderV1Resp) GetPositionSideOk() (*string, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetPrice

func (o *DeleteCmConditionalOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetPriceOk

func (o *DeleteCmConditionalOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetPriceProtect

func (o *DeleteCmConditionalOrderV1Resp) GetPriceProtect() bool

GetPriceProtect returns the PriceProtect field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetPriceProtectOk

func (o *DeleteCmConditionalOrderV1Resp) GetPriceProtectOk() (*bool, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetPriceRate

func (o *DeleteCmConditionalOrderV1Resp) GetPriceRate() string

GetPriceRate returns the PriceRate field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetPriceRateOk

func (o *DeleteCmConditionalOrderV1Resp) GetPriceRateOk() (*string, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetReduceOnly

func (o *DeleteCmConditionalOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetReduceOnlyOk

func (o *DeleteCmConditionalOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetSideOk

func (o *DeleteCmConditionalOrderV1Resp) GetSideOk() (*string, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetStopPrice

func (o *DeleteCmConditionalOrderV1Resp) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetStopPriceOk

func (o *DeleteCmConditionalOrderV1Resp) GetStopPriceOk() (*string, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetStrategyId

func (o *DeleteCmConditionalOrderV1Resp) GetStrategyId() int64

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetStrategyIdOk

func (o *DeleteCmConditionalOrderV1Resp) GetStrategyIdOk() (*int64, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetStrategyStatus

func (o *DeleteCmConditionalOrderV1Resp) GetStrategyStatus() string

GetStrategyStatus returns the StrategyStatus field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetStrategyStatusOk

func (o *DeleteCmConditionalOrderV1Resp) GetStrategyStatusOk() (*string, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetStrategyType

func (o *DeleteCmConditionalOrderV1Resp) GetStrategyType() string

GetStrategyType returns the StrategyType field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetStrategyTypeOk

func (o *DeleteCmConditionalOrderV1Resp) GetStrategyTypeOk() (*string, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetSymbol

func (o *DeleteCmConditionalOrderV1Resp) GetSymbol() string

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

func (*DeleteCmConditionalOrderV1Resp) GetSymbolOk

func (o *DeleteCmConditionalOrderV1Resp) 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 (*DeleteCmConditionalOrderV1Resp) GetTimeInForce

func (o *DeleteCmConditionalOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetTimeInForceOk

func (o *DeleteCmConditionalOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetUpdateTime

func (o *DeleteCmConditionalOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetUpdateTimeOk

func (o *DeleteCmConditionalOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*DeleteCmConditionalOrderV1Resp) GetWorkingType

func (o *DeleteCmConditionalOrderV1Resp) GetWorkingType() string

GetWorkingType returns the WorkingType field value if set, zero value otherwise.

func (*DeleteCmConditionalOrderV1Resp) GetWorkingTypeOk

func (o *DeleteCmConditionalOrderV1Resp) GetWorkingTypeOk() (*string, bool)

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

func (*DeleteCmConditionalOrderV1Resp) HasActivatePrice

func (o *DeleteCmConditionalOrderV1Resp) HasActivatePrice() bool

HasActivatePrice returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasBookTime

func (o *DeleteCmConditionalOrderV1Resp) HasBookTime() bool

HasBookTime returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasNewClientStrategyId

func (o *DeleteCmConditionalOrderV1Resp) HasNewClientStrategyId() bool

HasNewClientStrategyId returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasOrigQty

func (o *DeleteCmConditionalOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasPositionSide

func (o *DeleteCmConditionalOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasPrice

func (o *DeleteCmConditionalOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasPriceProtect

func (o *DeleteCmConditionalOrderV1Resp) HasPriceProtect() bool

HasPriceProtect returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasPriceRate

func (o *DeleteCmConditionalOrderV1Resp) HasPriceRate() bool

HasPriceRate returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasReduceOnly

func (o *DeleteCmConditionalOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasSide

func (o *DeleteCmConditionalOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasStopPrice

func (o *DeleteCmConditionalOrderV1Resp) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasStrategyId

func (o *DeleteCmConditionalOrderV1Resp) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasStrategyStatus

func (o *DeleteCmConditionalOrderV1Resp) HasStrategyStatus() bool

HasStrategyStatus returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasStrategyType

func (o *DeleteCmConditionalOrderV1Resp) HasStrategyType() bool

HasStrategyType returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasSymbol

func (o *DeleteCmConditionalOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasTimeInForce

func (o *DeleteCmConditionalOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasUpdateTime

func (o *DeleteCmConditionalOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (*DeleteCmConditionalOrderV1Resp) HasWorkingType

func (o *DeleteCmConditionalOrderV1Resp) HasWorkingType() bool

HasWorkingType returns a boolean if a field has been set.

func (DeleteCmConditionalOrderV1Resp) MarshalJSON

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

func (*DeleteCmConditionalOrderV1Resp) SetActivatePrice

func (o *DeleteCmConditionalOrderV1Resp) SetActivatePrice(v string)

SetActivatePrice gets a reference to the given string and assigns it to the ActivatePrice field.

func (*DeleteCmConditionalOrderV1Resp) SetBookTime

func (o *DeleteCmConditionalOrderV1Resp) SetBookTime(v int64)

SetBookTime gets a reference to the given int64 and assigns it to the BookTime field.

func (*DeleteCmConditionalOrderV1Resp) SetNewClientStrategyId

func (o *DeleteCmConditionalOrderV1Resp) SetNewClientStrategyId(v string)

SetNewClientStrategyId gets a reference to the given string and assigns it to the NewClientStrategyId field.

func (*DeleteCmConditionalOrderV1Resp) SetOrigQty

func (o *DeleteCmConditionalOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*DeleteCmConditionalOrderV1Resp) SetPositionSide

func (o *DeleteCmConditionalOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*DeleteCmConditionalOrderV1Resp) SetPrice

func (o *DeleteCmConditionalOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*DeleteCmConditionalOrderV1Resp) SetPriceProtect

func (o *DeleteCmConditionalOrderV1Resp) SetPriceProtect(v bool)

SetPriceProtect gets a reference to the given bool and assigns it to the PriceProtect field.

func (*DeleteCmConditionalOrderV1Resp) SetPriceRate

func (o *DeleteCmConditionalOrderV1Resp) SetPriceRate(v string)

SetPriceRate gets a reference to the given string and assigns it to the PriceRate field.

func (*DeleteCmConditionalOrderV1Resp) SetReduceOnly

func (o *DeleteCmConditionalOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*DeleteCmConditionalOrderV1Resp) SetSide

func (o *DeleteCmConditionalOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*DeleteCmConditionalOrderV1Resp) SetStopPrice

func (o *DeleteCmConditionalOrderV1Resp) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*DeleteCmConditionalOrderV1Resp) SetStrategyId

func (o *DeleteCmConditionalOrderV1Resp) SetStrategyId(v int64)

SetStrategyId gets a reference to the given int64 and assigns it to the StrategyId field.

func (*DeleteCmConditionalOrderV1Resp) SetStrategyStatus

func (o *DeleteCmConditionalOrderV1Resp) SetStrategyStatus(v string)

SetStrategyStatus gets a reference to the given string and assigns it to the StrategyStatus field.

func (*DeleteCmConditionalOrderV1Resp) SetStrategyType

func (o *DeleteCmConditionalOrderV1Resp) SetStrategyType(v string)

SetStrategyType gets a reference to the given string and assigns it to the StrategyType field.

func (*DeleteCmConditionalOrderV1Resp) SetSymbol

func (o *DeleteCmConditionalOrderV1Resp) SetSymbol(v string)

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

func (*DeleteCmConditionalOrderV1Resp) SetTimeInForce

func (o *DeleteCmConditionalOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*DeleteCmConditionalOrderV1Resp) SetUpdateTime

func (o *DeleteCmConditionalOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (*DeleteCmConditionalOrderV1Resp) SetWorkingType

func (o *DeleteCmConditionalOrderV1Resp) SetWorkingType(v string)

SetWorkingType gets a reference to the given string and assigns it to the WorkingType field.

func (DeleteCmConditionalOrderV1Resp) ToMap

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

type DeleteCmOrderV1Resp

type DeleteCmOrderV1Resp struct {
	AvgPrice      *string `json:"avgPrice,omitempty"`
	ClientOrderId *string `json:"clientOrderId,omitempty"`
	CumBase       *string `json:"cumBase,omitempty"`
	CumQty        *string `json:"cumQty,omitempty"`
	ExecutedQty   *string `json:"executedQty,omitempty"`
	OrderId       *int64  `json:"orderId,omitempty"`
	OrigQty       *string `json:"origQty,omitempty"`
	Pair          *string `json:"pair,omitempty"`
	PositionSide  *string `json:"positionSide,omitempty"`
	Price         *string `json:"price,omitempty"`
	ReduceOnly    *bool   `json:"reduceOnly,omitempty"`
	Side          *string `json:"side,omitempty"`
	Status        *string `json:"status,omitempty"`
	Symbol        *string `json:"symbol,omitempty"`
	TimeInForce   *string `json:"timeInForce,omitempty"`
	Type          *string `json:"type,omitempty"`
	UpdateTime    *int64  `json:"updateTime,omitempty"`
}

DeleteCmOrderV1Resp struct for DeleteCmOrderV1Resp

func NewDeleteCmOrderV1Resp

func NewDeleteCmOrderV1Resp() *DeleteCmOrderV1Resp

NewDeleteCmOrderV1Resp instantiates a new DeleteCmOrderV1Resp 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 NewDeleteCmOrderV1RespWithDefaults

func NewDeleteCmOrderV1RespWithDefaults() *DeleteCmOrderV1Resp

NewDeleteCmOrderV1RespWithDefaults instantiates a new DeleteCmOrderV1Resp 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 (*DeleteCmOrderV1Resp) GetAvgPrice

func (o *DeleteCmOrderV1Resp) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetAvgPriceOk

func (o *DeleteCmOrderV1Resp) GetAvgPriceOk() (*string, bool)

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

func (*DeleteCmOrderV1Resp) GetClientOrderId

func (o *DeleteCmOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetClientOrderIdOk

func (o *DeleteCmOrderV1Resp) GetClientOrderIdOk() (*string, bool)

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

func (*DeleteCmOrderV1Resp) GetCumBase

func (o *DeleteCmOrderV1Resp) GetCumBase() string

GetCumBase returns the CumBase field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetCumBaseOk

func (o *DeleteCmOrderV1Resp) GetCumBaseOk() (*string, bool)

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

func (*DeleteCmOrderV1Resp) GetCumQty

func (o *DeleteCmOrderV1Resp) GetCumQty() string

GetCumQty returns the CumQty field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetCumQtyOk

func (o *DeleteCmOrderV1Resp) GetCumQtyOk() (*string, bool)

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

func (*DeleteCmOrderV1Resp) GetExecutedQty

func (o *DeleteCmOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetExecutedQtyOk

func (o *DeleteCmOrderV1Resp) GetExecutedQtyOk() (*string, bool)

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

func (*DeleteCmOrderV1Resp) GetOrderId

func (o *DeleteCmOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetOrderIdOk

func (o *DeleteCmOrderV1Resp) GetOrderIdOk() (*int64, bool)

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

func (*DeleteCmOrderV1Resp) GetOrigQty

func (o *DeleteCmOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetOrigQtyOk

func (o *DeleteCmOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*DeleteCmOrderV1Resp) GetPair

func (o *DeleteCmOrderV1Resp) GetPair() string

GetPair returns the Pair field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetPairOk

func (o *DeleteCmOrderV1Resp) GetPairOk() (*string, bool)

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

func (*DeleteCmOrderV1Resp) GetPositionSide

func (o *DeleteCmOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetPositionSideOk

func (o *DeleteCmOrderV1Resp) GetPositionSideOk() (*string, bool)

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

func (*DeleteCmOrderV1Resp) GetPrice

func (o *DeleteCmOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetPriceOk

func (o *DeleteCmOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*DeleteCmOrderV1Resp) GetReduceOnly

func (o *DeleteCmOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetReduceOnlyOk

func (o *DeleteCmOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

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

func (*DeleteCmOrderV1Resp) GetSide

func (o *DeleteCmOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetSideOk

func (o *DeleteCmOrderV1Resp) GetSideOk() (*string, bool)

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

func (*DeleteCmOrderV1Resp) GetStatus

func (o *DeleteCmOrderV1Resp) GetStatus() string

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

func (*DeleteCmOrderV1Resp) GetStatusOk

func (o *DeleteCmOrderV1Resp) 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 (*DeleteCmOrderV1Resp) GetSymbol

func (o *DeleteCmOrderV1Resp) GetSymbol() string

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

func (*DeleteCmOrderV1Resp) GetSymbolOk

func (o *DeleteCmOrderV1Resp) 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 (*DeleteCmOrderV1Resp) GetTimeInForce

func (o *DeleteCmOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetTimeInForceOk

func (o *DeleteCmOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*DeleteCmOrderV1Resp) GetType

func (o *DeleteCmOrderV1Resp) GetType() string

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

func (*DeleteCmOrderV1Resp) GetTypeOk

func (o *DeleteCmOrderV1Resp) 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 (*DeleteCmOrderV1Resp) GetUpdateTime

func (o *DeleteCmOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*DeleteCmOrderV1Resp) GetUpdateTimeOk

func (o *DeleteCmOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*DeleteCmOrderV1Resp) HasAvgPrice

func (o *DeleteCmOrderV1Resp) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasClientOrderId

func (o *DeleteCmOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasCumBase

func (o *DeleteCmOrderV1Resp) HasCumBase() bool

HasCumBase returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasCumQty

func (o *DeleteCmOrderV1Resp) HasCumQty() bool

HasCumQty returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasExecutedQty

func (o *DeleteCmOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasOrderId

func (o *DeleteCmOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasOrigQty

func (o *DeleteCmOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasPair

func (o *DeleteCmOrderV1Resp) HasPair() bool

HasPair returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasPositionSide

func (o *DeleteCmOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasPrice

func (o *DeleteCmOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasReduceOnly

func (o *DeleteCmOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasSide

func (o *DeleteCmOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasStatus

func (o *DeleteCmOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasSymbol

func (o *DeleteCmOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasTimeInForce

func (o *DeleteCmOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasType

func (o *DeleteCmOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (*DeleteCmOrderV1Resp) HasUpdateTime

func (o *DeleteCmOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (DeleteCmOrderV1Resp) MarshalJSON

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

func (*DeleteCmOrderV1Resp) SetAvgPrice

func (o *DeleteCmOrderV1Resp) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*DeleteCmOrderV1Resp) SetClientOrderId

func (o *DeleteCmOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*DeleteCmOrderV1Resp) SetCumBase

func (o *DeleteCmOrderV1Resp) SetCumBase(v string)

SetCumBase gets a reference to the given string and assigns it to the CumBase field.

func (*DeleteCmOrderV1Resp) SetCumQty

func (o *DeleteCmOrderV1Resp) SetCumQty(v string)

SetCumQty gets a reference to the given string and assigns it to the CumQty field.

func (*DeleteCmOrderV1Resp) SetExecutedQty

func (o *DeleteCmOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*DeleteCmOrderV1Resp) SetOrderId

func (o *DeleteCmOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*DeleteCmOrderV1Resp) SetOrigQty

func (o *DeleteCmOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*DeleteCmOrderV1Resp) SetPair

func (o *DeleteCmOrderV1Resp) SetPair(v string)

SetPair gets a reference to the given string and assigns it to the Pair field.

func (*DeleteCmOrderV1Resp) SetPositionSide

func (o *DeleteCmOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*DeleteCmOrderV1Resp) SetPrice

func (o *DeleteCmOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*DeleteCmOrderV1Resp) SetReduceOnly

func (o *DeleteCmOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*DeleteCmOrderV1Resp) SetSide

func (o *DeleteCmOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*DeleteCmOrderV1Resp) SetStatus

func (o *DeleteCmOrderV1Resp) SetStatus(v string)

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

func (*DeleteCmOrderV1Resp) SetSymbol

func (o *DeleteCmOrderV1Resp) SetSymbol(v string)

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

func (*DeleteCmOrderV1Resp) SetTimeInForce

func (o *DeleteCmOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*DeleteCmOrderV1Resp) SetType

func (o *DeleteCmOrderV1Resp) SetType(v string)

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

func (*DeleteCmOrderV1Resp) SetUpdateTime

func (o *DeleteCmOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (DeleteCmOrderV1Resp) ToMap

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

type DeleteMarginOrderListV1Resp

type DeleteMarginOrderListV1Resp struct {
	ContingencyType   *string                                        `json:"contingencyType,omitempty"`
	ListClientOrderId *string                                        `json:"listClientOrderId,omitempty"`
	ListOrderStatus   *string                                        `json:"listOrderStatus,omitempty"`
	ListStatusType    *string                                        `json:"listStatusType,omitempty"`
	OrderListId       *int64                                         `json:"orderListId,omitempty"`
	OrderReports      []DeleteMarginOrderListV1RespOrderReportsInner `json:"orderReports,omitempty"`
	Orders            []CreateMarginOrderOcoV1RespOrdersInner        `json:"orders,omitempty"`
	Symbol            *string                                        `json:"symbol,omitempty"`
	TransactionTime   *int64                                         `json:"transactionTime,omitempty"`
}

DeleteMarginOrderListV1Resp struct for DeleteMarginOrderListV1Resp

func NewDeleteMarginOrderListV1Resp

func NewDeleteMarginOrderListV1Resp() *DeleteMarginOrderListV1Resp

NewDeleteMarginOrderListV1Resp instantiates a new DeleteMarginOrderListV1Resp 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 NewDeleteMarginOrderListV1RespWithDefaults

func NewDeleteMarginOrderListV1RespWithDefaults() *DeleteMarginOrderListV1Resp

NewDeleteMarginOrderListV1RespWithDefaults instantiates a new DeleteMarginOrderListV1Resp 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 (*DeleteMarginOrderListV1Resp) GetContingencyType

func (o *DeleteMarginOrderListV1Resp) GetContingencyType() string

GetContingencyType returns the ContingencyType field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1Resp) GetContingencyTypeOk

func (o *DeleteMarginOrderListV1Resp) GetContingencyTypeOk() (*string, bool)

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

func (*DeleteMarginOrderListV1Resp) GetListClientOrderId

func (o *DeleteMarginOrderListV1Resp) GetListClientOrderId() string

GetListClientOrderId returns the ListClientOrderId field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1Resp) GetListClientOrderIdOk

func (o *DeleteMarginOrderListV1Resp) GetListClientOrderIdOk() (*string, bool)

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

func (*DeleteMarginOrderListV1Resp) GetListOrderStatus

func (o *DeleteMarginOrderListV1Resp) GetListOrderStatus() string

GetListOrderStatus returns the ListOrderStatus field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1Resp) GetListOrderStatusOk

func (o *DeleteMarginOrderListV1Resp) GetListOrderStatusOk() (*string, bool)

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

func (*DeleteMarginOrderListV1Resp) GetListStatusType

func (o *DeleteMarginOrderListV1Resp) GetListStatusType() string

GetListStatusType returns the ListStatusType field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1Resp) GetListStatusTypeOk

func (o *DeleteMarginOrderListV1Resp) GetListStatusTypeOk() (*string, bool)

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

func (*DeleteMarginOrderListV1Resp) GetOrderListId

func (o *DeleteMarginOrderListV1Resp) GetOrderListId() int64

GetOrderListId returns the OrderListId field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1Resp) GetOrderListIdOk

func (o *DeleteMarginOrderListV1Resp) GetOrderListIdOk() (*int64, bool)

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

func (*DeleteMarginOrderListV1Resp) GetOrderReports

GetOrderReports returns the OrderReports field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1Resp) GetOrderReportsOk

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

func (*DeleteMarginOrderListV1Resp) GetOrders

GetOrders returns the Orders field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1Resp) GetOrdersOk

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

func (*DeleteMarginOrderListV1Resp) GetSymbol

func (o *DeleteMarginOrderListV1Resp) GetSymbol() string

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

func (*DeleteMarginOrderListV1Resp) GetSymbolOk

func (o *DeleteMarginOrderListV1Resp) 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 (*DeleteMarginOrderListV1Resp) GetTransactionTime

func (o *DeleteMarginOrderListV1Resp) GetTransactionTime() int64

GetTransactionTime returns the TransactionTime field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1Resp) GetTransactionTimeOk

func (o *DeleteMarginOrderListV1Resp) GetTransactionTimeOk() (*int64, bool)

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

func (*DeleteMarginOrderListV1Resp) HasContingencyType

func (o *DeleteMarginOrderListV1Resp) HasContingencyType() bool

HasContingencyType returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1Resp) HasListClientOrderId

func (o *DeleteMarginOrderListV1Resp) HasListClientOrderId() bool

HasListClientOrderId returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1Resp) HasListOrderStatus

func (o *DeleteMarginOrderListV1Resp) HasListOrderStatus() bool

HasListOrderStatus returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1Resp) HasListStatusType

func (o *DeleteMarginOrderListV1Resp) HasListStatusType() bool

HasListStatusType returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1Resp) HasOrderListId

func (o *DeleteMarginOrderListV1Resp) HasOrderListId() bool

HasOrderListId returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1Resp) HasOrderReports

func (o *DeleteMarginOrderListV1Resp) HasOrderReports() bool

HasOrderReports returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1Resp) HasOrders

func (o *DeleteMarginOrderListV1Resp) HasOrders() bool

HasOrders returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1Resp) HasSymbol

func (o *DeleteMarginOrderListV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1Resp) HasTransactionTime

func (o *DeleteMarginOrderListV1Resp) HasTransactionTime() bool

HasTransactionTime returns a boolean if a field has been set.

func (DeleteMarginOrderListV1Resp) MarshalJSON

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

func (*DeleteMarginOrderListV1Resp) SetContingencyType

func (o *DeleteMarginOrderListV1Resp) SetContingencyType(v string)

SetContingencyType gets a reference to the given string and assigns it to the ContingencyType field.

func (*DeleteMarginOrderListV1Resp) SetListClientOrderId

func (o *DeleteMarginOrderListV1Resp) SetListClientOrderId(v string)

SetListClientOrderId gets a reference to the given string and assigns it to the ListClientOrderId field.

func (*DeleteMarginOrderListV1Resp) SetListOrderStatus

func (o *DeleteMarginOrderListV1Resp) SetListOrderStatus(v string)

SetListOrderStatus gets a reference to the given string and assigns it to the ListOrderStatus field.

func (*DeleteMarginOrderListV1Resp) SetListStatusType

func (o *DeleteMarginOrderListV1Resp) SetListStatusType(v string)

SetListStatusType gets a reference to the given string and assigns it to the ListStatusType field.

func (*DeleteMarginOrderListV1Resp) SetOrderListId

func (o *DeleteMarginOrderListV1Resp) SetOrderListId(v int64)

SetOrderListId gets a reference to the given int64 and assigns it to the OrderListId field.

func (*DeleteMarginOrderListV1Resp) SetOrderReports

SetOrderReports gets a reference to the given []DeleteMarginOrderListV1RespOrderReportsInner and assigns it to the OrderReports field.

func (*DeleteMarginOrderListV1Resp) SetOrders

SetOrders gets a reference to the given []CreateMarginOrderOcoV1RespOrdersInner and assigns it to the Orders field.

func (*DeleteMarginOrderListV1Resp) SetSymbol

func (o *DeleteMarginOrderListV1Resp) SetSymbol(v string)

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

func (*DeleteMarginOrderListV1Resp) SetTransactionTime

func (o *DeleteMarginOrderListV1Resp) SetTransactionTime(v int64)

SetTransactionTime gets a reference to the given int64 and assigns it to the TransactionTime field.

func (DeleteMarginOrderListV1Resp) ToMap

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

type DeleteMarginOrderListV1RespOrderReportsInner

type DeleteMarginOrderListV1RespOrderReportsInner struct {
	ClientOrderId       *string `json:"clientOrderId,omitempty"`
	CummulativeQuoteQty *string `json:"cummulativeQuoteQty,omitempty"`
	ExecutedQty         *string `json:"executedQty,omitempty"`
	OrderId             *int64  `json:"orderId,omitempty"`
	OrderListId         *int64  `json:"orderListId,omitempty"`
	OrigClientOrderId   *string `json:"origClientOrderId,omitempty"`
	OrigQty             *string `json:"origQty,omitempty"`
	Price               *string `json:"price,omitempty"`
	Side                *string `json:"side,omitempty"`
	Status              *string `json:"status,omitempty"`
	StopPrice           *string `json:"stopPrice,omitempty"`
	Symbol              *string `json:"symbol,omitempty"`
	TimeInForce         *string `json:"timeInForce,omitempty"`
	Type                *string `json:"type,omitempty"`
}

DeleteMarginOrderListV1RespOrderReportsInner struct for DeleteMarginOrderListV1RespOrderReportsInner

func NewDeleteMarginOrderListV1RespOrderReportsInner

func NewDeleteMarginOrderListV1RespOrderReportsInner() *DeleteMarginOrderListV1RespOrderReportsInner

NewDeleteMarginOrderListV1RespOrderReportsInner instantiates a new DeleteMarginOrderListV1RespOrderReportsInner 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 NewDeleteMarginOrderListV1RespOrderReportsInnerWithDefaults

func NewDeleteMarginOrderListV1RespOrderReportsInnerWithDefaults() *DeleteMarginOrderListV1RespOrderReportsInner

NewDeleteMarginOrderListV1RespOrderReportsInnerWithDefaults instantiates a new DeleteMarginOrderListV1RespOrderReportsInner 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 (*DeleteMarginOrderListV1RespOrderReportsInner) GetClientOrderId

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetClientOrderIdOk

func (o *DeleteMarginOrderListV1RespOrderReportsInner) GetClientOrderIdOk() (*string, bool)

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetCummulativeQuoteQty

func (o *DeleteMarginOrderListV1RespOrderReportsInner) GetCummulativeQuoteQty() string

GetCummulativeQuoteQty returns the CummulativeQuoteQty field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetCummulativeQuoteQtyOk

func (o *DeleteMarginOrderListV1RespOrderReportsInner) GetCummulativeQuoteQtyOk() (*string, bool)

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetExecutedQty

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetExecutedQtyOk

func (o *DeleteMarginOrderListV1RespOrderReportsInner) GetExecutedQtyOk() (*string, bool)

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetOrderId

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetOrderIdOk

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetOrderListId

GetOrderListId returns the OrderListId field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetOrderListIdOk

func (o *DeleteMarginOrderListV1RespOrderReportsInner) GetOrderListIdOk() (*int64, bool)

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetOrigClientOrderId

func (o *DeleteMarginOrderListV1RespOrderReportsInner) GetOrigClientOrderId() string

GetOrigClientOrderId returns the OrigClientOrderId field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetOrigClientOrderIdOk

func (o *DeleteMarginOrderListV1RespOrderReportsInner) GetOrigClientOrderIdOk() (*string, bool)

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetOrigQty

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetOrigQtyOk

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetPriceOk

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetSideOk

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetStatus

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetStatusOk

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 (*DeleteMarginOrderListV1RespOrderReportsInner) GetStopPrice

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetStopPriceOk

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetSymbol

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetSymbolOk

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 (*DeleteMarginOrderListV1RespOrderReportsInner) GetTimeInForce

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetTimeInForceOk

func (o *DeleteMarginOrderListV1RespOrderReportsInner) GetTimeInForceOk() (*string, bool)

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetType

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) GetTypeOk

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 (*DeleteMarginOrderListV1RespOrderReportsInner) HasClientOrderId

func (o *DeleteMarginOrderListV1RespOrderReportsInner) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasCummulativeQuoteQty

func (o *DeleteMarginOrderListV1RespOrderReportsInner) HasCummulativeQuoteQty() bool

HasCummulativeQuoteQty returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasExecutedQty

HasExecutedQty returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasOrderId

HasOrderId returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasOrderListId

HasOrderListId returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasOrigClientOrderId

func (o *DeleteMarginOrderListV1RespOrderReportsInner) HasOrigClientOrderId() bool

HasOrigClientOrderId returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasOrigQty

HasOrigQty returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasPrice

HasPrice returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasSide

HasSide returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasStatus

HasStatus returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasStopPrice

HasStopPrice returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasTimeInForce

HasTimeInForce returns a boolean if a field has been set.

func (*DeleteMarginOrderListV1RespOrderReportsInner) HasType

HasType returns a boolean if a field has been set.

func (DeleteMarginOrderListV1RespOrderReportsInner) MarshalJSON

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetClientOrderId

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetCummulativeQuoteQty

func (o *DeleteMarginOrderListV1RespOrderReportsInner) SetCummulativeQuoteQty(v string)

SetCummulativeQuoteQty gets a reference to the given string and assigns it to the CummulativeQuoteQty field.

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetExecutedQty

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetOrderId

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetOrderListId

SetOrderListId gets a reference to the given int64 and assigns it to the OrderListId field.

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetOrigClientOrderId

func (o *DeleteMarginOrderListV1RespOrderReportsInner) SetOrigClientOrderId(v string)

SetOrigClientOrderId gets a reference to the given string and assigns it to the OrigClientOrderId field.

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetOrigQty

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetPrice

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetSide

SetSide gets a reference to the given string and assigns it to the Side field.

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetStatus

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetStopPrice

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetSymbol

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

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetTimeInForce

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*DeleteMarginOrderListV1RespOrderReportsInner) SetType

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

func (DeleteMarginOrderListV1RespOrderReportsInner) ToMap

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

type DeleteMarginOrderV1Resp

type DeleteMarginOrderV1Resp struct {
	ClientOrderId       *string `json:"clientOrderId,omitempty"`
	CummulativeQuoteQty *string `json:"cummulativeQuoteQty,omitempty"`
	ExecutedQty         *string `json:"executedQty,omitempty"`
	OrderId             *int64  `json:"orderId,omitempty"`
	OrigClientOrderId   *string `json:"origClientOrderId,omitempty"`
	OrigQty             *string `json:"origQty,omitempty"`
	Price               *string `json:"price,omitempty"`
	Side                *string `json:"side,omitempty"`
	Status              *string `json:"status,omitempty"`
	Symbol              *string `json:"symbol,omitempty"`
	TimeInForce         *string `json:"timeInForce,omitempty"`
	Type                *string `json:"type,omitempty"`
}

DeleteMarginOrderV1Resp struct for DeleteMarginOrderV1Resp

func NewDeleteMarginOrderV1Resp

func NewDeleteMarginOrderV1Resp() *DeleteMarginOrderV1Resp

NewDeleteMarginOrderV1Resp instantiates a new DeleteMarginOrderV1Resp 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 NewDeleteMarginOrderV1RespWithDefaults

func NewDeleteMarginOrderV1RespWithDefaults() *DeleteMarginOrderV1Resp

NewDeleteMarginOrderV1RespWithDefaults instantiates a new DeleteMarginOrderV1Resp 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 (*DeleteMarginOrderV1Resp) GetClientOrderId

func (o *DeleteMarginOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*DeleteMarginOrderV1Resp) GetClientOrderIdOk

func (o *DeleteMarginOrderV1Resp) GetClientOrderIdOk() (*string, bool)

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

func (*DeleteMarginOrderV1Resp) GetCummulativeQuoteQty

func (o *DeleteMarginOrderV1Resp) GetCummulativeQuoteQty() string

GetCummulativeQuoteQty returns the CummulativeQuoteQty field value if set, zero value otherwise.

func (*DeleteMarginOrderV1Resp) GetCummulativeQuoteQtyOk

func (o *DeleteMarginOrderV1Resp) GetCummulativeQuoteQtyOk() (*string, bool)

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

func (*DeleteMarginOrderV1Resp) GetExecutedQty

func (o *DeleteMarginOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*DeleteMarginOrderV1Resp) GetExecutedQtyOk

func (o *DeleteMarginOrderV1Resp) GetExecutedQtyOk() (*string, bool)

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

func (*DeleteMarginOrderV1Resp) GetOrderId

func (o *DeleteMarginOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*DeleteMarginOrderV1Resp) GetOrderIdOk

func (o *DeleteMarginOrderV1Resp) GetOrderIdOk() (*int64, bool)

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

func (*DeleteMarginOrderV1Resp) GetOrigClientOrderId

func (o *DeleteMarginOrderV1Resp) GetOrigClientOrderId() string

GetOrigClientOrderId returns the OrigClientOrderId field value if set, zero value otherwise.

func (*DeleteMarginOrderV1Resp) GetOrigClientOrderIdOk

func (o *DeleteMarginOrderV1Resp) GetOrigClientOrderIdOk() (*string, bool)

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

func (*DeleteMarginOrderV1Resp) GetOrigQty

func (o *DeleteMarginOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*DeleteMarginOrderV1Resp) GetOrigQtyOk

func (o *DeleteMarginOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*DeleteMarginOrderV1Resp) GetPrice

func (o *DeleteMarginOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*DeleteMarginOrderV1Resp) GetPriceOk

func (o *DeleteMarginOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*DeleteMarginOrderV1Resp) GetSide

func (o *DeleteMarginOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*DeleteMarginOrderV1Resp) GetSideOk

func (o *DeleteMarginOrderV1Resp) GetSideOk() (*string, bool)

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

func (*DeleteMarginOrderV1Resp) GetStatus

func (o *DeleteMarginOrderV1Resp) GetStatus() string

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

func (*DeleteMarginOrderV1Resp) GetStatusOk

func (o *DeleteMarginOrderV1Resp) 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 (*DeleteMarginOrderV1Resp) GetSymbol

func (o *DeleteMarginOrderV1Resp) GetSymbol() string

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

func (*DeleteMarginOrderV1Resp) GetSymbolOk

func (o *DeleteMarginOrderV1Resp) 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 (*DeleteMarginOrderV1Resp) GetTimeInForce

func (o *DeleteMarginOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*DeleteMarginOrderV1Resp) GetTimeInForceOk

func (o *DeleteMarginOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*DeleteMarginOrderV1Resp) GetType

func (o *DeleteMarginOrderV1Resp) GetType() string

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

func (*DeleteMarginOrderV1Resp) GetTypeOk

func (o *DeleteMarginOrderV1Resp) 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 (*DeleteMarginOrderV1Resp) HasClientOrderId

func (o *DeleteMarginOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*DeleteMarginOrderV1Resp) HasCummulativeQuoteQty

func (o *DeleteMarginOrderV1Resp) HasCummulativeQuoteQty() bool

HasCummulativeQuoteQty returns a boolean if a field has been set.

func (*DeleteMarginOrderV1Resp) HasExecutedQty

func (o *DeleteMarginOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*DeleteMarginOrderV1Resp) HasOrderId

func (o *DeleteMarginOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*DeleteMarginOrderV1Resp) HasOrigClientOrderId

func (o *DeleteMarginOrderV1Resp) HasOrigClientOrderId() bool

HasOrigClientOrderId returns a boolean if a field has been set.

func (*DeleteMarginOrderV1Resp) HasOrigQty

func (o *DeleteMarginOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*DeleteMarginOrderV1Resp) HasPrice

func (o *DeleteMarginOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*DeleteMarginOrderV1Resp) HasSide

func (o *DeleteMarginOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*DeleteMarginOrderV1Resp) HasStatus

func (o *DeleteMarginOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*DeleteMarginOrderV1Resp) HasSymbol

func (o *DeleteMarginOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*DeleteMarginOrderV1Resp) HasTimeInForce

func (o *DeleteMarginOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*DeleteMarginOrderV1Resp) HasType

func (o *DeleteMarginOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (DeleteMarginOrderV1Resp) MarshalJSON

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

func (*DeleteMarginOrderV1Resp) SetClientOrderId

func (o *DeleteMarginOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*DeleteMarginOrderV1Resp) SetCummulativeQuoteQty

func (o *DeleteMarginOrderV1Resp) SetCummulativeQuoteQty(v string)

SetCummulativeQuoteQty gets a reference to the given string and assigns it to the CummulativeQuoteQty field.

func (*DeleteMarginOrderV1Resp) SetExecutedQty

func (o *DeleteMarginOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*DeleteMarginOrderV1Resp) SetOrderId

func (o *DeleteMarginOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*DeleteMarginOrderV1Resp) SetOrigClientOrderId

func (o *DeleteMarginOrderV1Resp) SetOrigClientOrderId(v string)

SetOrigClientOrderId gets a reference to the given string and assigns it to the OrigClientOrderId field.

func (*DeleteMarginOrderV1Resp) SetOrigQty

func (o *DeleteMarginOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*DeleteMarginOrderV1Resp) SetPrice

func (o *DeleteMarginOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*DeleteMarginOrderV1Resp) SetSide

func (o *DeleteMarginOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*DeleteMarginOrderV1Resp) SetStatus

func (o *DeleteMarginOrderV1Resp) SetStatus(v string)

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

func (*DeleteMarginOrderV1Resp) SetSymbol

func (o *DeleteMarginOrderV1Resp) SetSymbol(v string)

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

func (*DeleteMarginOrderV1Resp) SetTimeInForce

func (o *DeleteMarginOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*DeleteMarginOrderV1Resp) SetType

func (o *DeleteMarginOrderV1Resp) SetType(v string)

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

func (DeleteMarginOrderV1Resp) ToMap

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

type DeleteUmAllOpenOrdersV1Resp

type DeleteUmAllOpenOrdersV1Resp struct {
	Code *int32  `json:"code,omitempty"`
	Msg  *string `json:"msg,omitempty"`
}

DeleteUmAllOpenOrdersV1Resp struct for DeleteUmAllOpenOrdersV1Resp

func NewDeleteUmAllOpenOrdersV1Resp

func NewDeleteUmAllOpenOrdersV1Resp() *DeleteUmAllOpenOrdersV1Resp

NewDeleteUmAllOpenOrdersV1Resp instantiates a new DeleteUmAllOpenOrdersV1Resp 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 NewDeleteUmAllOpenOrdersV1RespWithDefaults

func NewDeleteUmAllOpenOrdersV1RespWithDefaults() *DeleteUmAllOpenOrdersV1Resp

NewDeleteUmAllOpenOrdersV1RespWithDefaults instantiates a new DeleteUmAllOpenOrdersV1Resp 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 (*DeleteUmAllOpenOrdersV1Resp) GetCode

func (o *DeleteUmAllOpenOrdersV1Resp) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*DeleteUmAllOpenOrdersV1Resp) GetCodeOk

func (o *DeleteUmAllOpenOrdersV1Resp) GetCodeOk() (*int32, bool)

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

func (*DeleteUmAllOpenOrdersV1Resp) GetMsg

func (o *DeleteUmAllOpenOrdersV1Resp) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*DeleteUmAllOpenOrdersV1Resp) GetMsgOk

func (o *DeleteUmAllOpenOrdersV1Resp) GetMsgOk() (*string, bool)

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

func (*DeleteUmAllOpenOrdersV1Resp) HasCode

func (o *DeleteUmAllOpenOrdersV1Resp) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*DeleteUmAllOpenOrdersV1Resp) HasMsg

func (o *DeleteUmAllOpenOrdersV1Resp) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (DeleteUmAllOpenOrdersV1Resp) MarshalJSON

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

func (*DeleteUmAllOpenOrdersV1Resp) SetCode

func (o *DeleteUmAllOpenOrdersV1Resp) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*DeleteUmAllOpenOrdersV1Resp) SetMsg

func (o *DeleteUmAllOpenOrdersV1Resp) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (DeleteUmAllOpenOrdersV1Resp) ToMap

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

type DeleteUmConditionalAllOpenOrdersV1Resp

type DeleteUmConditionalAllOpenOrdersV1Resp struct {
	Code *string `json:"code,omitempty"`
	Msg  *string `json:"msg,omitempty"`
}

DeleteUmConditionalAllOpenOrdersV1Resp struct for DeleteUmConditionalAllOpenOrdersV1Resp

func NewDeleteUmConditionalAllOpenOrdersV1Resp

func NewDeleteUmConditionalAllOpenOrdersV1Resp() *DeleteUmConditionalAllOpenOrdersV1Resp

NewDeleteUmConditionalAllOpenOrdersV1Resp instantiates a new DeleteUmConditionalAllOpenOrdersV1Resp 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 NewDeleteUmConditionalAllOpenOrdersV1RespWithDefaults

func NewDeleteUmConditionalAllOpenOrdersV1RespWithDefaults() *DeleteUmConditionalAllOpenOrdersV1Resp

NewDeleteUmConditionalAllOpenOrdersV1RespWithDefaults instantiates a new DeleteUmConditionalAllOpenOrdersV1Resp 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 (*DeleteUmConditionalAllOpenOrdersV1Resp) GetCode

GetCode returns the Code field value if set, zero value otherwise.

func (*DeleteUmConditionalAllOpenOrdersV1Resp) GetCodeOk

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

func (*DeleteUmConditionalAllOpenOrdersV1Resp) GetMsg

GetMsg returns the Msg field value if set, zero value otherwise.

func (*DeleteUmConditionalAllOpenOrdersV1Resp) GetMsgOk

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

func (*DeleteUmConditionalAllOpenOrdersV1Resp) HasCode

HasCode returns a boolean if a field has been set.

func (*DeleteUmConditionalAllOpenOrdersV1Resp) HasMsg

HasMsg returns a boolean if a field has been set.

func (DeleteUmConditionalAllOpenOrdersV1Resp) MarshalJSON

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

func (*DeleteUmConditionalAllOpenOrdersV1Resp) SetCode

SetCode gets a reference to the given string and assigns it to the Code field.

func (*DeleteUmConditionalAllOpenOrdersV1Resp) SetMsg

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (DeleteUmConditionalAllOpenOrdersV1Resp) ToMap

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

type DeleteUmConditionalOrderV1Resp

type DeleteUmConditionalOrderV1Resp struct {
	ActivatePrice           *string `json:"activatePrice,omitempty"`
	BookTime                *int64  `json:"bookTime,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	NewClientStrategyId     *string `json:"newClientStrategyId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceMatch              *string `json:"priceMatch,omitempty"`
	PriceProtect            *bool   `json:"priceProtect,omitempty"`
	PriceRate               *string `json:"priceRate,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	StopPrice               *string `json:"stopPrice,omitempty"`
	StrategyId              *int64  `json:"strategyId,omitempty"`
	StrategyStatus          *string `json:"strategyStatus,omitempty"`
	StrategyType            *string `json:"strategyType,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
	WorkingType             *string `json:"workingType,omitempty"`
}

DeleteUmConditionalOrderV1Resp struct for DeleteUmConditionalOrderV1Resp

func NewDeleteUmConditionalOrderV1Resp

func NewDeleteUmConditionalOrderV1Resp() *DeleteUmConditionalOrderV1Resp

NewDeleteUmConditionalOrderV1Resp instantiates a new DeleteUmConditionalOrderV1Resp 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 NewDeleteUmConditionalOrderV1RespWithDefaults

func NewDeleteUmConditionalOrderV1RespWithDefaults() *DeleteUmConditionalOrderV1Resp

NewDeleteUmConditionalOrderV1RespWithDefaults instantiates a new DeleteUmConditionalOrderV1Resp 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 (*DeleteUmConditionalOrderV1Resp) GetActivatePrice

func (o *DeleteUmConditionalOrderV1Resp) GetActivatePrice() string

GetActivatePrice returns the ActivatePrice field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetActivatePriceOk

func (o *DeleteUmConditionalOrderV1Resp) GetActivatePriceOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetBookTime

func (o *DeleteUmConditionalOrderV1Resp) GetBookTime() int64

GetBookTime returns the BookTime field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetBookTimeOk

func (o *DeleteUmConditionalOrderV1Resp) GetBookTimeOk() (*int64, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetGoodTillDate

func (o *DeleteUmConditionalOrderV1Resp) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetGoodTillDateOk

func (o *DeleteUmConditionalOrderV1Resp) GetGoodTillDateOk() (*int64, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetNewClientStrategyId

func (o *DeleteUmConditionalOrderV1Resp) GetNewClientStrategyId() string

GetNewClientStrategyId returns the NewClientStrategyId field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetNewClientStrategyIdOk

func (o *DeleteUmConditionalOrderV1Resp) GetNewClientStrategyIdOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetOrigQty

func (o *DeleteUmConditionalOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetOrigQtyOk

func (o *DeleteUmConditionalOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetPositionSide

func (o *DeleteUmConditionalOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetPositionSideOk

func (o *DeleteUmConditionalOrderV1Resp) GetPositionSideOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetPrice

func (o *DeleteUmConditionalOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetPriceMatch

func (o *DeleteUmConditionalOrderV1Resp) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetPriceMatchOk

func (o *DeleteUmConditionalOrderV1Resp) GetPriceMatchOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetPriceOk

func (o *DeleteUmConditionalOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetPriceProtect

func (o *DeleteUmConditionalOrderV1Resp) GetPriceProtect() bool

GetPriceProtect returns the PriceProtect field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetPriceProtectOk

func (o *DeleteUmConditionalOrderV1Resp) GetPriceProtectOk() (*bool, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetPriceRate

func (o *DeleteUmConditionalOrderV1Resp) GetPriceRate() string

GetPriceRate returns the PriceRate field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetPriceRateOk

func (o *DeleteUmConditionalOrderV1Resp) GetPriceRateOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetReduceOnly

func (o *DeleteUmConditionalOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetReduceOnlyOk

func (o *DeleteUmConditionalOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetSelfTradePreventionMode

func (o *DeleteUmConditionalOrderV1Resp) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetSelfTradePreventionModeOk

func (o *DeleteUmConditionalOrderV1Resp) GetSelfTradePreventionModeOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetSideOk

func (o *DeleteUmConditionalOrderV1Resp) GetSideOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetStopPrice

func (o *DeleteUmConditionalOrderV1Resp) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetStopPriceOk

func (o *DeleteUmConditionalOrderV1Resp) GetStopPriceOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetStrategyId

func (o *DeleteUmConditionalOrderV1Resp) GetStrategyId() int64

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetStrategyIdOk

func (o *DeleteUmConditionalOrderV1Resp) GetStrategyIdOk() (*int64, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetStrategyStatus

func (o *DeleteUmConditionalOrderV1Resp) GetStrategyStatus() string

GetStrategyStatus returns the StrategyStatus field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetStrategyStatusOk

func (o *DeleteUmConditionalOrderV1Resp) GetStrategyStatusOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetStrategyType

func (o *DeleteUmConditionalOrderV1Resp) GetStrategyType() string

GetStrategyType returns the StrategyType field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetStrategyTypeOk

func (o *DeleteUmConditionalOrderV1Resp) GetStrategyTypeOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetSymbol

func (o *DeleteUmConditionalOrderV1Resp) GetSymbol() string

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

func (*DeleteUmConditionalOrderV1Resp) GetSymbolOk

func (o *DeleteUmConditionalOrderV1Resp) 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 (*DeleteUmConditionalOrderV1Resp) GetTimeInForce

func (o *DeleteUmConditionalOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetTimeInForceOk

func (o *DeleteUmConditionalOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetUpdateTime

func (o *DeleteUmConditionalOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetUpdateTimeOk

func (o *DeleteUmConditionalOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*DeleteUmConditionalOrderV1Resp) GetWorkingType

func (o *DeleteUmConditionalOrderV1Resp) GetWorkingType() string

GetWorkingType returns the WorkingType field value if set, zero value otherwise.

func (*DeleteUmConditionalOrderV1Resp) GetWorkingTypeOk

func (o *DeleteUmConditionalOrderV1Resp) GetWorkingTypeOk() (*string, bool)

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

func (*DeleteUmConditionalOrderV1Resp) HasActivatePrice

func (o *DeleteUmConditionalOrderV1Resp) HasActivatePrice() bool

HasActivatePrice returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasBookTime

func (o *DeleteUmConditionalOrderV1Resp) HasBookTime() bool

HasBookTime returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasGoodTillDate

func (o *DeleteUmConditionalOrderV1Resp) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasNewClientStrategyId

func (o *DeleteUmConditionalOrderV1Resp) HasNewClientStrategyId() bool

HasNewClientStrategyId returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasOrigQty

func (o *DeleteUmConditionalOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasPositionSide

func (o *DeleteUmConditionalOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasPrice

func (o *DeleteUmConditionalOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasPriceMatch

func (o *DeleteUmConditionalOrderV1Resp) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasPriceProtect

func (o *DeleteUmConditionalOrderV1Resp) HasPriceProtect() bool

HasPriceProtect returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasPriceRate

func (o *DeleteUmConditionalOrderV1Resp) HasPriceRate() bool

HasPriceRate returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasReduceOnly

func (o *DeleteUmConditionalOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasSelfTradePreventionMode

func (o *DeleteUmConditionalOrderV1Resp) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasSide

func (o *DeleteUmConditionalOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasStopPrice

func (o *DeleteUmConditionalOrderV1Resp) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasStrategyId

func (o *DeleteUmConditionalOrderV1Resp) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasStrategyStatus

func (o *DeleteUmConditionalOrderV1Resp) HasStrategyStatus() bool

HasStrategyStatus returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasStrategyType

func (o *DeleteUmConditionalOrderV1Resp) HasStrategyType() bool

HasStrategyType returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasSymbol

func (o *DeleteUmConditionalOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasTimeInForce

func (o *DeleteUmConditionalOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasUpdateTime

func (o *DeleteUmConditionalOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (*DeleteUmConditionalOrderV1Resp) HasWorkingType

func (o *DeleteUmConditionalOrderV1Resp) HasWorkingType() bool

HasWorkingType returns a boolean if a field has been set.

func (DeleteUmConditionalOrderV1Resp) MarshalJSON

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

func (*DeleteUmConditionalOrderV1Resp) SetActivatePrice

func (o *DeleteUmConditionalOrderV1Resp) SetActivatePrice(v string)

SetActivatePrice gets a reference to the given string and assigns it to the ActivatePrice field.

func (*DeleteUmConditionalOrderV1Resp) SetBookTime

func (o *DeleteUmConditionalOrderV1Resp) SetBookTime(v int64)

SetBookTime gets a reference to the given int64 and assigns it to the BookTime field.

func (*DeleteUmConditionalOrderV1Resp) SetGoodTillDate

func (o *DeleteUmConditionalOrderV1Resp) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*DeleteUmConditionalOrderV1Resp) SetNewClientStrategyId

func (o *DeleteUmConditionalOrderV1Resp) SetNewClientStrategyId(v string)

SetNewClientStrategyId gets a reference to the given string and assigns it to the NewClientStrategyId field.

func (*DeleteUmConditionalOrderV1Resp) SetOrigQty

func (o *DeleteUmConditionalOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*DeleteUmConditionalOrderV1Resp) SetPositionSide

func (o *DeleteUmConditionalOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*DeleteUmConditionalOrderV1Resp) SetPrice

func (o *DeleteUmConditionalOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*DeleteUmConditionalOrderV1Resp) SetPriceMatch

func (o *DeleteUmConditionalOrderV1Resp) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*DeleteUmConditionalOrderV1Resp) SetPriceProtect

func (o *DeleteUmConditionalOrderV1Resp) SetPriceProtect(v bool)

SetPriceProtect gets a reference to the given bool and assigns it to the PriceProtect field.

func (*DeleteUmConditionalOrderV1Resp) SetPriceRate

func (o *DeleteUmConditionalOrderV1Resp) SetPriceRate(v string)

SetPriceRate gets a reference to the given string and assigns it to the PriceRate field.

func (*DeleteUmConditionalOrderV1Resp) SetReduceOnly

func (o *DeleteUmConditionalOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*DeleteUmConditionalOrderV1Resp) SetSelfTradePreventionMode

func (o *DeleteUmConditionalOrderV1Resp) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*DeleteUmConditionalOrderV1Resp) SetSide

func (o *DeleteUmConditionalOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*DeleteUmConditionalOrderV1Resp) SetStopPrice

func (o *DeleteUmConditionalOrderV1Resp) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*DeleteUmConditionalOrderV1Resp) SetStrategyId

func (o *DeleteUmConditionalOrderV1Resp) SetStrategyId(v int64)

SetStrategyId gets a reference to the given int64 and assigns it to the StrategyId field.

func (*DeleteUmConditionalOrderV1Resp) SetStrategyStatus

func (o *DeleteUmConditionalOrderV1Resp) SetStrategyStatus(v string)

SetStrategyStatus gets a reference to the given string and assigns it to the StrategyStatus field.

func (*DeleteUmConditionalOrderV1Resp) SetStrategyType

func (o *DeleteUmConditionalOrderV1Resp) SetStrategyType(v string)

SetStrategyType gets a reference to the given string and assigns it to the StrategyType field.

func (*DeleteUmConditionalOrderV1Resp) SetSymbol

func (o *DeleteUmConditionalOrderV1Resp) SetSymbol(v string)

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

func (*DeleteUmConditionalOrderV1Resp) SetTimeInForce

func (o *DeleteUmConditionalOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*DeleteUmConditionalOrderV1Resp) SetUpdateTime

func (o *DeleteUmConditionalOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (*DeleteUmConditionalOrderV1Resp) SetWorkingType

func (o *DeleteUmConditionalOrderV1Resp) SetWorkingType(v string)

SetWorkingType gets a reference to the given string and assigns it to the WorkingType field.

func (DeleteUmConditionalOrderV1Resp) ToMap

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

type DeleteUmOrderV1Resp

type DeleteUmOrderV1Resp struct {
	AvgPrice                *string `json:"avgPrice,omitempty"`
	ClientOrderId           *string `json:"clientOrderId,omitempty"`
	CumQty                  *string `json:"cumQty,omitempty"`
	CumQuote                *string `json:"cumQuote,omitempty"`
	ExecutedQty             *string `json:"executedQty,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	OrderId                 *int64  `json:"orderId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceMatch              *string `json:"priceMatch,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	Status                  *string `json:"status,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	Type                    *string `json:"type,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
}

DeleteUmOrderV1Resp struct for DeleteUmOrderV1Resp

func NewDeleteUmOrderV1Resp

func NewDeleteUmOrderV1Resp() *DeleteUmOrderV1Resp

NewDeleteUmOrderV1Resp instantiates a new DeleteUmOrderV1Resp 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 NewDeleteUmOrderV1RespWithDefaults

func NewDeleteUmOrderV1RespWithDefaults() *DeleteUmOrderV1Resp

NewDeleteUmOrderV1RespWithDefaults instantiates a new DeleteUmOrderV1Resp 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 (*DeleteUmOrderV1Resp) GetAvgPrice

func (o *DeleteUmOrderV1Resp) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetAvgPriceOk

func (o *DeleteUmOrderV1Resp) GetAvgPriceOk() (*string, bool)

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

func (*DeleteUmOrderV1Resp) GetClientOrderId

func (o *DeleteUmOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetClientOrderIdOk

func (o *DeleteUmOrderV1Resp) GetClientOrderIdOk() (*string, bool)

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

func (*DeleteUmOrderV1Resp) GetCumQty

func (o *DeleteUmOrderV1Resp) GetCumQty() string

GetCumQty returns the CumQty field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetCumQtyOk

func (o *DeleteUmOrderV1Resp) GetCumQtyOk() (*string, bool)

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

func (*DeleteUmOrderV1Resp) GetCumQuote

func (o *DeleteUmOrderV1Resp) GetCumQuote() string

GetCumQuote returns the CumQuote field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetCumQuoteOk

func (o *DeleteUmOrderV1Resp) GetCumQuoteOk() (*string, bool)

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

func (*DeleteUmOrderV1Resp) GetExecutedQty

func (o *DeleteUmOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetExecutedQtyOk

func (o *DeleteUmOrderV1Resp) GetExecutedQtyOk() (*string, bool)

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

func (*DeleteUmOrderV1Resp) GetGoodTillDate

func (o *DeleteUmOrderV1Resp) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetGoodTillDateOk

func (o *DeleteUmOrderV1Resp) GetGoodTillDateOk() (*int64, bool)

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

func (*DeleteUmOrderV1Resp) GetOrderId

func (o *DeleteUmOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetOrderIdOk

func (o *DeleteUmOrderV1Resp) GetOrderIdOk() (*int64, bool)

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

func (*DeleteUmOrderV1Resp) GetOrigQty

func (o *DeleteUmOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetOrigQtyOk

func (o *DeleteUmOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*DeleteUmOrderV1Resp) GetPositionSide

func (o *DeleteUmOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetPositionSideOk

func (o *DeleteUmOrderV1Resp) GetPositionSideOk() (*string, bool)

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

func (*DeleteUmOrderV1Resp) GetPrice

func (o *DeleteUmOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetPriceMatch

func (o *DeleteUmOrderV1Resp) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetPriceMatchOk

func (o *DeleteUmOrderV1Resp) GetPriceMatchOk() (*string, bool)

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

func (*DeleteUmOrderV1Resp) GetPriceOk

func (o *DeleteUmOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*DeleteUmOrderV1Resp) GetReduceOnly

func (o *DeleteUmOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetReduceOnlyOk

func (o *DeleteUmOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

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

func (*DeleteUmOrderV1Resp) GetSelfTradePreventionMode

func (o *DeleteUmOrderV1Resp) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetSelfTradePreventionModeOk

func (o *DeleteUmOrderV1Resp) GetSelfTradePreventionModeOk() (*string, bool)

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

func (*DeleteUmOrderV1Resp) GetSide

func (o *DeleteUmOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetSideOk

func (o *DeleteUmOrderV1Resp) GetSideOk() (*string, bool)

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

func (*DeleteUmOrderV1Resp) GetStatus

func (o *DeleteUmOrderV1Resp) GetStatus() string

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

func (*DeleteUmOrderV1Resp) GetStatusOk

func (o *DeleteUmOrderV1Resp) 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 (*DeleteUmOrderV1Resp) GetSymbol

func (o *DeleteUmOrderV1Resp) GetSymbol() string

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

func (*DeleteUmOrderV1Resp) GetSymbolOk

func (o *DeleteUmOrderV1Resp) 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 (*DeleteUmOrderV1Resp) GetTimeInForce

func (o *DeleteUmOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetTimeInForceOk

func (o *DeleteUmOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*DeleteUmOrderV1Resp) GetType

func (o *DeleteUmOrderV1Resp) GetType() string

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

func (*DeleteUmOrderV1Resp) GetTypeOk

func (o *DeleteUmOrderV1Resp) 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 (*DeleteUmOrderV1Resp) GetUpdateTime

func (o *DeleteUmOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*DeleteUmOrderV1Resp) GetUpdateTimeOk

func (o *DeleteUmOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*DeleteUmOrderV1Resp) HasAvgPrice

func (o *DeleteUmOrderV1Resp) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasClientOrderId

func (o *DeleteUmOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasCumQty

func (o *DeleteUmOrderV1Resp) HasCumQty() bool

HasCumQty returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasCumQuote

func (o *DeleteUmOrderV1Resp) HasCumQuote() bool

HasCumQuote returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasExecutedQty

func (o *DeleteUmOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasGoodTillDate

func (o *DeleteUmOrderV1Resp) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasOrderId

func (o *DeleteUmOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasOrigQty

func (o *DeleteUmOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasPositionSide

func (o *DeleteUmOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasPrice

func (o *DeleteUmOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasPriceMatch

func (o *DeleteUmOrderV1Resp) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasReduceOnly

func (o *DeleteUmOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasSelfTradePreventionMode

func (o *DeleteUmOrderV1Resp) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasSide

func (o *DeleteUmOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasStatus

func (o *DeleteUmOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasSymbol

func (o *DeleteUmOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasTimeInForce

func (o *DeleteUmOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasType

func (o *DeleteUmOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (*DeleteUmOrderV1Resp) HasUpdateTime

func (o *DeleteUmOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (DeleteUmOrderV1Resp) MarshalJSON

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

func (*DeleteUmOrderV1Resp) SetAvgPrice

func (o *DeleteUmOrderV1Resp) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*DeleteUmOrderV1Resp) SetClientOrderId

func (o *DeleteUmOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*DeleteUmOrderV1Resp) SetCumQty

func (o *DeleteUmOrderV1Resp) SetCumQty(v string)

SetCumQty gets a reference to the given string and assigns it to the CumQty field.

func (*DeleteUmOrderV1Resp) SetCumQuote

func (o *DeleteUmOrderV1Resp) SetCumQuote(v string)

SetCumQuote gets a reference to the given string and assigns it to the CumQuote field.

func (*DeleteUmOrderV1Resp) SetExecutedQty

func (o *DeleteUmOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*DeleteUmOrderV1Resp) SetGoodTillDate

func (o *DeleteUmOrderV1Resp) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*DeleteUmOrderV1Resp) SetOrderId

func (o *DeleteUmOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*DeleteUmOrderV1Resp) SetOrigQty

func (o *DeleteUmOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*DeleteUmOrderV1Resp) SetPositionSide

func (o *DeleteUmOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*DeleteUmOrderV1Resp) SetPrice

func (o *DeleteUmOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*DeleteUmOrderV1Resp) SetPriceMatch

func (o *DeleteUmOrderV1Resp) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*DeleteUmOrderV1Resp) SetReduceOnly

func (o *DeleteUmOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*DeleteUmOrderV1Resp) SetSelfTradePreventionMode

func (o *DeleteUmOrderV1Resp) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*DeleteUmOrderV1Resp) SetSide

func (o *DeleteUmOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*DeleteUmOrderV1Resp) SetStatus

func (o *DeleteUmOrderV1Resp) SetStatus(v string)

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

func (*DeleteUmOrderV1Resp) SetSymbol

func (o *DeleteUmOrderV1Resp) SetSymbol(v string)

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

func (*DeleteUmOrderV1Resp) SetTimeInForce

func (o *DeleteUmOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*DeleteUmOrderV1Resp) SetType

func (o *DeleteUmOrderV1Resp) SetType(v string)

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

func (*DeleteUmOrderV1Resp) SetUpdateTime

func (o *DeleteUmOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (DeleteUmOrderV1Resp) ToMap

func (o DeleteUmOrderV1Resp) 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 GetAccountV1Resp

type GetAccountV1Resp struct {
	AccountEquity            *string `json:"accountEquity,omitempty"`
	AccountInitialMargin     *string `json:"accountInitialMargin,omitempty"`
	AccountMaintMargin       *string `json:"accountMaintMargin,omitempty"`
	AccountStatus            *string `json:"accountStatus,omitempty"`
	ActualEquity             *string `json:"actualEquity,omitempty"`
	TotalAvailableBalance    *string `json:"totalAvailableBalance,omitempty"`
	TotalMarginOpenLoss      *string `json:"totalMarginOpenLoss,omitempty"`
	UniMMR                   *string `json:"uniMMR,omitempty"`
	UpdateTime               *int64  `json:"updateTime,omitempty"`
	VirtualMaxWithdrawAmount *string `json:"virtualMaxWithdrawAmount,omitempty"`
}

GetAccountV1Resp struct for GetAccountV1Resp

func NewGetAccountV1Resp

func NewGetAccountV1Resp() *GetAccountV1Resp

NewGetAccountV1Resp instantiates a new GetAccountV1Resp 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 NewGetAccountV1RespWithDefaults

func NewGetAccountV1RespWithDefaults() *GetAccountV1Resp

NewGetAccountV1RespWithDefaults instantiates a new GetAccountV1Resp 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 (*GetAccountV1Resp) GetAccountEquity

func (o *GetAccountV1Resp) GetAccountEquity() string

GetAccountEquity returns the AccountEquity field value if set, zero value otherwise.

func (*GetAccountV1Resp) GetAccountEquityOk

func (o *GetAccountV1Resp) GetAccountEquityOk() (*string, bool)

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

func (*GetAccountV1Resp) GetAccountInitialMargin

func (o *GetAccountV1Resp) GetAccountInitialMargin() string

GetAccountInitialMargin returns the AccountInitialMargin field value if set, zero value otherwise.

func (*GetAccountV1Resp) GetAccountInitialMarginOk

func (o *GetAccountV1Resp) GetAccountInitialMarginOk() (*string, bool)

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

func (*GetAccountV1Resp) GetAccountMaintMargin

func (o *GetAccountV1Resp) GetAccountMaintMargin() string

GetAccountMaintMargin returns the AccountMaintMargin field value if set, zero value otherwise.

func (*GetAccountV1Resp) GetAccountMaintMarginOk

func (o *GetAccountV1Resp) GetAccountMaintMarginOk() (*string, bool)

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

func (*GetAccountV1Resp) GetAccountStatus

func (o *GetAccountV1Resp) GetAccountStatus() string

GetAccountStatus returns the AccountStatus field value if set, zero value otherwise.

func (*GetAccountV1Resp) GetAccountStatusOk

func (o *GetAccountV1Resp) GetAccountStatusOk() (*string, bool)

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

func (*GetAccountV1Resp) GetActualEquity

func (o *GetAccountV1Resp) GetActualEquity() string

GetActualEquity returns the ActualEquity field value if set, zero value otherwise.

func (*GetAccountV1Resp) GetActualEquityOk

func (o *GetAccountV1Resp) GetActualEquityOk() (*string, bool)

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

func (*GetAccountV1Resp) GetTotalAvailableBalance

func (o *GetAccountV1Resp) GetTotalAvailableBalance() string

GetTotalAvailableBalance returns the TotalAvailableBalance field value if set, zero value otherwise.

func (*GetAccountV1Resp) GetTotalAvailableBalanceOk

func (o *GetAccountV1Resp) GetTotalAvailableBalanceOk() (*string, bool)

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

func (*GetAccountV1Resp) GetTotalMarginOpenLoss

func (o *GetAccountV1Resp) GetTotalMarginOpenLoss() string

GetTotalMarginOpenLoss returns the TotalMarginOpenLoss field value if set, zero value otherwise.

func (*GetAccountV1Resp) GetTotalMarginOpenLossOk

func (o *GetAccountV1Resp) GetTotalMarginOpenLossOk() (*string, bool)

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

func (*GetAccountV1Resp) GetUniMMR

func (o *GetAccountV1Resp) GetUniMMR() string

GetUniMMR returns the UniMMR field value if set, zero value otherwise.

func (*GetAccountV1Resp) GetUniMMROk

func (o *GetAccountV1Resp) GetUniMMROk() (*string, bool)

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

func (*GetAccountV1Resp) GetUpdateTime

func (o *GetAccountV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetAccountV1Resp) GetUpdateTimeOk

func (o *GetAccountV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*GetAccountV1Resp) GetVirtualMaxWithdrawAmount

func (o *GetAccountV1Resp) GetVirtualMaxWithdrawAmount() string

GetVirtualMaxWithdrawAmount returns the VirtualMaxWithdrawAmount field value if set, zero value otherwise.

func (*GetAccountV1Resp) GetVirtualMaxWithdrawAmountOk

func (o *GetAccountV1Resp) GetVirtualMaxWithdrawAmountOk() (*string, bool)

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

func (*GetAccountV1Resp) HasAccountEquity

func (o *GetAccountV1Resp) HasAccountEquity() bool

HasAccountEquity returns a boolean if a field has been set.

func (*GetAccountV1Resp) HasAccountInitialMargin

func (o *GetAccountV1Resp) HasAccountInitialMargin() bool

HasAccountInitialMargin returns a boolean if a field has been set.

func (*GetAccountV1Resp) HasAccountMaintMargin

func (o *GetAccountV1Resp) HasAccountMaintMargin() bool

HasAccountMaintMargin returns a boolean if a field has been set.

func (*GetAccountV1Resp) HasAccountStatus

func (o *GetAccountV1Resp) HasAccountStatus() bool

HasAccountStatus returns a boolean if a field has been set.

func (*GetAccountV1Resp) HasActualEquity

func (o *GetAccountV1Resp) HasActualEquity() bool

HasActualEquity returns a boolean if a field has been set.

func (*GetAccountV1Resp) HasTotalAvailableBalance

func (o *GetAccountV1Resp) HasTotalAvailableBalance() bool

HasTotalAvailableBalance returns a boolean if a field has been set.

func (*GetAccountV1Resp) HasTotalMarginOpenLoss

func (o *GetAccountV1Resp) HasTotalMarginOpenLoss() bool

HasTotalMarginOpenLoss returns a boolean if a field has been set.

func (*GetAccountV1Resp) HasUniMMR

func (o *GetAccountV1Resp) HasUniMMR() bool

HasUniMMR returns a boolean if a field has been set.

func (*GetAccountV1Resp) HasUpdateTime

func (o *GetAccountV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (*GetAccountV1Resp) HasVirtualMaxWithdrawAmount

func (o *GetAccountV1Resp) HasVirtualMaxWithdrawAmount() bool

HasVirtualMaxWithdrawAmount returns a boolean if a field has been set.

func (GetAccountV1Resp) MarshalJSON

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

func (*GetAccountV1Resp) SetAccountEquity

func (o *GetAccountV1Resp) SetAccountEquity(v string)

SetAccountEquity gets a reference to the given string and assigns it to the AccountEquity field.

func (*GetAccountV1Resp) SetAccountInitialMargin

func (o *GetAccountV1Resp) SetAccountInitialMargin(v string)

SetAccountInitialMargin gets a reference to the given string and assigns it to the AccountInitialMargin field.

func (*GetAccountV1Resp) SetAccountMaintMargin

func (o *GetAccountV1Resp) SetAccountMaintMargin(v string)

SetAccountMaintMargin gets a reference to the given string and assigns it to the AccountMaintMargin field.

func (*GetAccountV1Resp) SetAccountStatus

func (o *GetAccountV1Resp) SetAccountStatus(v string)

SetAccountStatus gets a reference to the given string and assigns it to the AccountStatus field.

func (*GetAccountV1Resp) SetActualEquity

func (o *GetAccountV1Resp) SetActualEquity(v string)

SetActualEquity gets a reference to the given string and assigns it to the ActualEquity field.

func (*GetAccountV1Resp) SetTotalAvailableBalance

func (o *GetAccountV1Resp) SetTotalAvailableBalance(v string)

SetTotalAvailableBalance gets a reference to the given string and assigns it to the TotalAvailableBalance field.

func (*GetAccountV1Resp) SetTotalMarginOpenLoss

func (o *GetAccountV1Resp) SetTotalMarginOpenLoss(v string)

SetTotalMarginOpenLoss gets a reference to the given string and assigns it to the TotalMarginOpenLoss field.

func (*GetAccountV1Resp) SetUniMMR

func (o *GetAccountV1Resp) SetUniMMR(v string)

SetUniMMR gets a reference to the given string and assigns it to the UniMMR field.

func (*GetAccountV1Resp) SetUpdateTime

func (o *GetAccountV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (*GetAccountV1Resp) SetVirtualMaxWithdrawAmount

func (o *GetAccountV1Resp) SetVirtualMaxWithdrawAmount(v string)

SetVirtualMaxWithdrawAmount gets a reference to the given string and assigns it to the VirtualMaxWithdrawAmount field.

func (GetAccountV1Resp) ToMap

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

type GetCmAccountV1Resp

type GetCmAccountV1Resp struct {
	Assets    []GetCmAccountV1RespAssetsInner    `json:"assets,omitempty"`
	Positions []GetCmAccountV1RespPositionsInner `json:"positions,omitempty"`
}

GetCmAccountV1Resp struct for GetCmAccountV1Resp

func NewGetCmAccountV1Resp

func NewGetCmAccountV1Resp() *GetCmAccountV1Resp

NewGetCmAccountV1Resp instantiates a new GetCmAccountV1Resp 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 NewGetCmAccountV1RespWithDefaults

func NewGetCmAccountV1RespWithDefaults() *GetCmAccountV1Resp

NewGetCmAccountV1RespWithDefaults instantiates a new GetCmAccountV1Resp 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 (*GetCmAccountV1Resp) GetAssets

GetAssets returns the Assets field value if set, zero value otherwise.

func (*GetCmAccountV1Resp) GetAssetsOk

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

func (*GetCmAccountV1Resp) GetPositions

GetPositions returns the Positions field value if set, zero value otherwise.

func (*GetCmAccountV1Resp) GetPositionsOk

func (o *GetCmAccountV1Resp) GetPositionsOk() ([]GetCmAccountV1RespPositionsInner, bool)

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

func (*GetCmAccountV1Resp) HasAssets

func (o *GetCmAccountV1Resp) HasAssets() bool

HasAssets returns a boolean if a field has been set.

func (*GetCmAccountV1Resp) HasPositions

func (o *GetCmAccountV1Resp) HasPositions() bool

HasPositions returns a boolean if a field has been set.

func (GetCmAccountV1Resp) MarshalJSON

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

func (*GetCmAccountV1Resp) SetAssets

SetAssets gets a reference to the given []GetCmAccountV1RespAssetsInner and assigns it to the Assets field.

func (*GetCmAccountV1Resp) SetPositions

SetPositions gets a reference to the given []GetCmAccountV1RespPositionsInner and assigns it to the Positions field.

func (GetCmAccountV1Resp) ToMap

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

type GetCmAccountV1RespAssetsInner

type GetCmAccountV1RespAssetsInner struct {
	Asset                  *string `json:"asset,omitempty"`
	CrossUnPnl             *string `json:"crossUnPnl,omitempty"`
	CrossWalletBalance     *string `json:"crossWalletBalance,omitempty"`
	InitialMargin          *string `json:"initialMargin,omitempty"`
	MaintMargin            *string `json:"maintMargin,omitempty"`
	OpenOrderInitialMargin *string `json:"openOrderInitialMargin,omitempty"`
	PositionInitialMargin  *string `json:"positionInitialMargin,omitempty"`
	UpdateTime             *int64  `json:"updateTime,omitempty"`
}

GetCmAccountV1RespAssetsInner struct for GetCmAccountV1RespAssetsInner

func NewGetCmAccountV1RespAssetsInner

func NewGetCmAccountV1RespAssetsInner() *GetCmAccountV1RespAssetsInner

NewGetCmAccountV1RespAssetsInner instantiates a new GetCmAccountV1RespAssetsInner 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 NewGetCmAccountV1RespAssetsInnerWithDefaults

func NewGetCmAccountV1RespAssetsInnerWithDefaults() *GetCmAccountV1RespAssetsInner

NewGetCmAccountV1RespAssetsInnerWithDefaults instantiates a new GetCmAccountV1RespAssetsInner 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 (*GetCmAccountV1RespAssetsInner) GetAsset

func (o *GetCmAccountV1RespAssetsInner) GetAsset() string

GetAsset returns the Asset field value if set, zero value otherwise.

func (*GetCmAccountV1RespAssetsInner) GetAssetOk

func (o *GetCmAccountV1RespAssetsInner) GetAssetOk() (*string, bool)

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

func (*GetCmAccountV1RespAssetsInner) GetCrossUnPnl

func (o *GetCmAccountV1RespAssetsInner) GetCrossUnPnl() string

GetCrossUnPnl returns the CrossUnPnl field value if set, zero value otherwise.

func (*GetCmAccountV1RespAssetsInner) GetCrossUnPnlOk

func (o *GetCmAccountV1RespAssetsInner) GetCrossUnPnlOk() (*string, bool)

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

func (*GetCmAccountV1RespAssetsInner) GetCrossWalletBalance

func (o *GetCmAccountV1RespAssetsInner) GetCrossWalletBalance() string

GetCrossWalletBalance returns the CrossWalletBalance field value if set, zero value otherwise.

func (*GetCmAccountV1RespAssetsInner) GetCrossWalletBalanceOk

func (o *GetCmAccountV1RespAssetsInner) GetCrossWalletBalanceOk() (*string, bool)

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

func (*GetCmAccountV1RespAssetsInner) GetInitialMargin

func (o *GetCmAccountV1RespAssetsInner) GetInitialMargin() string

GetInitialMargin returns the InitialMargin field value if set, zero value otherwise.

func (*GetCmAccountV1RespAssetsInner) GetInitialMarginOk

func (o *GetCmAccountV1RespAssetsInner) GetInitialMarginOk() (*string, bool)

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

func (*GetCmAccountV1RespAssetsInner) GetMaintMargin

func (o *GetCmAccountV1RespAssetsInner) GetMaintMargin() string

GetMaintMargin returns the MaintMargin field value if set, zero value otherwise.

func (*GetCmAccountV1RespAssetsInner) GetMaintMarginOk

func (o *GetCmAccountV1RespAssetsInner) GetMaintMarginOk() (*string, bool)

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

func (*GetCmAccountV1RespAssetsInner) GetOpenOrderInitialMargin

func (o *GetCmAccountV1RespAssetsInner) GetOpenOrderInitialMargin() string

GetOpenOrderInitialMargin returns the OpenOrderInitialMargin field value if set, zero value otherwise.

func (*GetCmAccountV1RespAssetsInner) GetOpenOrderInitialMarginOk

func (o *GetCmAccountV1RespAssetsInner) GetOpenOrderInitialMarginOk() (*string, bool)

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

func (*GetCmAccountV1RespAssetsInner) GetPositionInitialMargin

func (o *GetCmAccountV1RespAssetsInner) GetPositionInitialMargin() string

GetPositionInitialMargin returns the PositionInitialMargin field value if set, zero value otherwise.

func (*GetCmAccountV1RespAssetsInner) GetPositionInitialMarginOk

func (o *GetCmAccountV1RespAssetsInner) GetPositionInitialMarginOk() (*string, bool)

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

func (*GetCmAccountV1RespAssetsInner) GetUpdateTime

func (o *GetCmAccountV1RespAssetsInner) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetCmAccountV1RespAssetsInner) GetUpdateTimeOk

func (o *GetCmAccountV1RespAssetsInner) GetUpdateTimeOk() (*int64, bool)

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

func (*GetCmAccountV1RespAssetsInner) HasAsset

func (o *GetCmAccountV1RespAssetsInner) HasAsset() bool

HasAsset returns a boolean if a field has been set.

func (*GetCmAccountV1RespAssetsInner) HasCrossUnPnl

func (o *GetCmAccountV1RespAssetsInner) HasCrossUnPnl() bool

HasCrossUnPnl returns a boolean if a field has been set.

func (*GetCmAccountV1RespAssetsInner) HasCrossWalletBalance

func (o *GetCmAccountV1RespAssetsInner) HasCrossWalletBalance() bool

HasCrossWalletBalance returns a boolean if a field has been set.

func (*GetCmAccountV1RespAssetsInner) HasInitialMargin

func (o *GetCmAccountV1RespAssetsInner) HasInitialMargin() bool

HasInitialMargin returns a boolean if a field has been set.

func (*GetCmAccountV1RespAssetsInner) HasMaintMargin

func (o *GetCmAccountV1RespAssetsInner) HasMaintMargin() bool

HasMaintMargin returns a boolean if a field has been set.

func (*GetCmAccountV1RespAssetsInner) HasOpenOrderInitialMargin

func (o *GetCmAccountV1RespAssetsInner) HasOpenOrderInitialMargin() bool

HasOpenOrderInitialMargin returns a boolean if a field has been set.

func (*GetCmAccountV1RespAssetsInner) HasPositionInitialMargin

func (o *GetCmAccountV1RespAssetsInner) HasPositionInitialMargin() bool

HasPositionInitialMargin returns a boolean if a field has been set.

func (*GetCmAccountV1RespAssetsInner) HasUpdateTime

func (o *GetCmAccountV1RespAssetsInner) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetCmAccountV1RespAssetsInner) MarshalJSON

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

func (*GetCmAccountV1RespAssetsInner) SetAsset

func (o *GetCmAccountV1RespAssetsInner) SetAsset(v string)

SetAsset gets a reference to the given string and assigns it to the Asset field.

func (*GetCmAccountV1RespAssetsInner) SetCrossUnPnl

func (o *GetCmAccountV1RespAssetsInner) SetCrossUnPnl(v string)

SetCrossUnPnl gets a reference to the given string and assigns it to the CrossUnPnl field.

func (*GetCmAccountV1RespAssetsInner) SetCrossWalletBalance

func (o *GetCmAccountV1RespAssetsInner) SetCrossWalletBalance(v string)

SetCrossWalletBalance gets a reference to the given string and assigns it to the CrossWalletBalance field.

func (*GetCmAccountV1RespAssetsInner) SetInitialMargin

func (o *GetCmAccountV1RespAssetsInner) SetInitialMargin(v string)

SetInitialMargin gets a reference to the given string and assigns it to the InitialMargin field.

func (*GetCmAccountV1RespAssetsInner) SetMaintMargin

func (o *GetCmAccountV1RespAssetsInner) SetMaintMargin(v string)

SetMaintMargin gets a reference to the given string and assigns it to the MaintMargin field.

func (*GetCmAccountV1RespAssetsInner) SetOpenOrderInitialMargin

func (o *GetCmAccountV1RespAssetsInner) SetOpenOrderInitialMargin(v string)

SetOpenOrderInitialMargin gets a reference to the given string and assigns it to the OpenOrderInitialMargin field.

func (*GetCmAccountV1RespAssetsInner) SetPositionInitialMargin

func (o *GetCmAccountV1RespAssetsInner) SetPositionInitialMargin(v string)

SetPositionInitialMargin gets a reference to the given string and assigns it to the PositionInitialMargin field.

func (*GetCmAccountV1RespAssetsInner) SetUpdateTime

func (o *GetCmAccountV1RespAssetsInner) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetCmAccountV1RespAssetsInner) ToMap

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

type GetCmAccountV1RespPositionsInner

type GetCmAccountV1RespPositionsInner struct {
	EntryPrice             *string `json:"entryPrice,omitempty"`
	InitialMargin          *string `json:"initialMargin,omitempty"`
	Leverage               *string `json:"leverage,omitempty"`
	MaintMargin            *string `json:"maintMargin,omitempty"`
	MaxQty                 *string `json:"maxQty,omitempty"`
	OpenOrderInitialMargin *string `json:"openOrderInitialMargin,omitempty"`
	PositionAmt            *string `json:"positionAmt,omitempty"`
	PositionInitialMargin  *string `json:"positionInitialMargin,omitempty"`
	PositionSide           *string `json:"positionSide,omitempty"`
	Symbol                 *string `json:"symbol,omitempty"`
	UnrealizedProfit       *string `json:"unrealizedProfit,omitempty"`
	UpdateTime             *int64  `json:"updateTime,omitempty"`
}

GetCmAccountV1RespPositionsInner struct for GetCmAccountV1RespPositionsInner

func NewGetCmAccountV1RespPositionsInner

func NewGetCmAccountV1RespPositionsInner() *GetCmAccountV1RespPositionsInner

NewGetCmAccountV1RespPositionsInner instantiates a new GetCmAccountV1RespPositionsInner 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 NewGetCmAccountV1RespPositionsInnerWithDefaults

func NewGetCmAccountV1RespPositionsInnerWithDefaults() *GetCmAccountV1RespPositionsInner

NewGetCmAccountV1RespPositionsInnerWithDefaults instantiates a new GetCmAccountV1RespPositionsInner 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 (*GetCmAccountV1RespPositionsInner) GetEntryPrice

func (o *GetCmAccountV1RespPositionsInner) GetEntryPrice() string

GetEntryPrice returns the EntryPrice field value if set, zero value otherwise.

func (*GetCmAccountV1RespPositionsInner) GetEntryPriceOk

func (o *GetCmAccountV1RespPositionsInner) GetEntryPriceOk() (*string, bool)

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

func (*GetCmAccountV1RespPositionsInner) GetInitialMargin

func (o *GetCmAccountV1RespPositionsInner) GetInitialMargin() string

GetInitialMargin returns the InitialMargin field value if set, zero value otherwise.

func (*GetCmAccountV1RespPositionsInner) GetInitialMarginOk

func (o *GetCmAccountV1RespPositionsInner) GetInitialMarginOk() (*string, bool)

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

func (*GetCmAccountV1RespPositionsInner) GetLeverage

func (o *GetCmAccountV1RespPositionsInner) GetLeverage() string

GetLeverage returns the Leverage field value if set, zero value otherwise.

func (*GetCmAccountV1RespPositionsInner) GetLeverageOk

func (o *GetCmAccountV1RespPositionsInner) GetLeverageOk() (*string, bool)

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

func (*GetCmAccountV1RespPositionsInner) GetMaintMargin

func (o *GetCmAccountV1RespPositionsInner) GetMaintMargin() string

GetMaintMargin returns the MaintMargin field value if set, zero value otherwise.

func (*GetCmAccountV1RespPositionsInner) GetMaintMarginOk

func (o *GetCmAccountV1RespPositionsInner) GetMaintMarginOk() (*string, bool)

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

func (*GetCmAccountV1RespPositionsInner) GetMaxQty

GetMaxQty returns the MaxQty field value if set, zero value otherwise.

func (*GetCmAccountV1RespPositionsInner) GetMaxQtyOk

func (o *GetCmAccountV1RespPositionsInner) GetMaxQtyOk() (*string, bool)

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

func (*GetCmAccountV1RespPositionsInner) GetOpenOrderInitialMargin

func (o *GetCmAccountV1RespPositionsInner) GetOpenOrderInitialMargin() string

GetOpenOrderInitialMargin returns the OpenOrderInitialMargin field value if set, zero value otherwise.

func (*GetCmAccountV1RespPositionsInner) GetOpenOrderInitialMarginOk

func (o *GetCmAccountV1RespPositionsInner) GetOpenOrderInitialMarginOk() (*string, bool)

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

func (*GetCmAccountV1RespPositionsInner) GetPositionAmt

func (o *GetCmAccountV1RespPositionsInner) GetPositionAmt() string

GetPositionAmt returns the PositionAmt field value if set, zero value otherwise.

func (*GetCmAccountV1RespPositionsInner) GetPositionAmtOk

func (o *GetCmAccountV1RespPositionsInner) GetPositionAmtOk() (*string, bool)

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

func (*GetCmAccountV1RespPositionsInner) GetPositionInitialMargin

func (o *GetCmAccountV1RespPositionsInner) GetPositionInitialMargin() string

GetPositionInitialMargin returns the PositionInitialMargin field value if set, zero value otherwise.

func (*GetCmAccountV1RespPositionsInner) GetPositionInitialMarginOk

func (o *GetCmAccountV1RespPositionsInner) GetPositionInitialMarginOk() (*string, bool)

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

func (*GetCmAccountV1RespPositionsInner) GetPositionSide

func (o *GetCmAccountV1RespPositionsInner) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetCmAccountV1RespPositionsInner) GetPositionSideOk

func (o *GetCmAccountV1RespPositionsInner) GetPositionSideOk() (*string, bool)

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

func (*GetCmAccountV1RespPositionsInner) GetSymbol

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

func (*GetCmAccountV1RespPositionsInner) GetSymbolOk

func (o *GetCmAccountV1RespPositionsInner) 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 (*GetCmAccountV1RespPositionsInner) GetUnrealizedProfit

func (o *GetCmAccountV1RespPositionsInner) GetUnrealizedProfit() string

GetUnrealizedProfit returns the UnrealizedProfit field value if set, zero value otherwise.

func (*GetCmAccountV1RespPositionsInner) GetUnrealizedProfitOk

func (o *GetCmAccountV1RespPositionsInner) GetUnrealizedProfitOk() (*string, bool)

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

func (*GetCmAccountV1RespPositionsInner) GetUpdateTime

func (o *GetCmAccountV1RespPositionsInner) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetCmAccountV1RespPositionsInner) GetUpdateTimeOk

func (o *GetCmAccountV1RespPositionsInner) GetUpdateTimeOk() (*int64, bool)

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

func (*GetCmAccountV1RespPositionsInner) HasEntryPrice

func (o *GetCmAccountV1RespPositionsInner) HasEntryPrice() bool

HasEntryPrice returns a boolean if a field has been set.

func (*GetCmAccountV1RespPositionsInner) HasInitialMargin

func (o *GetCmAccountV1RespPositionsInner) HasInitialMargin() bool

HasInitialMargin returns a boolean if a field has been set.

func (*GetCmAccountV1RespPositionsInner) HasLeverage

func (o *GetCmAccountV1RespPositionsInner) HasLeverage() bool

HasLeverage returns a boolean if a field has been set.

func (*GetCmAccountV1RespPositionsInner) HasMaintMargin

func (o *GetCmAccountV1RespPositionsInner) HasMaintMargin() bool

HasMaintMargin returns a boolean if a field has been set.

func (*GetCmAccountV1RespPositionsInner) HasMaxQty

func (o *GetCmAccountV1RespPositionsInner) HasMaxQty() bool

HasMaxQty returns a boolean if a field has been set.

func (*GetCmAccountV1RespPositionsInner) HasOpenOrderInitialMargin

func (o *GetCmAccountV1RespPositionsInner) HasOpenOrderInitialMargin() bool

HasOpenOrderInitialMargin returns a boolean if a field has been set.

func (*GetCmAccountV1RespPositionsInner) HasPositionAmt

func (o *GetCmAccountV1RespPositionsInner) HasPositionAmt() bool

HasPositionAmt returns a boolean if a field has been set.

func (*GetCmAccountV1RespPositionsInner) HasPositionInitialMargin

func (o *GetCmAccountV1RespPositionsInner) HasPositionInitialMargin() bool

HasPositionInitialMargin returns a boolean if a field has been set.

func (*GetCmAccountV1RespPositionsInner) HasPositionSide

func (o *GetCmAccountV1RespPositionsInner) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetCmAccountV1RespPositionsInner) HasSymbol

func (o *GetCmAccountV1RespPositionsInner) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetCmAccountV1RespPositionsInner) HasUnrealizedProfit

func (o *GetCmAccountV1RespPositionsInner) HasUnrealizedProfit() bool

HasUnrealizedProfit returns a boolean if a field has been set.

func (*GetCmAccountV1RespPositionsInner) HasUpdateTime

func (o *GetCmAccountV1RespPositionsInner) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetCmAccountV1RespPositionsInner) MarshalJSON

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

func (*GetCmAccountV1RespPositionsInner) SetEntryPrice

func (o *GetCmAccountV1RespPositionsInner) SetEntryPrice(v string)

SetEntryPrice gets a reference to the given string and assigns it to the EntryPrice field.

func (*GetCmAccountV1RespPositionsInner) SetInitialMargin

func (o *GetCmAccountV1RespPositionsInner) SetInitialMargin(v string)

SetInitialMargin gets a reference to the given string and assigns it to the InitialMargin field.

func (*GetCmAccountV1RespPositionsInner) SetLeverage

func (o *GetCmAccountV1RespPositionsInner) SetLeverage(v string)

SetLeverage gets a reference to the given string and assigns it to the Leverage field.

func (*GetCmAccountV1RespPositionsInner) SetMaintMargin

func (o *GetCmAccountV1RespPositionsInner) SetMaintMargin(v string)

SetMaintMargin gets a reference to the given string and assigns it to the MaintMargin field.

func (*GetCmAccountV1RespPositionsInner) SetMaxQty

func (o *GetCmAccountV1RespPositionsInner) SetMaxQty(v string)

SetMaxQty gets a reference to the given string and assigns it to the MaxQty field.

func (*GetCmAccountV1RespPositionsInner) SetOpenOrderInitialMargin

func (o *GetCmAccountV1RespPositionsInner) SetOpenOrderInitialMargin(v string)

SetOpenOrderInitialMargin gets a reference to the given string and assigns it to the OpenOrderInitialMargin field.

func (*GetCmAccountV1RespPositionsInner) SetPositionAmt

func (o *GetCmAccountV1RespPositionsInner) SetPositionAmt(v string)

SetPositionAmt gets a reference to the given string and assigns it to the PositionAmt field.

func (*GetCmAccountV1RespPositionsInner) SetPositionInitialMargin

func (o *GetCmAccountV1RespPositionsInner) SetPositionInitialMargin(v string)

SetPositionInitialMargin gets a reference to the given string and assigns it to the PositionInitialMargin field.

func (*GetCmAccountV1RespPositionsInner) SetPositionSide

func (o *GetCmAccountV1RespPositionsInner) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetCmAccountV1RespPositionsInner) SetSymbol

func (o *GetCmAccountV1RespPositionsInner) SetSymbol(v string)

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

func (*GetCmAccountV1RespPositionsInner) SetUnrealizedProfit

func (o *GetCmAccountV1RespPositionsInner) SetUnrealizedProfit(v string)

SetUnrealizedProfit gets a reference to the given string and assigns it to the UnrealizedProfit field.

func (*GetCmAccountV1RespPositionsInner) SetUpdateTime

func (o *GetCmAccountV1RespPositionsInner) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetCmAccountV1RespPositionsInner) ToMap

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

type GetCmAdlQuantileV1RespItem

type GetCmAdlQuantileV1RespItem struct {
	AdlQuantile *GetCmAdlQuantileV1RespItemAdlQuantile `json:"adlQuantile,omitempty"`
	Symbol      *string                                `json:"symbol,omitempty"`
}

GetCmAdlQuantileV1RespItem struct for GetCmAdlQuantileV1RespItem

func NewGetCmAdlQuantileV1RespItem

func NewGetCmAdlQuantileV1RespItem() *GetCmAdlQuantileV1RespItem

NewGetCmAdlQuantileV1RespItem instantiates a new GetCmAdlQuantileV1RespItem 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 NewGetCmAdlQuantileV1RespItemWithDefaults

func NewGetCmAdlQuantileV1RespItemWithDefaults() *GetCmAdlQuantileV1RespItem

NewGetCmAdlQuantileV1RespItemWithDefaults instantiates a new GetCmAdlQuantileV1RespItem 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 (*GetCmAdlQuantileV1RespItem) GetAdlQuantile

GetAdlQuantile returns the AdlQuantile field value if set, zero value otherwise.

func (*GetCmAdlQuantileV1RespItem) GetAdlQuantileOk

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

func (*GetCmAdlQuantileV1RespItem) GetSymbol

func (o *GetCmAdlQuantileV1RespItem) GetSymbol() string

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

func (*GetCmAdlQuantileV1RespItem) GetSymbolOk

func (o *GetCmAdlQuantileV1RespItem) 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 (*GetCmAdlQuantileV1RespItem) HasAdlQuantile

func (o *GetCmAdlQuantileV1RespItem) HasAdlQuantile() bool

HasAdlQuantile returns a boolean if a field has been set.

func (*GetCmAdlQuantileV1RespItem) HasSymbol

func (o *GetCmAdlQuantileV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (GetCmAdlQuantileV1RespItem) MarshalJSON

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

func (*GetCmAdlQuantileV1RespItem) SetAdlQuantile

SetAdlQuantile gets a reference to the given GetCmAdlQuantileV1RespItemAdlQuantile and assigns it to the AdlQuantile field.

func (*GetCmAdlQuantileV1RespItem) SetSymbol

func (o *GetCmAdlQuantileV1RespItem) SetSymbol(v string)

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

func (GetCmAdlQuantileV1RespItem) ToMap

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

type GetCmAdlQuantileV1RespItemAdlQuantile

type GetCmAdlQuantileV1RespItemAdlQuantile struct {
	HEDGE *int32 `json:"HEDGE,omitempty"`
	LONG  *int32 `json:"LONG,omitempty"`
	SHORT *int32 `json:"SHORT,omitempty"`
}

GetCmAdlQuantileV1RespItemAdlQuantile struct for GetCmAdlQuantileV1RespItemAdlQuantile

func NewGetCmAdlQuantileV1RespItemAdlQuantile

func NewGetCmAdlQuantileV1RespItemAdlQuantile() *GetCmAdlQuantileV1RespItemAdlQuantile

NewGetCmAdlQuantileV1RespItemAdlQuantile instantiates a new GetCmAdlQuantileV1RespItemAdlQuantile 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 NewGetCmAdlQuantileV1RespItemAdlQuantileWithDefaults

func NewGetCmAdlQuantileV1RespItemAdlQuantileWithDefaults() *GetCmAdlQuantileV1RespItemAdlQuantile

NewGetCmAdlQuantileV1RespItemAdlQuantileWithDefaults instantiates a new GetCmAdlQuantileV1RespItemAdlQuantile 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 (*GetCmAdlQuantileV1RespItemAdlQuantile) GetHEDGE

GetHEDGE returns the HEDGE field value if set, zero value otherwise.

func (*GetCmAdlQuantileV1RespItemAdlQuantile) GetHEDGEOk

func (o *GetCmAdlQuantileV1RespItemAdlQuantile) GetHEDGEOk() (*int32, bool)

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

func (*GetCmAdlQuantileV1RespItemAdlQuantile) GetLONG

GetLONG returns the LONG field value if set, zero value otherwise.

func (*GetCmAdlQuantileV1RespItemAdlQuantile) GetLONGOk

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

func (*GetCmAdlQuantileV1RespItemAdlQuantile) GetSHORT

GetSHORT returns the SHORT field value if set, zero value otherwise.

func (*GetCmAdlQuantileV1RespItemAdlQuantile) GetSHORTOk

func (o *GetCmAdlQuantileV1RespItemAdlQuantile) GetSHORTOk() (*int32, bool)

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

func (*GetCmAdlQuantileV1RespItemAdlQuantile) HasHEDGE

HasHEDGE returns a boolean if a field has been set.

func (*GetCmAdlQuantileV1RespItemAdlQuantile) HasLONG

HasLONG returns a boolean if a field has been set.

func (*GetCmAdlQuantileV1RespItemAdlQuantile) HasSHORT

HasSHORT returns a boolean if a field has been set.

func (GetCmAdlQuantileV1RespItemAdlQuantile) MarshalJSON

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

func (*GetCmAdlQuantileV1RespItemAdlQuantile) SetHEDGE

SetHEDGE gets a reference to the given int32 and assigns it to the HEDGE field.

func (*GetCmAdlQuantileV1RespItemAdlQuantile) SetLONG

SetLONG gets a reference to the given int32 and assigns it to the LONG field.

func (*GetCmAdlQuantileV1RespItemAdlQuantile) SetSHORT

SetSHORT gets a reference to the given int32 and assigns it to the SHORT field.

func (GetCmAdlQuantileV1RespItemAdlQuantile) ToMap

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

type GetCmAllOrdersV1RespItem

type GetCmAllOrdersV1RespItem struct {
	AvgPrice      *string `json:"avgPrice,omitempty"`
	ClientOrderId *string `json:"clientOrderId,omitempty"`
	CumBase       *string `json:"cumBase,omitempty"`
	ExecutedQty   *string `json:"executedQty,omitempty"`
	OrderId       *int64  `json:"orderId,omitempty"`
	OrigQty       *string `json:"origQty,omitempty"`
	OrigType      *string `json:"origType,omitempty"`
	Pair          *string `json:"pair,omitempty"`
	PositionSide  *string `json:"positionSide,omitempty"`
	Price         *string `json:"price,omitempty"`
	ReduceOnly    *bool   `json:"reduceOnly,omitempty"`
	Side          *string `json:"side,omitempty"`
	Status        *string `json:"status,omitempty"`
	Symbol        *string `json:"symbol,omitempty"`
	Time          *int64  `json:"time,omitempty"`
	TimeInForce   *string `json:"timeInForce,omitempty"`
	Type          *string `json:"type,omitempty"`
	UpdateTime    *int64  `json:"updateTime,omitempty"`
}

GetCmAllOrdersV1RespItem struct for GetCmAllOrdersV1RespItem

func NewGetCmAllOrdersV1RespItem

func NewGetCmAllOrdersV1RespItem() *GetCmAllOrdersV1RespItem

NewGetCmAllOrdersV1RespItem instantiates a new GetCmAllOrdersV1RespItem 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 NewGetCmAllOrdersV1RespItemWithDefaults

func NewGetCmAllOrdersV1RespItemWithDefaults() *GetCmAllOrdersV1RespItem

NewGetCmAllOrdersV1RespItemWithDefaults instantiates a new GetCmAllOrdersV1RespItem 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 (*GetCmAllOrdersV1RespItem) GetAvgPrice

func (o *GetCmAllOrdersV1RespItem) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetAvgPriceOk

func (o *GetCmAllOrdersV1RespItem) GetAvgPriceOk() (*string, bool)

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

func (*GetCmAllOrdersV1RespItem) GetClientOrderId

func (o *GetCmAllOrdersV1RespItem) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetClientOrderIdOk

func (o *GetCmAllOrdersV1RespItem) GetClientOrderIdOk() (*string, bool)

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

func (*GetCmAllOrdersV1RespItem) GetCumBase

func (o *GetCmAllOrdersV1RespItem) GetCumBase() string

GetCumBase returns the CumBase field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetCumBaseOk

func (o *GetCmAllOrdersV1RespItem) GetCumBaseOk() (*string, bool)

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

func (*GetCmAllOrdersV1RespItem) GetExecutedQty

func (o *GetCmAllOrdersV1RespItem) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetExecutedQtyOk

func (o *GetCmAllOrdersV1RespItem) GetExecutedQtyOk() (*string, bool)

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

func (*GetCmAllOrdersV1RespItem) GetOrderId

func (o *GetCmAllOrdersV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetOrderIdOk

func (o *GetCmAllOrdersV1RespItem) GetOrderIdOk() (*int64, bool)

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

func (*GetCmAllOrdersV1RespItem) GetOrigQty

func (o *GetCmAllOrdersV1RespItem) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetOrigQtyOk

func (o *GetCmAllOrdersV1RespItem) GetOrigQtyOk() (*string, bool)

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

func (*GetCmAllOrdersV1RespItem) GetOrigType

func (o *GetCmAllOrdersV1RespItem) GetOrigType() string

GetOrigType returns the OrigType field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetOrigTypeOk

func (o *GetCmAllOrdersV1RespItem) GetOrigTypeOk() (*string, bool)

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

func (*GetCmAllOrdersV1RespItem) GetPair

func (o *GetCmAllOrdersV1RespItem) GetPair() string

GetPair returns the Pair field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetPairOk

func (o *GetCmAllOrdersV1RespItem) GetPairOk() (*string, bool)

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

func (*GetCmAllOrdersV1RespItem) GetPositionSide

func (o *GetCmAllOrdersV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetPositionSideOk

func (o *GetCmAllOrdersV1RespItem) GetPositionSideOk() (*string, bool)

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

func (*GetCmAllOrdersV1RespItem) GetPrice

func (o *GetCmAllOrdersV1RespItem) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetPriceOk

func (o *GetCmAllOrdersV1RespItem) GetPriceOk() (*string, bool)

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

func (*GetCmAllOrdersV1RespItem) GetReduceOnly

func (o *GetCmAllOrdersV1RespItem) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetReduceOnlyOk

func (o *GetCmAllOrdersV1RespItem) GetReduceOnlyOk() (*bool, bool)

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

func (*GetCmAllOrdersV1RespItem) GetSide

func (o *GetCmAllOrdersV1RespItem) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetSideOk

func (o *GetCmAllOrdersV1RespItem) GetSideOk() (*string, bool)

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

func (*GetCmAllOrdersV1RespItem) GetStatus

func (o *GetCmAllOrdersV1RespItem) GetStatus() string

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

func (*GetCmAllOrdersV1RespItem) GetStatusOk

func (o *GetCmAllOrdersV1RespItem) 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 (*GetCmAllOrdersV1RespItem) GetSymbol

func (o *GetCmAllOrdersV1RespItem) GetSymbol() string

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

func (*GetCmAllOrdersV1RespItem) GetSymbolOk

func (o *GetCmAllOrdersV1RespItem) 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 (*GetCmAllOrdersV1RespItem) GetTime

func (o *GetCmAllOrdersV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetTimeInForce

func (o *GetCmAllOrdersV1RespItem) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetTimeInForceOk

func (o *GetCmAllOrdersV1RespItem) GetTimeInForceOk() (*string, bool)

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

func (*GetCmAllOrdersV1RespItem) GetTimeOk

func (o *GetCmAllOrdersV1RespItem) GetTimeOk() (*int64, bool)

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

func (*GetCmAllOrdersV1RespItem) GetType

func (o *GetCmAllOrdersV1RespItem) GetType() string

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

func (*GetCmAllOrdersV1RespItem) GetTypeOk

func (o *GetCmAllOrdersV1RespItem) 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 (*GetCmAllOrdersV1RespItem) GetUpdateTime

func (o *GetCmAllOrdersV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetCmAllOrdersV1RespItem) GetUpdateTimeOk

func (o *GetCmAllOrdersV1RespItem) GetUpdateTimeOk() (*int64, bool)

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

func (*GetCmAllOrdersV1RespItem) HasAvgPrice

func (o *GetCmAllOrdersV1RespItem) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasClientOrderId

func (o *GetCmAllOrdersV1RespItem) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasCumBase

func (o *GetCmAllOrdersV1RespItem) HasCumBase() bool

HasCumBase returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasExecutedQty

func (o *GetCmAllOrdersV1RespItem) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasOrderId

func (o *GetCmAllOrdersV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasOrigQty

func (o *GetCmAllOrdersV1RespItem) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasOrigType

func (o *GetCmAllOrdersV1RespItem) HasOrigType() bool

HasOrigType returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasPair

func (o *GetCmAllOrdersV1RespItem) HasPair() bool

HasPair returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasPositionSide

func (o *GetCmAllOrdersV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasPrice

func (o *GetCmAllOrdersV1RespItem) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasReduceOnly

func (o *GetCmAllOrdersV1RespItem) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasSide

func (o *GetCmAllOrdersV1RespItem) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasStatus

func (o *GetCmAllOrdersV1RespItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasSymbol

func (o *GetCmAllOrdersV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasTime

func (o *GetCmAllOrdersV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasTimeInForce

func (o *GetCmAllOrdersV1RespItem) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasType

func (o *GetCmAllOrdersV1RespItem) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetCmAllOrdersV1RespItem) HasUpdateTime

func (o *GetCmAllOrdersV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetCmAllOrdersV1RespItem) MarshalJSON

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

func (*GetCmAllOrdersV1RespItem) SetAvgPrice

func (o *GetCmAllOrdersV1RespItem) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*GetCmAllOrdersV1RespItem) SetClientOrderId

func (o *GetCmAllOrdersV1RespItem) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetCmAllOrdersV1RespItem) SetCumBase

func (o *GetCmAllOrdersV1RespItem) SetCumBase(v string)

SetCumBase gets a reference to the given string and assigns it to the CumBase field.

func (*GetCmAllOrdersV1RespItem) SetExecutedQty

func (o *GetCmAllOrdersV1RespItem) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetCmAllOrdersV1RespItem) SetOrderId

func (o *GetCmAllOrdersV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetCmAllOrdersV1RespItem) SetOrigQty

func (o *GetCmAllOrdersV1RespItem) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetCmAllOrdersV1RespItem) SetOrigType

func (o *GetCmAllOrdersV1RespItem) SetOrigType(v string)

SetOrigType gets a reference to the given string and assigns it to the OrigType field.

func (*GetCmAllOrdersV1RespItem) SetPair

func (o *GetCmAllOrdersV1RespItem) SetPair(v string)

SetPair gets a reference to the given string and assigns it to the Pair field.

func (*GetCmAllOrdersV1RespItem) SetPositionSide

func (o *GetCmAllOrdersV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetCmAllOrdersV1RespItem) SetPrice

func (o *GetCmAllOrdersV1RespItem) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetCmAllOrdersV1RespItem) SetReduceOnly

func (o *GetCmAllOrdersV1RespItem) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetCmAllOrdersV1RespItem) SetSide

func (o *GetCmAllOrdersV1RespItem) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetCmAllOrdersV1RespItem) SetStatus

func (o *GetCmAllOrdersV1RespItem) SetStatus(v string)

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

func (*GetCmAllOrdersV1RespItem) SetSymbol

func (o *GetCmAllOrdersV1RespItem) SetSymbol(v string)

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

func (*GetCmAllOrdersV1RespItem) SetTime

func (o *GetCmAllOrdersV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetCmAllOrdersV1RespItem) SetTimeInForce

func (o *GetCmAllOrdersV1RespItem) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetCmAllOrdersV1RespItem) SetType

func (o *GetCmAllOrdersV1RespItem) SetType(v string)

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

func (*GetCmAllOrdersV1RespItem) SetUpdateTime

func (o *GetCmAllOrdersV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetCmAllOrdersV1RespItem) ToMap

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

type GetCmCommissionRateV1Resp

type GetCmCommissionRateV1Resp struct {
	MakerCommissionRate *string `json:"makerCommissionRate,omitempty"`
	Symbol              *string `json:"symbol,omitempty"`
	TakerCommissionRate *string `json:"takerCommissionRate,omitempty"`
}

GetCmCommissionRateV1Resp struct for GetCmCommissionRateV1Resp

func NewGetCmCommissionRateV1Resp

func NewGetCmCommissionRateV1Resp() *GetCmCommissionRateV1Resp

NewGetCmCommissionRateV1Resp instantiates a new GetCmCommissionRateV1Resp 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 NewGetCmCommissionRateV1RespWithDefaults

func NewGetCmCommissionRateV1RespWithDefaults() *GetCmCommissionRateV1Resp

NewGetCmCommissionRateV1RespWithDefaults instantiates a new GetCmCommissionRateV1Resp 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 (*GetCmCommissionRateV1Resp) GetMakerCommissionRate

func (o *GetCmCommissionRateV1Resp) GetMakerCommissionRate() string

GetMakerCommissionRate returns the MakerCommissionRate field value if set, zero value otherwise.

func (*GetCmCommissionRateV1Resp) GetMakerCommissionRateOk

func (o *GetCmCommissionRateV1Resp) GetMakerCommissionRateOk() (*string, bool)

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

func (*GetCmCommissionRateV1Resp) GetSymbol

func (o *GetCmCommissionRateV1Resp) GetSymbol() string

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

func (*GetCmCommissionRateV1Resp) GetSymbolOk

func (o *GetCmCommissionRateV1Resp) 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 (*GetCmCommissionRateV1Resp) GetTakerCommissionRate

func (o *GetCmCommissionRateV1Resp) GetTakerCommissionRate() string

GetTakerCommissionRate returns the TakerCommissionRate field value if set, zero value otherwise.

func (*GetCmCommissionRateV1Resp) GetTakerCommissionRateOk

func (o *GetCmCommissionRateV1Resp) GetTakerCommissionRateOk() (*string, bool)

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

func (*GetCmCommissionRateV1Resp) HasMakerCommissionRate

func (o *GetCmCommissionRateV1Resp) HasMakerCommissionRate() bool

HasMakerCommissionRate returns a boolean if a field has been set.

func (*GetCmCommissionRateV1Resp) HasSymbol

func (o *GetCmCommissionRateV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetCmCommissionRateV1Resp) HasTakerCommissionRate

func (o *GetCmCommissionRateV1Resp) HasTakerCommissionRate() bool

HasTakerCommissionRate returns a boolean if a field has been set.

func (GetCmCommissionRateV1Resp) MarshalJSON

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

func (*GetCmCommissionRateV1Resp) SetMakerCommissionRate

func (o *GetCmCommissionRateV1Resp) SetMakerCommissionRate(v string)

SetMakerCommissionRate gets a reference to the given string and assigns it to the MakerCommissionRate field.

func (*GetCmCommissionRateV1Resp) SetSymbol

func (o *GetCmCommissionRateV1Resp) SetSymbol(v string)

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

func (*GetCmCommissionRateV1Resp) SetTakerCommissionRate

func (o *GetCmCommissionRateV1Resp) SetTakerCommissionRate(v string)

SetTakerCommissionRate gets a reference to the given string and assigns it to the TakerCommissionRate field.

func (GetCmCommissionRateV1Resp) ToMap

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

type GetCmConditionalAllOrdersV1RespItem

type GetCmConditionalAllOrdersV1RespItem struct {
	ActivatePrice       *string `json:"activatePrice,omitempty"`
	BookTime            *int64  `json:"bookTime,omitempty"`
	NewClientStrategyId *string `json:"newClientStrategyId,omitempty"`
	OrderId             *int64  `json:"orderId,omitempty"`
	OrigQty             *string `json:"origQty,omitempty"`
	PositionSide        *string `json:"positionSide,omitempty"`
	Price               *string `json:"price,omitempty"`
	PriceRate           *string `json:"priceRate,omitempty"`
	ReduceOnly          *bool   `json:"reduceOnly,omitempty"`
	Side                *string `json:"side,omitempty"`
	Status              *string `json:"status,omitempty"`
	StopPrice           *string `json:"stopPrice,omitempty"`
	StrategyId          *int64  `json:"strategyId,omitempty"`
	StrategyStatus      *string `json:"strategyStatus,omitempty"`
	StrategyType        *string `json:"strategyType,omitempty"`
	Symbol              *string `json:"symbol,omitempty"`
	TimeInForce         *string `json:"timeInForce,omitempty"`
	TriggerTime         *int64  `json:"triggerTime,omitempty"`
	Type                *string `json:"type,omitempty"`
	UpdateTime          *int64  `json:"updateTime,omitempty"`
}

GetCmConditionalAllOrdersV1RespItem struct for GetCmConditionalAllOrdersV1RespItem

func NewGetCmConditionalAllOrdersV1RespItem

func NewGetCmConditionalAllOrdersV1RespItem() *GetCmConditionalAllOrdersV1RespItem

NewGetCmConditionalAllOrdersV1RespItem instantiates a new GetCmConditionalAllOrdersV1RespItem 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 NewGetCmConditionalAllOrdersV1RespItemWithDefaults

func NewGetCmConditionalAllOrdersV1RespItemWithDefaults() *GetCmConditionalAllOrdersV1RespItem

NewGetCmConditionalAllOrdersV1RespItemWithDefaults instantiates a new GetCmConditionalAllOrdersV1RespItem 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 (*GetCmConditionalAllOrdersV1RespItem) GetActivatePrice

func (o *GetCmConditionalAllOrdersV1RespItem) GetActivatePrice() string

GetActivatePrice returns the ActivatePrice field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetActivatePriceOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetActivatePriceOk() (*string, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetBookTime

func (o *GetCmConditionalAllOrdersV1RespItem) GetBookTime() int64

GetBookTime returns the BookTime field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetBookTimeOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetBookTimeOk() (*int64, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetNewClientStrategyId

func (o *GetCmConditionalAllOrdersV1RespItem) GetNewClientStrategyId() string

GetNewClientStrategyId returns the NewClientStrategyId field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetNewClientStrategyIdOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetNewClientStrategyIdOk() (*string, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetOrderId

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetOrderIdOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetOrderIdOk() (*int64, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetOrigQty

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetOrigQtyOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetOrigQtyOk() (*string, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetPositionSide

func (o *GetCmConditionalAllOrdersV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetPositionSideOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetPositionSideOk() (*string, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetPriceOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetPriceOk() (*string, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetPriceRate

func (o *GetCmConditionalAllOrdersV1RespItem) GetPriceRate() string

GetPriceRate returns the PriceRate field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetPriceRateOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetPriceRateOk() (*string, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetReduceOnly

func (o *GetCmConditionalAllOrdersV1RespItem) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetReduceOnlyOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetReduceOnlyOk() (*bool, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetSideOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetSideOk() (*string, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetStatus

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

func (*GetCmConditionalAllOrdersV1RespItem) GetStatusOk

func (o *GetCmConditionalAllOrdersV1RespItem) 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 (*GetCmConditionalAllOrdersV1RespItem) GetStopPrice

func (o *GetCmConditionalAllOrdersV1RespItem) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetStopPriceOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetStopPriceOk() (*string, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetStrategyId

func (o *GetCmConditionalAllOrdersV1RespItem) GetStrategyId() int64

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetStrategyIdOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetStrategyIdOk() (*int64, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetStrategyStatus

func (o *GetCmConditionalAllOrdersV1RespItem) GetStrategyStatus() string

GetStrategyStatus returns the StrategyStatus field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetStrategyStatusOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetStrategyStatusOk() (*string, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetStrategyType

func (o *GetCmConditionalAllOrdersV1RespItem) GetStrategyType() string

GetStrategyType returns the StrategyType field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetStrategyTypeOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetStrategyTypeOk() (*string, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetSymbol

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

func (*GetCmConditionalAllOrdersV1RespItem) GetSymbolOk

func (o *GetCmConditionalAllOrdersV1RespItem) 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 (*GetCmConditionalAllOrdersV1RespItem) GetTimeInForce

func (o *GetCmConditionalAllOrdersV1RespItem) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetTimeInForceOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetTimeInForceOk() (*string, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetTriggerTime

func (o *GetCmConditionalAllOrdersV1RespItem) GetTriggerTime() int64

GetTriggerTime returns the TriggerTime field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetTriggerTimeOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetTriggerTimeOk() (*int64, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) GetType

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

func (*GetCmConditionalAllOrdersV1RespItem) GetTypeOk

func (o *GetCmConditionalAllOrdersV1RespItem) 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 (*GetCmConditionalAllOrdersV1RespItem) GetUpdateTime

func (o *GetCmConditionalAllOrdersV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetCmConditionalAllOrdersV1RespItem) GetUpdateTimeOk

func (o *GetCmConditionalAllOrdersV1RespItem) GetUpdateTimeOk() (*int64, bool)

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

func (*GetCmConditionalAllOrdersV1RespItem) HasActivatePrice

func (o *GetCmConditionalAllOrdersV1RespItem) HasActivatePrice() bool

HasActivatePrice returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasBookTime

func (o *GetCmConditionalAllOrdersV1RespItem) HasBookTime() bool

HasBookTime returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasNewClientStrategyId

func (o *GetCmConditionalAllOrdersV1RespItem) HasNewClientStrategyId() bool

HasNewClientStrategyId returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasOrderId

func (o *GetCmConditionalAllOrdersV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasOrigQty

func (o *GetCmConditionalAllOrdersV1RespItem) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasPositionSide

func (o *GetCmConditionalAllOrdersV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasPrice

HasPrice returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasPriceRate

func (o *GetCmConditionalAllOrdersV1RespItem) HasPriceRate() bool

HasPriceRate returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasReduceOnly

func (o *GetCmConditionalAllOrdersV1RespItem) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasSide

HasSide returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasStatus

HasStatus returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasStopPrice

func (o *GetCmConditionalAllOrdersV1RespItem) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasStrategyId

func (o *GetCmConditionalAllOrdersV1RespItem) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasStrategyStatus

func (o *GetCmConditionalAllOrdersV1RespItem) HasStrategyStatus() bool

HasStrategyStatus returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasStrategyType

func (o *GetCmConditionalAllOrdersV1RespItem) HasStrategyType() bool

HasStrategyType returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasTimeInForce

func (o *GetCmConditionalAllOrdersV1RespItem) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasTriggerTime

func (o *GetCmConditionalAllOrdersV1RespItem) HasTriggerTime() bool

HasTriggerTime returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasType

HasType returns a boolean if a field has been set.

func (*GetCmConditionalAllOrdersV1RespItem) HasUpdateTime

func (o *GetCmConditionalAllOrdersV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetCmConditionalAllOrdersV1RespItem) MarshalJSON

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

func (*GetCmConditionalAllOrdersV1RespItem) SetActivatePrice

func (o *GetCmConditionalAllOrdersV1RespItem) SetActivatePrice(v string)

SetActivatePrice gets a reference to the given string and assigns it to the ActivatePrice field.

func (*GetCmConditionalAllOrdersV1RespItem) SetBookTime

func (o *GetCmConditionalAllOrdersV1RespItem) SetBookTime(v int64)

SetBookTime gets a reference to the given int64 and assigns it to the BookTime field.

func (*GetCmConditionalAllOrdersV1RespItem) SetNewClientStrategyId

func (o *GetCmConditionalAllOrdersV1RespItem) SetNewClientStrategyId(v string)

SetNewClientStrategyId gets a reference to the given string and assigns it to the NewClientStrategyId field.

func (*GetCmConditionalAllOrdersV1RespItem) SetOrderId

func (o *GetCmConditionalAllOrdersV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetCmConditionalAllOrdersV1RespItem) SetOrigQty

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetCmConditionalAllOrdersV1RespItem) SetPositionSide

func (o *GetCmConditionalAllOrdersV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetCmConditionalAllOrdersV1RespItem) SetPrice

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetCmConditionalAllOrdersV1RespItem) SetPriceRate

func (o *GetCmConditionalAllOrdersV1RespItem) SetPriceRate(v string)

SetPriceRate gets a reference to the given string and assigns it to the PriceRate field.

func (*GetCmConditionalAllOrdersV1RespItem) SetReduceOnly

func (o *GetCmConditionalAllOrdersV1RespItem) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetCmConditionalAllOrdersV1RespItem) SetSide

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetCmConditionalAllOrdersV1RespItem) SetStatus

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

func (*GetCmConditionalAllOrdersV1RespItem) SetStopPrice

func (o *GetCmConditionalAllOrdersV1RespItem) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*GetCmConditionalAllOrdersV1RespItem) SetStrategyId

func (o *GetCmConditionalAllOrdersV1RespItem) SetStrategyId(v int64)

SetStrategyId gets a reference to the given int64 and assigns it to the StrategyId field.

func (*GetCmConditionalAllOrdersV1RespItem) SetStrategyStatus

func (o *GetCmConditionalAllOrdersV1RespItem) SetStrategyStatus(v string)

SetStrategyStatus gets a reference to the given string and assigns it to the StrategyStatus field.

func (*GetCmConditionalAllOrdersV1RespItem) SetStrategyType

func (o *GetCmConditionalAllOrdersV1RespItem) SetStrategyType(v string)

SetStrategyType gets a reference to the given string and assigns it to the StrategyType field.

func (*GetCmConditionalAllOrdersV1RespItem) SetSymbol

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

func (*GetCmConditionalAllOrdersV1RespItem) SetTimeInForce

func (o *GetCmConditionalAllOrdersV1RespItem) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetCmConditionalAllOrdersV1RespItem) SetTriggerTime

func (o *GetCmConditionalAllOrdersV1RespItem) SetTriggerTime(v int64)

SetTriggerTime gets a reference to the given int64 and assigns it to the TriggerTime field.

func (*GetCmConditionalAllOrdersV1RespItem) SetType

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

func (*GetCmConditionalAllOrdersV1RespItem) SetUpdateTime

func (o *GetCmConditionalAllOrdersV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetCmConditionalAllOrdersV1RespItem) ToMap

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

type GetCmConditionalOpenOrderV1Resp

type GetCmConditionalOpenOrderV1Resp struct {
	ActivatePrice       *string `json:"activatePrice,omitempty"`
	BookTime            *int64  `json:"bookTime,omitempty"`
	NewClientStrategyId *string `json:"newClientStrategyId,omitempty"`
	OrigQty             *string `json:"origQty,omitempty"`
	PositionSide        *string `json:"positionSide,omitempty"`
	Price               *string `json:"price,omitempty"`
	PriceRate           *string `json:"priceRate,omitempty"`
	ReduceOnly          *bool   `json:"reduceOnly,omitempty"`
	Side                *string `json:"side,omitempty"`
	StopPrice           *string `json:"stopPrice,omitempty"`
	StrategyId          *int64  `json:"strategyId,omitempty"`
	StrategyStatus      *string `json:"strategyStatus,omitempty"`
	StrategyType        *string `json:"strategyType,omitempty"`
	Symbol              *string `json:"symbol,omitempty"`
	TimeInForce         *string `json:"timeInForce,omitempty"`
	UpdateTime          *int64  `json:"updateTime,omitempty"`
}

GetCmConditionalOpenOrderV1Resp struct for GetCmConditionalOpenOrderV1Resp

func NewGetCmConditionalOpenOrderV1Resp

func NewGetCmConditionalOpenOrderV1Resp() *GetCmConditionalOpenOrderV1Resp

NewGetCmConditionalOpenOrderV1Resp instantiates a new GetCmConditionalOpenOrderV1Resp 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 NewGetCmConditionalOpenOrderV1RespWithDefaults

func NewGetCmConditionalOpenOrderV1RespWithDefaults() *GetCmConditionalOpenOrderV1Resp

NewGetCmConditionalOpenOrderV1RespWithDefaults instantiates a new GetCmConditionalOpenOrderV1Resp 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 (*GetCmConditionalOpenOrderV1Resp) GetActivatePrice

func (o *GetCmConditionalOpenOrderV1Resp) GetActivatePrice() string

GetActivatePrice returns the ActivatePrice field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetActivatePriceOk

func (o *GetCmConditionalOpenOrderV1Resp) GetActivatePriceOk() (*string, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetBookTime

func (o *GetCmConditionalOpenOrderV1Resp) GetBookTime() int64

GetBookTime returns the BookTime field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetBookTimeOk

func (o *GetCmConditionalOpenOrderV1Resp) GetBookTimeOk() (*int64, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetNewClientStrategyId

func (o *GetCmConditionalOpenOrderV1Resp) GetNewClientStrategyId() string

GetNewClientStrategyId returns the NewClientStrategyId field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetNewClientStrategyIdOk

func (o *GetCmConditionalOpenOrderV1Resp) GetNewClientStrategyIdOk() (*string, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetOrigQty

func (o *GetCmConditionalOpenOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetOrigQtyOk

func (o *GetCmConditionalOpenOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetPositionSide

func (o *GetCmConditionalOpenOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetPositionSideOk

func (o *GetCmConditionalOpenOrderV1Resp) GetPositionSideOk() (*string, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetPriceOk

func (o *GetCmConditionalOpenOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetPriceRate

func (o *GetCmConditionalOpenOrderV1Resp) GetPriceRate() string

GetPriceRate returns the PriceRate field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetPriceRateOk

func (o *GetCmConditionalOpenOrderV1Resp) GetPriceRateOk() (*string, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetReduceOnly

func (o *GetCmConditionalOpenOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetReduceOnlyOk

func (o *GetCmConditionalOpenOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetSideOk

func (o *GetCmConditionalOpenOrderV1Resp) GetSideOk() (*string, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetStopPrice

func (o *GetCmConditionalOpenOrderV1Resp) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetStopPriceOk

func (o *GetCmConditionalOpenOrderV1Resp) GetStopPriceOk() (*string, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetStrategyId

func (o *GetCmConditionalOpenOrderV1Resp) GetStrategyId() int64

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetStrategyIdOk

func (o *GetCmConditionalOpenOrderV1Resp) GetStrategyIdOk() (*int64, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetStrategyStatus

func (o *GetCmConditionalOpenOrderV1Resp) GetStrategyStatus() string

GetStrategyStatus returns the StrategyStatus field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetStrategyStatusOk

func (o *GetCmConditionalOpenOrderV1Resp) GetStrategyStatusOk() (*string, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetStrategyType

func (o *GetCmConditionalOpenOrderV1Resp) GetStrategyType() string

GetStrategyType returns the StrategyType field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetStrategyTypeOk

func (o *GetCmConditionalOpenOrderV1Resp) GetStrategyTypeOk() (*string, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetSymbol

func (o *GetCmConditionalOpenOrderV1Resp) GetSymbol() string

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

func (*GetCmConditionalOpenOrderV1Resp) GetSymbolOk

func (o *GetCmConditionalOpenOrderV1Resp) 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 (*GetCmConditionalOpenOrderV1Resp) GetTimeInForce

func (o *GetCmConditionalOpenOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetTimeInForceOk

func (o *GetCmConditionalOpenOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) GetUpdateTime

func (o *GetCmConditionalOpenOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrderV1Resp) GetUpdateTimeOk

func (o *GetCmConditionalOpenOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*GetCmConditionalOpenOrderV1Resp) HasActivatePrice

func (o *GetCmConditionalOpenOrderV1Resp) HasActivatePrice() bool

HasActivatePrice returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasBookTime

func (o *GetCmConditionalOpenOrderV1Resp) HasBookTime() bool

HasBookTime returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasNewClientStrategyId

func (o *GetCmConditionalOpenOrderV1Resp) HasNewClientStrategyId() bool

HasNewClientStrategyId returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasOrigQty

func (o *GetCmConditionalOpenOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasPositionSide

func (o *GetCmConditionalOpenOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasPrice

func (o *GetCmConditionalOpenOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasPriceRate

func (o *GetCmConditionalOpenOrderV1Resp) HasPriceRate() bool

HasPriceRate returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasReduceOnly

func (o *GetCmConditionalOpenOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasSide

HasSide returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasStopPrice

func (o *GetCmConditionalOpenOrderV1Resp) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasStrategyId

func (o *GetCmConditionalOpenOrderV1Resp) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasStrategyStatus

func (o *GetCmConditionalOpenOrderV1Resp) HasStrategyStatus() bool

HasStrategyStatus returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasStrategyType

func (o *GetCmConditionalOpenOrderV1Resp) HasStrategyType() bool

HasStrategyType returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasSymbol

func (o *GetCmConditionalOpenOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasTimeInForce

func (o *GetCmConditionalOpenOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrderV1Resp) HasUpdateTime

func (o *GetCmConditionalOpenOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetCmConditionalOpenOrderV1Resp) MarshalJSON

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

func (*GetCmConditionalOpenOrderV1Resp) SetActivatePrice

func (o *GetCmConditionalOpenOrderV1Resp) SetActivatePrice(v string)

SetActivatePrice gets a reference to the given string and assigns it to the ActivatePrice field.

func (*GetCmConditionalOpenOrderV1Resp) SetBookTime

func (o *GetCmConditionalOpenOrderV1Resp) SetBookTime(v int64)

SetBookTime gets a reference to the given int64 and assigns it to the BookTime field.

func (*GetCmConditionalOpenOrderV1Resp) SetNewClientStrategyId

func (o *GetCmConditionalOpenOrderV1Resp) SetNewClientStrategyId(v string)

SetNewClientStrategyId gets a reference to the given string and assigns it to the NewClientStrategyId field.

func (*GetCmConditionalOpenOrderV1Resp) SetOrigQty

func (o *GetCmConditionalOpenOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetCmConditionalOpenOrderV1Resp) SetPositionSide

func (o *GetCmConditionalOpenOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetCmConditionalOpenOrderV1Resp) SetPrice

func (o *GetCmConditionalOpenOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetCmConditionalOpenOrderV1Resp) SetPriceRate

func (o *GetCmConditionalOpenOrderV1Resp) SetPriceRate(v string)

SetPriceRate gets a reference to the given string and assigns it to the PriceRate field.

func (*GetCmConditionalOpenOrderV1Resp) SetReduceOnly

func (o *GetCmConditionalOpenOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetCmConditionalOpenOrderV1Resp) SetSide

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetCmConditionalOpenOrderV1Resp) SetStopPrice

func (o *GetCmConditionalOpenOrderV1Resp) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*GetCmConditionalOpenOrderV1Resp) SetStrategyId

func (o *GetCmConditionalOpenOrderV1Resp) SetStrategyId(v int64)

SetStrategyId gets a reference to the given int64 and assigns it to the StrategyId field.

func (*GetCmConditionalOpenOrderV1Resp) SetStrategyStatus

func (o *GetCmConditionalOpenOrderV1Resp) SetStrategyStatus(v string)

SetStrategyStatus gets a reference to the given string and assigns it to the StrategyStatus field.

func (*GetCmConditionalOpenOrderV1Resp) SetStrategyType

func (o *GetCmConditionalOpenOrderV1Resp) SetStrategyType(v string)

SetStrategyType gets a reference to the given string and assigns it to the StrategyType field.

func (*GetCmConditionalOpenOrderV1Resp) SetSymbol

func (o *GetCmConditionalOpenOrderV1Resp) SetSymbol(v string)

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

func (*GetCmConditionalOpenOrderV1Resp) SetTimeInForce

func (o *GetCmConditionalOpenOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetCmConditionalOpenOrderV1Resp) SetUpdateTime

func (o *GetCmConditionalOpenOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetCmConditionalOpenOrderV1Resp) ToMap

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

type GetCmConditionalOpenOrdersV1RespItem

type GetCmConditionalOpenOrdersV1RespItem struct {
	ActivatePrice       *string `json:"activatePrice,omitempty"`
	BookTime            *int64  `json:"bookTime,omitempty"`
	NewClientStrategyId *string `json:"newClientStrategyId,omitempty"`
	OrigQty             *string `json:"origQty,omitempty"`
	PositionSide        *string `json:"positionSide,omitempty"`
	Price               *string `json:"price,omitempty"`
	PriceRate           *string `json:"priceRate,omitempty"`
	ReduceOnly          *bool   `json:"reduceOnly,omitempty"`
	Side                *string `json:"side,omitempty"`
	StopPrice           *string `json:"stopPrice,omitempty"`
	StrategyId          *int64  `json:"strategyId,omitempty"`
	StrategyStatus      *string `json:"strategyStatus,omitempty"`
	StrategyType        *string `json:"strategyType,omitempty"`
	Symbol              *string `json:"symbol,omitempty"`
	TimeInForce         *string `json:"timeInForce,omitempty"`
	UpdateTime          *int64  `json:"updateTime,omitempty"`
}

GetCmConditionalOpenOrdersV1RespItem struct for GetCmConditionalOpenOrdersV1RespItem

func NewGetCmConditionalOpenOrdersV1RespItem

func NewGetCmConditionalOpenOrdersV1RespItem() *GetCmConditionalOpenOrdersV1RespItem

NewGetCmConditionalOpenOrdersV1RespItem instantiates a new GetCmConditionalOpenOrdersV1RespItem 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 NewGetCmConditionalOpenOrdersV1RespItemWithDefaults

func NewGetCmConditionalOpenOrdersV1RespItemWithDefaults() *GetCmConditionalOpenOrdersV1RespItem

NewGetCmConditionalOpenOrdersV1RespItemWithDefaults instantiates a new GetCmConditionalOpenOrdersV1RespItem 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 (*GetCmConditionalOpenOrdersV1RespItem) GetActivatePrice

func (o *GetCmConditionalOpenOrdersV1RespItem) GetActivatePrice() string

GetActivatePrice returns the ActivatePrice field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetActivatePriceOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetActivatePriceOk() (*string, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetBookTime

GetBookTime returns the BookTime field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetBookTimeOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetBookTimeOk() (*int64, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetNewClientStrategyId

func (o *GetCmConditionalOpenOrdersV1RespItem) GetNewClientStrategyId() string

GetNewClientStrategyId returns the NewClientStrategyId field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetNewClientStrategyIdOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetNewClientStrategyIdOk() (*string, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetOrigQty

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetOrigQtyOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetOrigQtyOk() (*string, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetPositionSide

func (o *GetCmConditionalOpenOrdersV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetPositionSideOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetPositionSideOk() (*string, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetPriceOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetPriceOk() (*string, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetPriceRate

func (o *GetCmConditionalOpenOrdersV1RespItem) GetPriceRate() string

GetPriceRate returns the PriceRate field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetPriceRateOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetPriceRateOk() (*string, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetReduceOnly

func (o *GetCmConditionalOpenOrdersV1RespItem) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetReduceOnlyOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetReduceOnlyOk() (*bool, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetSideOk

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetStopPrice

func (o *GetCmConditionalOpenOrdersV1RespItem) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetStopPriceOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetStopPriceOk() (*string, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetStrategyId

func (o *GetCmConditionalOpenOrdersV1RespItem) GetStrategyId() int64

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetStrategyIdOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetStrategyIdOk() (*int64, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetStrategyStatus

func (o *GetCmConditionalOpenOrdersV1RespItem) GetStrategyStatus() string

GetStrategyStatus returns the StrategyStatus field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetStrategyStatusOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetStrategyStatusOk() (*string, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetStrategyType

func (o *GetCmConditionalOpenOrdersV1RespItem) GetStrategyType() string

GetStrategyType returns the StrategyType field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetStrategyTypeOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetStrategyTypeOk() (*string, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetSymbol

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetSymbolOk

func (o *GetCmConditionalOpenOrdersV1RespItem) 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 (*GetCmConditionalOpenOrdersV1RespItem) GetTimeInForce

func (o *GetCmConditionalOpenOrdersV1RespItem) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetTimeInForceOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetTimeInForceOk() (*string, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) GetUpdateTime

func (o *GetCmConditionalOpenOrdersV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetCmConditionalOpenOrdersV1RespItem) GetUpdateTimeOk

func (o *GetCmConditionalOpenOrdersV1RespItem) GetUpdateTimeOk() (*int64, bool)

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

func (*GetCmConditionalOpenOrdersV1RespItem) HasActivatePrice

func (o *GetCmConditionalOpenOrdersV1RespItem) HasActivatePrice() bool

HasActivatePrice returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasBookTime

func (o *GetCmConditionalOpenOrdersV1RespItem) HasBookTime() bool

HasBookTime returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasNewClientStrategyId

func (o *GetCmConditionalOpenOrdersV1RespItem) HasNewClientStrategyId() bool

HasNewClientStrategyId returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasOrigQty

HasOrigQty returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasPositionSide

func (o *GetCmConditionalOpenOrdersV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasPrice

HasPrice returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasPriceRate

func (o *GetCmConditionalOpenOrdersV1RespItem) HasPriceRate() bool

HasPriceRate returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasReduceOnly

func (o *GetCmConditionalOpenOrdersV1RespItem) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasSide

HasSide returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasStopPrice

func (o *GetCmConditionalOpenOrdersV1RespItem) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasStrategyId

func (o *GetCmConditionalOpenOrdersV1RespItem) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasStrategyStatus

func (o *GetCmConditionalOpenOrdersV1RespItem) HasStrategyStatus() bool

HasStrategyStatus returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasStrategyType

func (o *GetCmConditionalOpenOrdersV1RespItem) HasStrategyType() bool

HasStrategyType returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasTimeInForce

func (o *GetCmConditionalOpenOrdersV1RespItem) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetCmConditionalOpenOrdersV1RespItem) HasUpdateTime

func (o *GetCmConditionalOpenOrdersV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetCmConditionalOpenOrdersV1RespItem) MarshalJSON

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

func (*GetCmConditionalOpenOrdersV1RespItem) SetActivatePrice

func (o *GetCmConditionalOpenOrdersV1RespItem) SetActivatePrice(v string)

SetActivatePrice gets a reference to the given string and assigns it to the ActivatePrice field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetBookTime

func (o *GetCmConditionalOpenOrdersV1RespItem) SetBookTime(v int64)

SetBookTime gets a reference to the given int64 and assigns it to the BookTime field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetNewClientStrategyId

func (o *GetCmConditionalOpenOrdersV1RespItem) SetNewClientStrategyId(v string)

SetNewClientStrategyId gets a reference to the given string and assigns it to the NewClientStrategyId field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetOrigQty

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetPositionSide

func (o *GetCmConditionalOpenOrdersV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetPrice

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetPriceRate

func (o *GetCmConditionalOpenOrdersV1RespItem) SetPriceRate(v string)

SetPriceRate gets a reference to the given string and assigns it to the PriceRate field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetReduceOnly

func (o *GetCmConditionalOpenOrdersV1RespItem) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetSide

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetStopPrice

func (o *GetCmConditionalOpenOrdersV1RespItem) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetStrategyId

func (o *GetCmConditionalOpenOrdersV1RespItem) SetStrategyId(v int64)

SetStrategyId gets a reference to the given int64 and assigns it to the StrategyId field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetStrategyStatus

func (o *GetCmConditionalOpenOrdersV1RespItem) SetStrategyStatus(v string)

SetStrategyStatus gets a reference to the given string and assigns it to the StrategyStatus field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetStrategyType

func (o *GetCmConditionalOpenOrdersV1RespItem) SetStrategyType(v string)

SetStrategyType gets a reference to the given string and assigns it to the StrategyType field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetSymbol

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

func (*GetCmConditionalOpenOrdersV1RespItem) SetTimeInForce

func (o *GetCmConditionalOpenOrdersV1RespItem) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetCmConditionalOpenOrdersV1RespItem) SetUpdateTime

func (o *GetCmConditionalOpenOrdersV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetCmConditionalOpenOrdersV1RespItem) ToMap

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

type GetCmConditionalOrderHistoryV1Resp

type GetCmConditionalOrderHistoryV1Resp struct {
	ActivatePrice       *string `json:"activatePrice,omitempty"`
	BookTime            *int64  `json:"bookTime,omitempty"`
	NewClientStrategyId *string `json:"newClientStrategyId,omitempty"`
	OrderId             *int64  `json:"orderId,omitempty"`
	OrigQty             *string `json:"origQty,omitempty"`
	PositionSide        *string `json:"positionSide,omitempty"`
	Price               *string `json:"price,omitempty"`
	PriceMatch          *string `json:"priceMatch,omitempty"`
	PriceProtect        *bool   `json:"priceProtect,omitempty"`
	PriceRate           *string `json:"priceRate,omitempty"`
	ReduceOnly          *bool   `json:"reduceOnly,omitempty"`
	Side                *string `json:"side,omitempty"`
	Status              *string `json:"status,omitempty"`
	StopPrice           *string `json:"stopPrice,omitempty"`
	StrategyId          *int64  `json:"strategyId,omitempty"`
	StrategyStatus      *string `json:"strategyStatus,omitempty"`
	StrategyType        *string `json:"strategyType,omitempty"`
	Symbol              *string `json:"symbol,omitempty"`
	TimeInForce         *string `json:"timeInForce,omitempty"`
	TriggerTime         *int64  `json:"triggerTime,omitempty"`
	Type                *string `json:"type,omitempty"`
	UpdateTime          *int64  `json:"updateTime,omitempty"`
	WorkingType         *string `json:"workingType,omitempty"`
}

GetCmConditionalOrderHistoryV1Resp struct for GetCmConditionalOrderHistoryV1Resp

func NewGetCmConditionalOrderHistoryV1Resp

func NewGetCmConditionalOrderHistoryV1Resp() *GetCmConditionalOrderHistoryV1Resp

NewGetCmConditionalOrderHistoryV1Resp instantiates a new GetCmConditionalOrderHistoryV1Resp 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 NewGetCmConditionalOrderHistoryV1RespWithDefaults

func NewGetCmConditionalOrderHistoryV1RespWithDefaults() *GetCmConditionalOrderHistoryV1Resp

NewGetCmConditionalOrderHistoryV1RespWithDefaults instantiates a new GetCmConditionalOrderHistoryV1Resp 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 (*GetCmConditionalOrderHistoryV1Resp) GetActivatePrice

func (o *GetCmConditionalOrderHistoryV1Resp) GetActivatePrice() string

GetActivatePrice returns the ActivatePrice field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetActivatePriceOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetActivatePriceOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetBookTime

func (o *GetCmConditionalOrderHistoryV1Resp) GetBookTime() int64

GetBookTime returns the BookTime field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetBookTimeOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetBookTimeOk() (*int64, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetNewClientStrategyId

func (o *GetCmConditionalOrderHistoryV1Resp) GetNewClientStrategyId() string

GetNewClientStrategyId returns the NewClientStrategyId field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetNewClientStrategyIdOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetNewClientStrategyIdOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetOrderId

func (o *GetCmConditionalOrderHistoryV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetOrderIdOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetOrderIdOk() (*int64, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetOrigQty

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetOrigQtyOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetPositionSide

func (o *GetCmConditionalOrderHistoryV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetPositionSideOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetPositionSideOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetPriceMatch

func (o *GetCmConditionalOrderHistoryV1Resp) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetPriceMatchOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetPriceMatchOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetPriceOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetPriceOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetPriceProtect

func (o *GetCmConditionalOrderHistoryV1Resp) GetPriceProtect() bool

GetPriceProtect returns the PriceProtect field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetPriceProtectOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetPriceProtectOk() (*bool, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetPriceRate

func (o *GetCmConditionalOrderHistoryV1Resp) GetPriceRate() string

GetPriceRate returns the PriceRate field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetPriceRateOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetPriceRateOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetReduceOnly

func (o *GetCmConditionalOrderHistoryV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetReduceOnlyOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetReduceOnlyOk() (*bool, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetSideOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetSideOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetStatus

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

func (*GetCmConditionalOrderHistoryV1Resp) GetStatusOk

func (o *GetCmConditionalOrderHistoryV1Resp) 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 (*GetCmConditionalOrderHistoryV1Resp) GetStopPrice

func (o *GetCmConditionalOrderHistoryV1Resp) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetStopPriceOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetStopPriceOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetStrategyId

func (o *GetCmConditionalOrderHistoryV1Resp) GetStrategyId() int64

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetStrategyIdOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetStrategyIdOk() (*int64, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetStrategyStatus

func (o *GetCmConditionalOrderHistoryV1Resp) GetStrategyStatus() string

GetStrategyStatus returns the StrategyStatus field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetStrategyStatusOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetStrategyStatusOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetStrategyType

func (o *GetCmConditionalOrderHistoryV1Resp) GetStrategyType() string

GetStrategyType returns the StrategyType field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetStrategyTypeOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetStrategyTypeOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetSymbol

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

func (*GetCmConditionalOrderHistoryV1Resp) GetSymbolOk

func (o *GetCmConditionalOrderHistoryV1Resp) 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 (*GetCmConditionalOrderHistoryV1Resp) GetTimeInForce

func (o *GetCmConditionalOrderHistoryV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetTimeInForceOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetTriggerTime

func (o *GetCmConditionalOrderHistoryV1Resp) GetTriggerTime() int64

GetTriggerTime returns the TriggerTime field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetTriggerTimeOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetTriggerTimeOk() (*int64, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetType

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

func (*GetCmConditionalOrderHistoryV1Resp) GetTypeOk

func (o *GetCmConditionalOrderHistoryV1Resp) 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 (*GetCmConditionalOrderHistoryV1Resp) GetUpdateTime

func (o *GetCmConditionalOrderHistoryV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetUpdateTimeOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) GetWorkingType

func (o *GetCmConditionalOrderHistoryV1Resp) GetWorkingType() string

GetWorkingType returns the WorkingType field value if set, zero value otherwise.

func (*GetCmConditionalOrderHistoryV1Resp) GetWorkingTypeOk

func (o *GetCmConditionalOrderHistoryV1Resp) GetWorkingTypeOk() (*string, bool)

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

func (*GetCmConditionalOrderHistoryV1Resp) HasActivatePrice

func (o *GetCmConditionalOrderHistoryV1Resp) HasActivatePrice() bool

HasActivatePrice returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasBookTime

func (o *GetCmConditionalOrderHistoryV1Resp) HasBookTime() bool

HasBookTime returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasNewClientStrategyId

func (o *GetCmConditionalOrderHistoryV1Resp) HasNewClientStrategyId() bool

HasNewClientStrategyId returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasOrderId

func (o *GetCmConditionalOrderHistoryV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasOrigQty

func (o *GetCmConditionalOrderHistoryV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasPositionSide

func (o *GetCmConditionalOrderHistoryV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasPrice

HasPrice returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasPriceMatch

func (o *GetCmConditionalOrderHistoryV1Resp) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasPriceProtect

func (o *GetCmConditionalOrderHistoryV1Resp) HasPriceProtect() bool

HasPriceProtect returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasPriceRate

func (o *GetCmConditionalOrderHistoryV1Resp) HasPriceRate() bool

HasPriceRate returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasReduceOnly

func (o *GetCmConditionalOrderHistoryV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasSide

HasSide returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasStatus

HasStatus returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasStopPrice

func (o *GetCmConditionalOrderHistoryV1Resp) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasStrategyId

func (o *GetCmConditionalOrderHistoryV1Resp) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasStrategyStatus

func (o *GetCmConditionalOrderHistoryV1Resp) HasStrategyStatus() bool

HasStrategyStatus returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasStrategyType

func (o *GetCmConditionalOrderHistoryV1Resp) HasStrategyType() bool

HasStrategyType returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasTimeInForce

func (o *GetCmConditionalOrderHistoryV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasTriggerTime

func (o *GetCmConditionalOrderHistoryV1Resp) HasTriggerTime() bool

HasTriggerTime returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasType

HasType returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasUpdateTime

func (o *GetCmConditionalOrderHistoryV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (*GetCmConditionalOrderHistoryV1Resp) HasWorkingType

func (o *GetCmConditionalOrderHistoryV1Resp) HasWorkingType() bool

HasWorkingType returns a boolean if a field has been set.

func (GetCmConditionalOrderHistoryV1Resp) MarshalJSON

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

func (*GetCmConditionalOrderHistoryV1Resp) SetActivatePrice

func (o *GetCmConditionalOrderHistoryV1Resp) SetActivatePrice(v string)

SetActivatePrice gets a reference to the given string and assigns it to the ActivatePrice field.

func (*GetCmConditionalOrderHistoryV1Resp) SetBookTime

func (o *GetCmConditionalOrderHistoryV1Resp) SetBookTime(v int64)

SetBookTime gets a reference to the given int64 and assigns it to the BookTime field.

func (*GetCmConditionalOrderHistoryV1Resp) SetNewClientStrategyId

func (o *GetCmConditionalOrderHistoryV1Resp) SetNewClientStrategyId(v string)

SetNewClientStrategyId gets a reference to the given string and assigns it to the NewClientStrategyId field.

func (*GetCmConditionalOrderHistoryV1Resp) SetOrderId

func (o *GetCmConditionalOrderHistoryV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetCmConditionalOrderHistoryV1Resp) SetOrigQty

func (o *GetCmConditionalOrderHistoryV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetCmConditionalOrderHistoryV1Resp) SetPositionSide

func (o *GetCmConditionalOrderHistoryV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetCmConditionalOrderHistoryV1Resp) SetPrice

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetCmConditionalOrderHistoryV1Resp) SetPriceMatch

func (o *GetCmConditionalOrderHistoryV1Resp) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*GetCmConditionalOrderHistoryV1Resp) SetPriceProtect

func (o *GetCmConditionalOrderHistoryV1Resp) SetPriceProtect(v bool)

SetPriceProtect gets a reference to the given bool and assigns it to the PriceProtect field.

func (*GetCmConditionalOrderHistoryV1Resp) SetPriceRate

func (o *GetCmConditionalOrderHistoryV1Resp) SetPriceRate(v string)

SetPriceRate gets a reference to the given string and assigns it to the PriceRate field.

func (*GetCmConditionalOrderHistoryV1Resp) SetReduceOnly

func (o *GetCmConditionalOrderHistoryV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetCmConditionalOrderHistoryV1Resp) SetSide

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetCmConditionalOrderHistoryV1Resp) SetStatus

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

func (*GetCmConditionalOrderHistoryV1Resp) SetStopPrice

func (o *GetCmConditionalOrderHistoryV1Resp) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*GetCmConditionalOrderHistoryV1Resp) SetStrategyId

func (o *GetCmConditionalOrderHistoryV1Resp) SetStrategyId(v int64)

SetStrategyId gets a reference to the given int64 and assigns it to the StrategyId field.

func (*GetCmConditionalOrderHistoryV1Resp) SetStrategyStatus

func (o *GetCmConditionalOrderHistoryV1Resp) SetStrategyStatus(v string)

SetStrategyStatus gets a reference to the given string and assigns it to the StrategyStatus field.

func (*GetCmConditionalOrderHistoryV1Resp) SetStrategyType

func (o *GetCmConditionalOrderHistoryV1Resp) SetStrategyType(v string)

SetStrategyType gets a reference to the given string and assigns it to the StrategyType field.

func (*GetCmConditionalOrderHistoryV1Resp) SetSymbol

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

func (*GetCmConditionalOrderHistoryV1Resp) SetTimeInForce

func (o *GetCmConditionalOrderHistoryV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetCmConditionalOrderHistoryV1Resp) SetTriggerTime

func (o *GetCmConditionalOrderHistoryV1Resp) SetTriggerTime(v int64)

SetTriggerTime gets a reference to the given int64 and assigns it to the TriggerTime field.

func (*GetCmConditionalOrderHistoryV1Resp) SetType

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

func (*GetCmConditionalOrderHistoryV1Resp) SetUpdateTime

func (o *GetCmConditionalOrderHistoryV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (*GetCmConditionalOrderHistoryV1Resp) SetWorkingType

func (o *GetCmConditionalOrderHistoryV1Resp) SetWorkingType(v string)

SetWorkingType gets a reference to the given string and assigns it to the WorkingType field.

func (GetCmConditionalOrderHistoryV1Resp) ToMap

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

type GetCmForceOrdersV1RespItem

type GetCmForceOrdersV1RespItem struct {
	AvgPrice      *string `json:"avgPrice,omitempty"`
	ClientOrderId *string `json:"clientOrderId,omitempty"`
	CumBase       *string `json:"cumBase,omitempty"`
	ExecutedQty   *string `json:"executedQty,omitempty"`
	OrderId       *int64  `json:"orderId,omitempty"`
	OrigQty       *string `json:"origQty,omitempty"`
	OrigType      *string `json:"origType,omitempty"`
	Pair          *string `json:"pair,omitempty"`
	PositionSide  *string `json:"positionSide,omitempty"`
	Price         *string `json:"price,omitempty"`
	ReduceOnly    *bool   `json:"reduceOnly,omitempty"`
	Side          *string `json:"side,omitempty"`
	Status        *string `json:"status,omitempty"`
	Symbol        *string `json:"symbol,omitempty"`
	Time          *int64  `json:"time,omitempty"`
	TimeInForce   *string `json:"timeInForce,omitempty"`
	Type          *string `json:"type,omitempty"`
	UpdateTime    *int64  `json:"updateTime,omitempty"`
}

GetCmForceOrdersV1RespItem struct for GetCmForceOrdersV1RespItem

func NewGetCmForceOrdersV1RespItem

func NewGetCmForceOrdersV1RespItem() *GetCmForceOrdersV1RespItem

NewGetCmForceOrdersV1RespItem instantiates a new GetCmForceOrdersV1RespItem 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 NewGetCmForceOrdersV1RespItemWithDefaults

func NewGetCmForceOrdersV1RespItemWithDefaults() *GetCmForceOrdersV1RespItem

NewGetCmForceOrdersV1RespItemWithDefaults instantiates a new GetCmForceOrdersV1RespItem 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 (*GetCmForceOrdersV1RespItem) GetAvgPrice

func (o *GetCmForceOrdersV1RespItem) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetAvgPriceOk

func (o *GetCmForceOrdersV1RespItem) GetAvgPriceOk() (*string, bool)

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

func (*GetCmForceOrdersV1RespItem) GetClientOrderId

func (o *GetCmForceOrdersV1RespItem) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetClientOrderIdOk

func (o *GetCmForceOrdersV1RespItem) GetClientOrderIdOk() (*string, bool)

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

func (*GetCmForceOrdersV1RespItem) GetCumBase

func (o *GetCmForceOrdersV1RespItem) GetCumBase() string

GetCumBase returns the CumBase field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetCumBaseOk

func (o *GetCmForceOrdersV1RespItem) GetCumBaseOk() (*string, bool)

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

func (*GetCmForceOrdersV1RespItem) GetExecutedQty

func (o *GetCmForceOrdersV1RespItem) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetExecutedQtyOk

func (o *GetCmForceOrdersV1RespItem) GetExecutedQtyOk() (*string, bool)

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

func (*GetCmForceOrdersV1RespItem) GetOrderId

func (o *GetCmForceOrdersV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetOrderIdOk

func (o *GetCmForceOrdersV1RespItem) GetOrderIdOk() (*int64, bool)

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

func (*GetCmForceOrdersV1RespItem) GetOrigQty

func (o *GetCmForceOrdersV1RespItem) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetOrigQtyOk

func (o *GetCmForceOrdersV1RespItem) GetOrigQtyOk() (*string, bool)

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

func (*GetCmForceOrdersV1RespItem) GetOrigType

func (o *GetCmForceOrdersV1RespItem) GetOrigType() string

GetOrigType returns the OrigType field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetOrigTypeOk

func (o *GetCmForceOrdersV1RespItem) GetOrigTypeOk() (*string, bool)

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

func (*GetCmForceOrdersV1RespItem) GetPair

func (o *GetCmForceOrdersV1RespItem) GetPair() string

GetPair returns the Pair field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetPairOk

func (o *GetCmForceOrdersV1RespItem) GetPairOk() (*string, bool)

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

func (*GetCmForceOrdersV1RespItem) GetPositionSide

func (o *GetCmForceOrdersV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetPositionSideOk

func (o *GetCmForceOrdersV1RespItem) GetPositionSideOk() (*string, bool)

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

func (*GetCmForceOrdersV1RespItem) GetPrice

func (o *GetCmForceOrdersV1RespItem) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetPriceOk

func (o *GetCmForceOrdersV1RespItem) GetPriceOk() (*string, bool)

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

func (*GetCmForceOrdersV1RespItem) GetReduceOnly

func (o *GetCmForceOrdersV1RespItem) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetReduceOnlyOk

func (o *GetCmForceOrdersV1RespItem) GetReduceOnlyOk() (*bool, bool)

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

func (*GetCmForceOrdersV1RespItem) GetSide

func (o *GetCmForceOrdersV1RespItem) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetSideOk

func (o *GetCmForceOrdersV1RespItem) GetSideOk() (*string, bool)

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

func (*GetCmForceOrdersV1RespItem) GetStatus

func (o *GetCmForceOrdersV1RespItem) GetStatus() string

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

func (*GetCmForceOrdersV1RespItem) GetStatusOk

func (o *GetCmForceOrdersV1RespItem) 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 (*GetCmForceOrdersV1RespItem) GetSymbol

func (o *GetCmForceOrdersV1RespItem) GetSymbol() string

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

func (*GetCmForceOrdersV1RespItem) GetSymbolOk

func (o *GetCmForceOrdersV1RespItem) 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 (*GetCmForceOrdersV1RespItem) GetTime

func (o *GetCmForceOrdersV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetTimeInForce

func (o *GetCmForceOrdersV1RespItem) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetTimeInForceOk

func (o *GetCmForceOrdersV1RespItem) GetTimeInForceOk() (*string, bool)

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

func (*GetCmForceOrdersV1RespItem) GetTimeOk

func (o *GetCmForceOrdersV1RespItem) GetTimeOk() (*int64, bool)

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

func (*GetCmForceOrdersV1RespItem) GetType

func (o *GetCmForceOrdersV1RespItem) GetType() string

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

func (*GetCmForceOrdersV1RespItem) GetTypeOk

func (o *GetCmForceOrdersV1RespItem) 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 (*GetCmForceOrdersV1RespItem) GetUpdateTime

func (o *GetCmForceOrdersV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetCmForceOrdersV1RespItem) GetUpdateTimeOk

func (o *GetCmForceOrdersV1RespItem) GetUpdateTimeOk() (*int64, bool)

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

func (*GetCmForceOrdersV1RespItem) HasAvgPrice

func (o *GetCmForceOrdersV1RespItem) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasClientOrderId

func (o *GetCmForceOrdersV1RespItem) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasCumBase

func (o *GetCmForceOrdersV1RespItem) HasCumBase() bool

HasCumBase returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasExecutedQty

func (o *GetCmForceOrdersV1RespItem) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasOrderId

func (o *GetCmForceOrdersV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasOrigQty

func (o *GetCmForceOrdersV1RespItem) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasOrigType

func (o *GetCmForceOrdersV1RespItem) HasOrigType() bool

HasOrigType returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasPair

func (o *GetCmForceOrdersV1RespItem) HasPair() bool

HasPair returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasPositionSide

func (o *GetCmForceOrdersV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasPrice

func (o *GetCmForceOrdersV1RespItem) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasReduceOnly

func (o *GetCmForceOrdersV1RespItem) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasSide

func (o *GetCmForceOrdersV1RespItem) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasStatus

func (o *GetCmForceOrdersV1RespItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasSymbol

func (o *GetCmForceOrdersV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasTime

func (o *GetCmForceOrdersV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasTimeInForce

func (o *GetCmForceOrdersV1RespItem) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasType

func (o *GetCmForceOrdersV1RespItem) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetCmForceOrdersV1RespItem) HasUpdateTime

func (o *GetCmForceOrdersV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetCmForceOrdersV1RespItem) MarshalJSON

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

func (*GetCmForceOrdersV1RespItem) SetAvgPrice

func (o *GetCmForceOrdersV1RespItem) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*GetCmForceOrdersV1RespItem) SetClientOrderId

func (o *GetCmForceOrdersV1RespItem) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetCmForceOrdersV1RespItem) SetCumBase

func (o *GetCmForceOrdersV1RespItem) SetCumBase(v string)

SetCumBase gets a reference to the given string and assigns it to the CumBase field.

func (*GetCmForceOrdersV1RespItem) SetExecutedQty

func (o *GetCmForceOrdersV1RespItem) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetCmForceOrdersV1RespItem) SetOrderId

func (o *GetCmForceOrdersV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetCmForceOrdersV1RespItem) SetOrigQty

func (o *GetCmForceOrdersV1RespItem) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetCmForceOrdersV1RespItem) SetOrigType

func (o *GetCmForceOrdersV1RespItem) SetOrigType(v string)

SetOrigType gets a reference to the given string and assigns it to the OrigType field.

func (*GetCmForceOrdersV1RespItem) SetPair

func (o *GetCmForceOrdersV1RespItem) SetPair(v string)

SetPair gets a reference to the given string and assigns it to the Pair field.

func (*GetCmForceOrdersV1RespItem) SetPositionSide

func (o *GetCmForceOrdersV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetCmForceOrdersV1RespItem) SetPrice

func (o *GetCmForceOrdersV1RespItem) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetCmForceOrdersV1RespItem) SetReduceOnly

func (o *GetCmForceOrdersV1RespItem) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetCmForceOrdersV1RespItem) SetSide

func (o *GetCmForceOrdersV1RespItem) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetCmForceOrdersV1RespItem) SetStatus

func (o *GetCmForceOrdersV1RespItem) SetStatus(v string)

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

func (*GetCmForceOrdersV1RespItem) SetSymbol

func (o *GetCmForceOrdersV1RespItem) SetSymbol(v string)

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

func (*GetCmForceOrdersV1RespItem) SetTime

func (o *GetCmForceOrdersV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetCmForceOrdersV1RespItem) SetTimeInForce

func (o *GetCmForceOrdersV1RespItem) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetCmForceOrdersV1RespItem) SetType

func (o *GetCmForceOrdersV1RespItem) SetType(v string)

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

func (*GetCmForceOrdersV1RespItem) SetUpdateTime

func (o *GetCmForceOrdersV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetCmForceOrdersV1RespItem) ToMap

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

type GetCmIncomeV1RespItem

type GetCmIncomeV1RespItem struct {
	Asset      *string `json:"asset,omitempty"`
	Income     *string `json:"income,omitempty"`
	IncomeType *string `json:"incomeType,omitempty"`
	Info       *string `json:"info,omitempty"`
	Symbol     *string `json:"symbol,omitempty"`
	Time       *int64  `json:"time,omitempty"`
	TradeId    *string `json:"tradeId,omitempty"`
	TranId     *string `json:"tranId,omitempty"`
}

GetCmIncomeV1RespItem struct for GetCmIncomeV1RespItem

func NewGetCmIncomeV1RespItem

func NewGetCmIncomeV1RespItem() *GetCmIncomeV1RespItem

NewGetCmIncomeV1RespItem instantiates a new GetCmIncomeV1RespItem 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 NewGetCmIncomeV1RespItemWithDefaults

func NewGetCmIncomeV1RespItemWithDefaults() *GetCmIncomeV1RespItem

NewGetCmIncomeV1RespItemWithDefaults instantiates a new GetCmIncomeV1RespItem 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 (*GetCmIncomeV1RespItem) GetAsset

func (o *GetCmIncomeV1RespItem) GetAsset() string

GetAsset returns the Asset field value if set, zero value otherwise.

func (*GetCmIncomeV1RespItem) GetAssetOk

func (o *GetCmIncomeV1RespItem) GetAssetOk() (*string, bool)

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

func (*GetCmIncomeV1RespItem) GetIncome

func (o *GetCmIncomeV1RespItem) GetIncome() string

GetIncome returns the Income field value if set, zero value otherwise.

func (*GetCmIncomeV1RespItem) GetIncomeOk

func (o *GetCmIncomeV1RespItem) GetIncomeOk() (*string, bool)

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

func (*GetCmIncomeV1RespItem) GetIncomeType

func (o *GetCmIncomeV1RespItem) GetIncomeType() string

GetIncomeType returns the IncomeType field value if set, zero value otherwise.

func (*GetCmIncomeV1RespItem) GetIncomeTypeOk

func (o *GetCmIncomeV1RespItem) GetIncomeTypeOk() (*string, bool)

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

func (*GetCmIncomeV1RespItem) GetInfo

func (o *GetCmIncomeV1RespItem) GetInfo() string

GetInfo returns the Info field value if set, zero value otherwise.

func (*GetCmIncomeV1RespItem) GetInfoOk

func (o *GetCmIncomeV1RespItem) GetInfoOk() (*string, bool)

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

func (*GetCmIncomeV1RespItem) GetSymbol

func (o *GetCmIncomeV1RespItem) GetSymbol() string

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

func (*GetCmIncomeV1RespItem) GetSymbolOk

func (o *GetCmIncomeV1RespItem) 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 (*GetCmIncomeV1RespItem) GetTime

func (o *GetCmIncomeV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetCmIncomeV1RespItem) GetTimeOk

func (o *GetCmIncomeV1RespItem) GetTimeOk() (*int64, bool)

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

func (*GetCmIncomeV1RespItem) GetTradeId

func (o *GetCmIncomeV1RespItem) GetTradeId() string

GetTradeId returns the TradeId field value if set, zero value otherwise.

func (*GetCmIncomeV1RespItem) GetTradeIdOk

func (o *GetCmIncomeV1RespItem) GetTradeIdOk() (*string, bool)

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

func (*GetCmIncomeV1RespItem) GetTranId

func (o *GetCmIncomeV1RespItem) GetTranId() string

GetTranId returns the TranId field value if set, zero value otherwise.

func (*GetCmIncomeV1RespItem) GetTranIdOk

func (o *GetCmIncomeV1RespItem) GetTranIdOk() (*string, bool)

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

func (*GetCmIncomeV1RespItem) HasAsset

func (o *GetCmIncomeV1RespItem) HasAsset() bool

HasAsset returns a boolean if a field has been set.

func (*GetCmIncomeV1RespItem) HasIncome

func (o *GetCmIncomeV1RespItem) HasIncome() bool

HasIncome returns a boolean if a field has been set.

func (*GetCmIncomeV1RespItem) HasIncomeType

func (o *GetCmIncomeV1RespItem) HasIncomeType() bool

HasIncomeType returns a boolean if a field has been set.

func (*GetCmIncomeV1RespItem) HasInfo

func (o *GetCmIncomeV1RespItem) HasInfo() bool

HasInfo returns a boolean if a field has been set.

func (*GetCmIncomeV1RespItem) HasSymbol

func (o *GetCmIncomeV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetCmIncomeV1RespItem) HasTime

func (o *GetCmIncomeV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetCmIncomeV1RespItem) HasTradeId

func (o *GetCmIncomeV1RespItem) HasTradeId() bool

HasTradeId returns a boolean if a field has been set.

func (*GetCmIncomeV1RespItem) HasTranId

func (o *GetCmIncomeV1RespItem) HasTranId() bool

HasTranId returns a boolean if a field has been set.

func (GetCmIncomeV1RespItem) MarshalJSON

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

func (*GetCmIncomeV1RespItem) SetAsset

func (o *GetCmIncomeV1RespItem) SetAsset(v string)

SetAsset gets a reference to the given string and assigns it to the Asset field.

func (*GetCmIncomeV1RespItem) SetIncome

func (o *GetCmIncomeV1RespItem) SetIncome(v string)

SetIncome gets a reference to the given string and assigns it to the Income field.

func (*GetCmIncomeV1RespItem) SetIncomeType

func (o *GetCmIncomeV1RespItem) SetIncomeType(v string)

SetIncomeType gets a reference to the given string and assigns it to the IncomeType field.

func (*GetCmIncomeV1RespItem) SetInfo

func (o *GetCmIncomeV1RespItem) SetInfo(v string)

SetInfo gets a reference to the given string and assigns it to the Info field.

func (*GetCmIncomeV1RespItem) SetSymbol

func (o *GetCmIncomeV1RespItem) SetSymbol(v string)

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

func (*GetCmIncomeV1RespItem) SetTime

func (o *GetCmIncomeV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetCmIncomeV1RespItem) SetTradeId

func (o *GetCmIncomeV1RespItem) SetTradeId(v string)

SetTradeId gets a reference to the given string and assigns it to the TradeId field.

func (*GetCmIncomeV1RespItem) SetTranId

func (o *GetCmIncomeV1RespItem) SetTranId(v string)

SetTranId gets a reference to the given string and assigns it to the TranId field.

func (GetCmIncomeV1RespItem) ToMap

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

type GetCmLeverageBracketV1RespItem

type GetCmLeverageBracketV1RespItem struct {
	Brackets []GetCmLeverageBracketV1RespItemBracketsInner `json:"brackets,omitempty"`
	Symbol   *string                                       `json:"symbol,omitempty"`
}

GetCmLeverageBracketV1RespItem struct for GetCmLeverageBracketV1RespItem

func NewGetCmLeverageBracketV1RespItem

func NewGetCmLeverageBracketV1RespItem() *GetCmLeverageBracketV1RespItem

NewGetCmLeverageBracketV1RespItem instantiates a new GetCmLeverageBracketV1RespItem 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 NewGetCmLeverageBracketV1RespItemWithDefaults

func NewGetCmLeverageBracketV1RespItemWithDefaults() *GetCmLeverageBracketV1RespItem

NewGetCmLeverageBracketV1RespItemWithDefaults instantiates a new GetCmLeverageBracketV1RespItem 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 (*GetCmLeverageBracketV1RespItem) GetBrackets

GetBrackets returns the Brackets field value if set, zero value otherwise.

func (*GetCmLeverageBracketV1RespItem) GetBracketsOk

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

func (*GetCmLeverageBracketV1RespItem) GetSymbol

func (o *GetCmLeverageBracketV1RespItem) GetSymbol() string

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

func (*GetCmLeverageBracketV1RespItem) GetSymbolOk

func (o *GetCmLeverageBracketV1RespItem) 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 (*GetCmLeverageBracketV1RespItem) HasBrackets

func (o *GetCmLeverageBracketV1RespItem) HasBrackets() bool

HasBrackets returns a boolean if a field has been set.

func (*GetCmLeverageBracketV1RespItem) HasSymbol

func (o *GetCmLeverageBracketV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (GetCmLeverageBracketV1RespItem) MarshalJSON

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

func (*GetCmLeverageBracketV1RespItem) SetBrackets

SetBrackets gets a reference to the given []GetCmLeverageBracketV1RespItemBracketsInner and assigns it to the Brackets field.

func (*GetCmLeverageBracketV1RespItem) SetSymbol

func (o *GetCmLeverageBracketV1RespItem) SetSymbol(v string)

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

func (GetCmLeverageBracketV1RespItem) ToMap

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

type GetCmLeverageBracketV1RespItemBracketsInner

type GetCmLeverageBracketV1RespItemBracketsInner struct {
	Bracket          *int32   `json:"bracket,omitempty"`
	Cum              *int32   `json:"cum,omitempty"`
	InitialLeverage  *int32   `json:"initialLeverage,omitempty"`
	MaintMarginRatio *float32 `json:"maintMarginRatio,omitempty"`
	QtyCap           *int32   `json:"qtyCap,omitempty"`
	QtyFloor         *int32   `json:"qtyFloor,omitempty"`
}

GetCmLeverageBracketV1RespItemBracketsInner struct for GetCmLeverageBracketV1RespItemBracketsInner

func NewGetCmLeverageBracketV1RespItemBracketsInner

func NewGetCmLeverageBracketV1RespItemBracketsInner() *GetCmLeverageBracketV1RespItemBracketsInner

NewGetCmLeverageBracketV1RespItemBracketsInner instantiates a new GetCmLeverageBracketV1RespItemBracketsInner 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 NewGetCmLeverageBracketV1RespItemBracketsInnerWithDefaults

func NewGetCmLeverageBracketV1RespItemBracketsInnerWithDefaults() *GetCmLeverageBracketV1RespItemBracketsInner

NewGetCmLeverageBracketV1RespItemBracketsInnerWithDefaults instantiates a new GetCmLeverageBracketV1RespItemBracketsInner 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 (*GetCmLeverageBracketV1RespItemBracketsInner) GetBracket

GetBracket returns the Bracket field value if set, zero value otherwise.

func (*GetCmLeverageBracketV1RespItemBracketsInner) GetBracketOk

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

func (*GetCmLeverageBracketV1RespItemBracketsInner) GetCum

GetCum returns the Cum field value if set, zero value otherwise.

func (*GetCmLeverageBracketV1RespItemBracketsInner) GetCumOk

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

func (*GetCmLeverageBracketV1RespItemBracketsInner) GetInitialLeverage

func (o *GetCmLeverageBracketV1RespItemBracketsInner) GetInitialLeverage() int32

GetInitialLeverage returns the InitialLeverage field value if set, zero value otherwise.

func (*GetCmLeverageBracketV1RespItemBracketsInner) GetInitialLeverageOk

func (o *GetCmLeverageBracketV1RespItemBracketsInner) GetInitialLeverageOk() (*int32, bool)

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

func (*GetCmLeverageBracketV1RespItemBracketsInner) GetMaintMarginRatio

func (o *GetCmLeverageBracketV1RespItemBracketsInner) GetMaintMarginRatio() float32

GetMaintMarginRatio returns the MaintMarginRatio field value if set, zero value otherwise.

func (*GetCmLeverageBracketV1RespItemBracketsInner) GetMaintMarginRatioOk

func (o *GetCmLeverageBracketV1RespItemBracketsInner) GetMaintMarginRatioOk() (*float32, bool)

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

func (*GetCmLeverageBracketV1RespItemBracketsInner) GetQtyCap

GetQtyCap returns the QtyCap field value if set, zero value otherwise.

func (*GetCmLeverageBracketV1RespItemBracketsInner) GetQtyCapOk

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

func (*GetCmLeverageBracketV1RespItemBracketsInner) GetQtyFloor

GetQtyFloor returns the QtyFloor field value if set, zero value otherwise.

func (*GetCmLeverageBracketV1RespItemBracketsInner) GetQtyFloorOk

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

func (*GetCmLeverageBracketV1RespItemBracketsInner) HasBracket

HasBracket returns a boolean if a field has been set.

func (*GetCmLeverageBracketV1RespItemBracketsInner) HasCum

HasCum returns a boolean if a field has been set.

func (*GetCmLeverageBracketV1RespItemBracketsInner) HasInitialLeverage

func (o *GetCmLeverageBracketV1RespItemBracketsInner) HasInitialLeverage() bool

HasInitialLeverage returns a boolean if a field has been set.

func (*GetCmLeverageBracketV1RespItemBracketsInner) HasMaintMarginRatio

func (o *GetCmLeverageBracketV1RespItemBracketsInner) HasMaintMarginRatio() bool

HasMaintMarginRatio returns a boolean if a field has been set.

func (*GetCmLeverageBracketV1RespItemBracketsInner) HasQtyCap

HasQtyCap returns a boolean if a field has been set.

func (*GetCmLeverageBracketV1RespItemBracketsInner) HasQtyFloor

HasQtyFloor returns a boolean if a field has been set.

func (GetCmLeverageBracketV1RespItemBracketsInner) MarshalJSON

func (*GetCmLeverageBracketV1RespItemBracketsInner) SetBracket

SetBracket gets a reference to the given int32 and assigns it to the Bracket field.

func (*GetCmLeverageBracketV1RespItemBracketsInner) SetCum

SetCum gets a reference to the given int32 and assigns it to the Cum field.

func (*GetCmLeverageBracketV1RespItemBracketsInner) SetInitialLeverage

func (o *GetCmLeverageBracketV1RespItemBracketsInner) SetInitialLeverage(v int32)

SetInitialLeverage gets a reference to the given int32 and assigns it to the InitialLeverage field.

func (*GetCmLeverageBracketV1RespItemBracketsInner) SetMaintMarginRatio

func (o *GetCmLeverageBracketV1RespItemBracketsInner) SetMaintMarginRatio(v float32)

SetMaintMarginRatio gets a reference to the given float32 and assigns it to the MaintMarginRatio field.

func (*GetCmLeverageBracketV1RespItemBracketsInner) SetQtyCap

SetQtyCap gets a reference to the given int32 and assigns it to the QtyCap field.

func (*GetCmLeverageBracketV1RespItemBracketsInner) SetQtyFloor

SetQtyFloor gets a reference to the given int32 and assigns it to the QtyFloor field.

func (GetCmLeverageBracketV1RespItemBracketsInner) ToMap

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

type GetCmOpenOrderV1Resp

type GetCmOpenOrderV1Resp struct {
	AvgPrice      *string `json:"avgPrice,omitempty"`
	ClientOrderId *string `json:"clientOrderId,omitempty"`
	CumBase       *string `json:"cumBase,omitempty"`
	ExecutedQty   *string `json:"executedQty,omitempty"`
	OrderId       *int64  `json:"orderId,omitempty"`
	OrigQty       *string `json:"origQty,omitempty"`
	OrigType      *string `json:"origType,omitempty"`
	Pair          *string `json:"pair,omitempty"`
	PositionSide  *string `json:"positionSide,omitempty"`
	Price         *string `json:"price,omitempty"`
	ReduceOnly    *bool   `json:"reduceOnly,omitempty"`
	Side          *string `json:"side,omitempty"`
	Status        *string `json:"status,omitempty"`
	Symbol        *string `json:"symbol,omitempty"`
	Time          *int64  `json:"time,omitempty"`
	TimeInForce   *string `json:"timeInForce,omitempty"`
	Type          *string `json:"type,omitempty"`
	UpdateTime    *int64  `json:"updateTime,omitempty"`
}

GetCmOpenOrderV1Resp struct for GetCmOpenOrderV1Resp

func NewGetCmOpenOrderV1Resp

func NewGetCmOpenOrderV1Resp() *GetCmOpenOrderV1Resp

NewGetCmOpenOrderV1Resp instantiates a new GetCmOpenOrderV1Resp 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 NewGetCmOpenOrderV1RespWithDefaults

func NewGetCmOpenOrderV1RespWithDefaults() *GetCmOpenOrderV1Resp

NewGetCmOpenOrderV1RespWithDefaults instantiates a new GetCmOpenOrderV1Resp 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 (*GetCmOpenOrderV1Resp) GetAvgPrice

func (o *GetCmOpenOrderV1Resp) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetAvgPriceOk

func (o *GetCmOpenOrderV1Resp) GetAvgPriceOk() (*string, bool)

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

func (*GetCmOpenOrderV1Resp) GetClientOrderId

func (o *GetCmOpenOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetClientOrderIdOk

func (o *GetCmOpenOrderV1Resp) GetClientOrderIdOk() (*string, bool)

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

func (*GetCmOpenOrderV1Resp) GetCumBase

func (o *GetCmOpenOrderV1Resp) GetCumBase() string

GetCumBase returns the CumBase field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetCumBaseOk

func (o *GetCmOpenOrderV1Resp) GetCumBaseOk() (*string, bool)

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

func (*GetCmOpenOrderV1Resp) GetExecutedQty

func (o *GetCmOpenOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetExecutedQtyOk

func (o *GetCmOpenOrderV1Resp) GetExecutedQtyOk() (*string, bool)

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

func (*GetCmOpenOrderV1Resp) GetOrderId

func (o *GetCmOpenOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetOrderIdOk

func (o *GetCmOpenOrderV1Resp) GetOrderIdOk() (*int64, bool)

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

func (*GetCmOpenOrderV1Resp) GetOrigQty

func (o *GetCmOpenOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetOrigQtyOk

func (o *GetCmOpenOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*GetCmOpenOrderV1Resp) GetOrigType

func (o *GetCmOpenOrderV1Resp) GetOrigType() string

GetOrigType returns the OrigType field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetOrigTypeOk

func (o *GetCmOpenOrderV1Resp) GetOrigTypeOk() (*string, bool)

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

func (*GetCmOpenOrderV1Resp) GetPair

func (o *GetCmOpenOrderV1Resp) GetPair() string

GetPair returns the Pair field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetPairOk

func (o *GetCmOpenOrderV1Resp) GetPairOk() (*string, bool)

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

func (*GetCmOpenOrderV1Resp) GetPositionSide

func (o *GetCmOpenOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetPositionSideOk

func (o *GetCmOpenOrderV1Resp) GetPositionSideOk() (*string, bool)

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

func (*GetCmOpenOrderV1Resp) GetPrice

func (o *GetCmOpenOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetPriceOk

func (o *GetCmOpenOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*GetCmOpenOrderV1Resp) GetReduceOnly

func (o *GetCmOpenOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetReduceOnlyOk

func (o *GetCmOpenOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

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

func (*GetCmOpenOrderV1Resp) GetSide

func (o *GetCmOpenOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetSideOk

func (o *GetCmOpenOrderV1Resp) GetSideOk() (*string, bool)

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

func (*GetCmOpenOrderV1Resp) GetStatus

func (o *GetCmOpenOrderV1Resp) GetStatus() string

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

func (*GetCmOpenOrderV1Resp) GetStatusOk

func (o *GetCmOpenOrderV1Resp) 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 (*GetCmOpenOrderV1Resp) GetSymbol

func (o *GetCmOpenOrderV1Resp) GetSymbol() string

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

func (*GetCmOpenOrderV1Resp) GetSymbolOk

func (o *GetCmOpenOrderV1Resp) 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 (*GetCmOpenOrderV1Resp) GetTime

func (o *GetCmOpenOrderV1Resp) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetTimeInForce

func (o *GetCmOpenOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetTimeInForceOk

func (o *GetCmOpenOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*GetCmOpenOrderV1Resp) GetTimeOk

func (o *GetCmOpenOrderV1Resp) GetTimeOk() (*int64, bool)

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

func (*GetCmOpenOrderV1Resp) GetType

func (o *GetCmOpenOrderV1Resp) GetType() string

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

func (*GetCmOpenOrderV1Resp) GetTypeOk

func (o *GetCmOpenOrderV1Resp) 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 (*GetCmOpenOrderV1Resp) GetUpdateTime

func (o *GetCmOpenOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetCmOpenOrderV1Resp) GetUpdateTimeOk

func (o *GetCmOpenOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*GetCmOpenOrderV1Resp) HasAvgPrice

func (o *GetCmOpenOrderV1Resp) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasClientOrderId

func (o *GetCmOpenOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasCumBase

func (o *GetCmOpenOrderV1Resp) HasCumBase() bool

HasCumBase returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasExecutedQty

func (o *GetCmOpenOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasOrderId

func (o *GetCmOpenOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasOrigQty

func (o *GetCmOpenOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasOrigType

func (o *GetCmOpenOrderV1Resp) HasOrigType() bool

HasOrigType returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasPair

func (o *GetCmOpenOrderV1Resp) HasPair() bool

HasPair returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasPositionSide

func (o *GetCmOpenOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasPrice

func (o *GetCmOpenOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasReduceOnly

func (o *GetCmOpenOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasSide

func (o *GetCmOpenOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasStatus

func (o *GetCmOpenOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasSymbol

func (o *GetCmOpenOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasTime

func (o *GetCmOpenOrderV1Resp) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasTimeInForce

func (o *GetCmOpenOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasType

func (o *GetCmOpenOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetCmOpenOrderV1Resp) HasUpdateTime

func (o *GetCmOpenOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetCmOpenOrderV1Resp) MarshalJSON

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

func (*GetCmOpenOrderV1Resp) SetAvgPrice

func (o *GetCmOpenOrderV1Resp) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*GetCmOpenOrderV1Resp) SetClientOrderId

func (o *GetCmOpenOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetCmOpenOrderV1Resp) SetCumBase

func (o *GetCmOpenOrderV1Resp) SetCumBase(v string)

SetCumBase gets a reference to the given string and assigns it to the CumBase field.

func (*GetCmOpenOrderV1Resp) SetExecutedQty

func (o *GetCmOpenOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetCmOpenOrderV1Resp) SetOrderId

func (o *GetCmOpenOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetCmOpenOrderV1Resp) SetOrigQty

func (o *GetCmOpenOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetCmOpenOrderV1Resp) SetOrigType

func (o *GetCmOpenOrderV1Resp) SetOrigType(v string)

SetOrigType gets a reference to the given string and assigns it to the OrigType field.

func (*GetCmOpenOrderV1Resp) SetPair

func (o *GetCmOpenOrderV1Resp) SetPair(v string)

SetPair gets a reference to the given string and assigns it to the Pair field.

func (*GetCmOpenOrderV1Resp) SetPositionSide

func (o *GetCmOpenOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetCmOpenOrderV1Resp) SetPrice

func (o *GetCmOpenOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetCmOpenOrderV1Resp) SetReduceOnly

func (o *GetCmOpenOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetCmOpenOrderV1Resp) SetSide

func (o *GetCmOpenOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetCmOpenOrderV1Resp) SetStatus

func (o *GetCmOpenOrderV1Resp) SetStatus(v string)

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

func (*GetCmOpenOrderV1Resp) SetSymbol

func (o *GetCmOpenOrderV1Resp) SetSymbol(v string)

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

func (*GetCmOpenOrderV1Resp) SetTime

func (o *GetCmOpenOrderV1Resp) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetCmOpenOrderV1Resp) SetTimeInForce

func (o *GetCmOpenOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetCmOpenOrderV1Resp) SetType

func (o *GetCmOpenOrderV1Resp) SetType(v string)

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

func (*GetCmOpenOrderV1Resp) SetUpdateTime

func (o *GetCmOpenOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetCmOpenOrderV1Resp) ToMap

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

type GetCmOpenOrdersV1RespItem

type GetCmOpenOrdersV1RespItem struct {
	AvgPrice      *string `json:"avgPrice,omitempty"`
	ClientOrderId *string `json:"clientOrderId,omitempty"`
	CumBase       *string `json:"cumBase,omitempty"`
	ExecutedQty   *string `json:"executedQty,omitempty"`
	OrderId       *int64  `json:"orderId,omitempty"`
	OrigQty       *string `json:"origQty,omitempty"`
	OrigType      *string `json:"origType,omitempty"`
	Pair          *string `json:"pair,omitempty"`
	PositionSide  *string `json:"positionSide,omitempty"`
	Price         *string `json:"price,omitempty"`
	ReduceOnly    *bool   `json:"reduceOnly,omitempty"`
	Side          *string `json:"side,omitempty"`
	Status        *string `json:"status,omitempty"`
	Symbol        *string `json:"symbol,omitempty"`
	Time          *int64  `json:"time,omitempty"`
	TimeInForce   *string `json:"timeInForce,omitempty"`
	Type          *string `json:"type,omitempty"`
	UpdateTime    *int64  `json:"updateTime,omitempty"`
}

GetCmOpenOrdersV1RespItem struct for GetCmOpenOrdersV1RespItem

func NewGetCmOpenOrdersV1RespItem

func NewGetCmOpenOrdersV1RespItem() *GetCmOpenOrdersV1RespItem

NewGetCmOpenOrdersV1RespItem instantiates a new GetCmOpenOrdersV1RespItem 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 NewGetCmOpenOrdersV1RespItemWithDefaults

func NewGetCmOpenOrdersV1RespItemWithDefaults() *GetCmOpenOrdersV1RespItem

NewGetCmOpenOrdersV1RespItemWithDefaults instantiates a new GetCmOpenOrdersV1RespItem 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 (*GetCmOpenOrdersV1RespItem) GetAvgPrice

func (o *GetCmOpenOrdersV1RespItem) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetAvgPriceOk

func (o *GetCmOpenOrdersV1RespItem) GetAvgPriceOk() (*string, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetClientOrderId

func (o *GetCmOpenOrdersV1RespItem) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetClientOrderIdOk

func (o *GetCmOpenOrdersV1RespItem) GetClientOrderIdOk() (*string, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetCumBase

func (o *GetCmOpenOrdersV1RespItem) GetCumBase() string

GetCumBase returns the CumBase field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetCumBaseOk

func (o *GetCmOpenOrdersV1RespItem) GetCumBaseOk() (*string, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetExecutedQty

func (o *GetCmOpenOrdersV1RespItem) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetExecutedQtyOk

func (o *GetCmOpenOrdersV1RespItem) GetExecutedQtyOk() (*string, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetOrderId

func (o *GetCmOpenOrdersV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetOrderIdOk

func (o *GetCmOpenOrdersV1RespItem) GetOrderIdOk() (*int64, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetOrigQty

func (o *GetCmOpenOrdersV1RespItem) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetOrigQtyOk

func (o *GetCmOpenOrdersV1RespItem) GetOrigQtyOk() (*string, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetOrigType

func (o *GetCmOpenOrdersV1RespItem) GetOrigType() string

GetOrigType returns the OrigType field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetOrigTypeOk

func (o *GetCmOpenOrdersV1RespItem) GetOrigTypeOk() (*string, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetPair

func (o *GetCmOpenOrdersV1RespItem) GetPair() string

GetPair returns the Pair field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetPairOk

func (o *GetCmOpenOrdersV1RespItem) GetPairOk() (*string, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetPositionSide

func (o *GetCmOpenOrdersV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetPositionSideOk

func (o *GetCmOpenOrdersV1RespItem) GetPositionSideOk() (*string, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetPrice

func (o *GetCmOpenOrdersV1RespItem) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetPriceOk

func (o *GetCmOpenOrdersV1RespItem) GetPriceOk() (*string, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetReduceOnly

func (o *GetCmOpenOrdersV1RespItem) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetReduceOnlyOk

func (o *GetCmOpenOrdersV1RespItem) GetReduceOnlyOk() (*bool, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetSide

func (o *GetCmOpenOrdersV1RespItem) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetSideOk

func (o *GetCmOpenOrdersV1RespItem) GetSideOk() (*string, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetStatus

func (o *GetCmOpenOrdersV1RespItem) GetStatus() string

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

func (*GetCmOpenOrdersV1RespItem) GetStatusOk

func (o *GetCmOpenOrdersV1RespItem) 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 (*GetCmOpenOrdersV1RespItem) GetSymbol

func (o *GetCmOpenOrdersV1RespItem) GetSymbol() string

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

func (*GetCmOpenOrdersV1RespItem) GetSymbolOk

func (o *GetCmOpenOrdersV1RespItem) 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 (*GetCmOpenOrdersV1RespItem) GetTime

func (o *GetCmOpenOrdersV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetTimeInForce

func (o *GetCmOpenOrdersV1RespItem) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetTimeInForceOk

func (o *GetCmOpenOrdersV1RespItem) GetTimeInForceOk() (*string, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetTimeOk

func (o *GetCmOpenOrdersV1RespItem) GetTimeOk() (*int64, bool)

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

func (*GetCmOpenOrdersV1RespItem) GetType

func (o *GetCmOpenOrdersV1RespItem) GetType() string

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

func (*GetCmOpenOrdersV1RespItem) GetTypeOk

func (o *GetCmOpenOrdersV1RespItem) 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 (*GetCmOpenOrdersV1RespItem) GetUpdateTime

func (o *GetCmOpenOrdersV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetCmOpenOrdersV1RespItem) GetUpdateTimeOk

func (o *GetCmOpenOrdersV1RespItem) GetUpdateTimeOk() (*int64, bool)

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

func (*GetCmOpenOrdersV1RespItem) HasAvgPrice

func (o *GetCmOpenOrdersV1RespItem) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasClientOrderId

func (o *GetCmOpenOrdersV1RespItem) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasCumBase

func (o *GetCmOpenOrdersV1RespItem) HasCumBase() bool

HasCumBase returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasExecutedQty

func (o *GetCmOpenOrdersV1RespItem) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasOrderId

func (o *GetCmOpenOrdersV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasOrigQty

func (o *GetCmOpenOrdersV1RespItem) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasOrigType

func (o *GetCmOpenOrdersV1RespItem) HasOrigType() bool

HasOrigType returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasPair

func (o *GetCmOpenOrdersV1RespItem) HasPair() bool

HasPair returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasPositionSide

func (o *GetCmOpenOrdersV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasPrice

func (o *GetCmOpenOrdersV1RespItem) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasReduceOnly

func (o *GetCmOpenOrdersV1RespItem) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasSide

func (o *GetCmOpenOrdersV1RespItem) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasStatus

func (o *GetCmOpenOrdersV1RespItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasSymbol

func (o *GetCmOpenOrdersV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasTime

func (o *GetCmOpenOrdersV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasTimeInForce

func (o *GetCmOpenOrdersV1RespItem) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasType

func (o *GetCmOpenOrdersV1RespItem) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetCmOpenOrdersV1RespItem) HasUpdateTime

func (o *GetCmOpenOrdersV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetCmOpenOrdersV1RespItem) MarshalJSON

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

func (*GetCmOpenOrdersV1RespItem) SetAvgPrice

func (o *GetCmOpenOrdersV1RespItem) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*GetCmOpenOrdersV1RespItem) SetClientOrderId

func (o *GetCmOpenOrdersV1RespItem) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetCmOpenOrdersV1RespItem) SetCumBase

func (o *GetCmOpenOrdersV1RespItem) SetCumBase(v string)

SetCumBase gets a reference to the given string and assigns it to the CumBase field.

func (*GetCmOpenOrdersV1RespItem) SetExecutedQty

func (o *GetCmOpenOrdersV1RespItem) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetCmOpenOrdersV1RespItem) SetOrderId

func (o *GetCmOpenOrdersV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetCmOpenOrdersV1RespItem) SetOrigQty

func (o *GetCmOpenOrdersV1RespItem) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetCmOpenOrdersV1RespItem) SetOrigType

func (o *GetCmOpenOrdersV1RespItem) SetOrigType(v string)

SetOrigType gets a reference to the given string and assigns it to the OrigType field.

func (*GetCmOpenOrdersV1RespItem) SetPair

func (o *GetCmOpenOrdersV1RespItem) SetPair(v string)

SetPair gets a reference to the given string and assigns it to the Pair field.

func (*GetCmOpenOrdersV1RespItem) SetPositionSide

func (o *GetCmOpenOrdersV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetCmOpenOrdersV1RespItem) SetPrice

func (o *GetCmOpenOrdersV1RespItem) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetCmOpenOrdersV1RespItem) SetReduceOnly

func (o *GetCmOpenOrdersV1RespItem) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetCmOpenOrdersV1RespItem) SetSide

func (o *GetCmOpenOrdersV1RespItem) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetCmOpenOrdersV1RespItem) SetStatus

func (o *GetCmOpenOrdersV1RespItem) SetStatus(v string)

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

func (*GetCmOpenOrdersV1RespItem) SetSymbol

func (o *GetCmOpenOrdersV1RespItem) SetSymbol(v string)

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

func (*GetCmOpenOrdersV1RespItem) SetTime

func (o *GetCmOpenOrdersV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetCmOpenOrdersV1RespItem) SetTimeInForce

func (o *GetCmOpenOrdersV1RespItem) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetCmOpenOrdersV1RespItem) SetType

func (o *GetCmOpenOrdersV1RespItem) SetType(v string)

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

func (*GetCmOpenOrdersV1RespItem) SetUpdateTime

func (o *GetCmOpenOrdersV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetCmOpenOrdersV1RespItem) ToMap

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

type GetCmOrderAmendmentV1RespItem

type GetCmOrderAmendmentV1RespItem struct {
	Amendment     *GetCmOrderAmendmentV1RespItemAmendment `json:"amendment,omitempty"`
	AmendmentId   *int64                                  `json:"amendmentId,omitempty"`
	ClientOrderId *string                                 `json:"clientOrderId,omitempty"`
	OrderId       *int64                                  `json:"orderId,omitempty"`
	Pair          *string                                 `json:"pair,omitempty"`
	Symbol        *string                                 `json:"symbol,omitempty"`
	Time          *int64                                  `json:"time,omitempty"`
}

GetCmOrderAmendmentV1RespItem struct for GetCmOrderAmendmentV1RespItem

func NewGetCmOrderAmendmentV1RespItem

func NewGetCmOrderAmendmentV1RespItem() *GetCmOrderAmendmentV1RespItem

NewGetCmOrderAmendmentV1RespItem instantiates a new GetCmOrderAmendmentV1RespItem 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 NewGetCmOrderAmendmentV1RespItemWithDefaults

func NewGetCmOrderAmendmentV1RespItemWithDefaults() *GetCmOrderAmendmentV1RespItem

NewGetCmOrderAmendmentV1RespItemWithDefaults instantiates a new GetCmOrderAmendmentV1RespItem 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 (*GetCmOrderAmendmentV1RespItem) GetAmendment

GetAmendment returns the Amendment field value if set, zero value otherwise.

func (*GetCmOrderAmendmentV1RespItem) GetAmendmentId

func (o *GetCmOrderAmendmentV1RespItem) GetAmendmentId() int64

GetAmendmentId returns the AmendmentId field value if set, zero value otherwise.

func (*GetCmOrderAmendmentV1RespItem) GetAmendmentIdOk

func (o *GetCmOrderAmendmentV1RespItem) GetAmendmentIdOk() (*int64, bool)

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

func (*GetCmOrderAmendmentV1RespItem) GetAmendmentOk

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

func (*GetCmOrderAmendmentV1RespItem) GetClientOrderId

func (o *GetCmOrderAmendmentV1RespItem) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetCmOrderAmendmentV1RespItem) GetClientOrderIdOk

func (o *GetCmOrderAmendmentV1RespItem) GetClientOrderIdOk() (*string, bool)

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

func (*GetCmOrderAmendmentV1RespItem) GetOrderId

func (o *GetCmOrderAmendmentV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetCmOrderAmendmentV1RespItem) GetOrderIdOk

func (o *GetCmOrderAmendmentV1RespItem) GetOrderIdOk() (*int64, bool)

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

func (*GetCmOrderAmendmentV1RespItem) GetPair

GetPair returns the Pair field value if set, zero value otherwise.

func (*GetCmOrderAmendmentV1RespItem) GetPairOk

func (o *GetCmOrderAmendmentV1RespItem) GetPairOk() (*string, bool)

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

func (*GetCmOrderAmendmentV1RespItem) GetSymbol

func (o *GetCmOrderAmendmentV1RespItem) GetSymbol() string

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

func (*GetCmOrderAmendmentV1RespItem) GetSymbolOk

func (o *GetCmOrderAmendmentV1RespItem) 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 (*GetCmOrderAmendmentV1RespItem) GetTime

func (o *GetCmOrderAmendmentV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetCmOrderAmendmentV1RespItem) GetTimeOk

func (o *GetCmOrderAmendmentV1RespItem) GetTimeOk() (*int64, bool)

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

func (*GetCmOrderAmendmentV1RespItem) HasAmendment

func (o *GetCmOrderAmendmentV1RespItem) HasAmendment() bool

HasAmendment returns a boolean if a field has been set.

func (*GetCmOrderAmendmentV1RespItem) HasAmendmentId

func (o *GetCmOrderAmendmentV1RespItem) HasAmendmentId() bool

HasAmendmentId returns a boolean if a field has been set.

func (*GetCmOrderAmendmentV1RespItem) HasClientOrderId

func (o *GetCmOrderAmendmentV1RespItem) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetCmOrderAmendmentV1RespItem) HasOrderId

func (o *GetCmOrderAmendmentV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetCmOrderAmendmentV1RespItem) HasPair

func (o *GetCmOrderAmendmentV1RespItem) HasPair() bool

HasPair returns a boolean if a field has been set.

func (*GetCmOrderAmendmentV1RespItem) HasSymbol

func (o *GetCmOrderAmendmentV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetCmOrderAmendmentV1RespItem) HasTime

func (o *GetCmOrderAmendmentV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (GetCmOrderAmendmentV1RespItem) MarshalJSON

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

func (*GetCmOrderAmendmentV1RespItem) SetAmendment

SetAmendment gets a reference to the given GetCmOrderAmendmentV1RespItemAmendment and assigns it to the Amendment field.

func (*GetCmOrderAmendmentV1RespItem) SetAmendmentId

func (o *GetCmOrderAmendmentV1RespItem) SetAmendmentId(v int64)

SetAmendmentId gets a reference to the given int64 and assigns it to the AmendmentId field.

func (*GetCmOrderAmendmentV1RespItem) SetClientOrderId

func (o *GetCmOrderAmendmentV1RespItem) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetCmOrderAmendmentV1RespItem) SetOrderId

func (o *GetCmOrderAmendmentV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetCmOrderAmendmentV1RespItem) SetPair

func (o *GetCmOrderAmendmentV1RespItem) SetPair(v string)

SetPair gets a reference to the given string and assigns it to the Pair field.

func (*GetCmOrderAmendmentV1RespItem) SetSymbol

func (o *GetCmOrderAmendmentV1RespItem) SetSymbol(v string)

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

func (*GetCmOrderAmendmentV1RespItem) SetTime

func (o *GetCmOrderAmendmentV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (GetCmOrderAmendmentV1RespItem) ToMap

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

type GetCmOrderAmendmentV1RespItemAmendment

type GetCmOrderAmendmentV1RespItemAmendment struct {
	Count   *int32                                         `json:"count,omitempty"`
	OrigQty *GetCmOrderAmendmentV1RespItemAmendmentOrigQty `json:"origQty,omitempty"`
	Price   *GetCmOrderAmendmentV1RespItemAmendmentOrigQty `json:"price,omitempty"`
}

GetCmOrderAmendmentV1RespItemAmendment struct for GetCmOrderAmendmentV1RespItemAmendment

func NewGetCmOrderAmendmentV1RespItemAmendment

func NewGetCmOrderAmendmentV1RespItemAmendment() *GetCmOrderAmendmentV1RespItemAmendment

NewGetCmOrderAmendmentV1RespItemAmendment instantiates a new GetCmOrderAmendmentV1RespItemAmendment 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 NewGetCmOrderAmendmentV1RespItemAmendmentWithDefaults

func NewGetCmOrderAmendmentV1RespItemAmendmentWithDefaults() *GetCmOrderAmendmentV1RespItemAmendment

NewGetCmOrderAmendmentV1RespItemAmendmentWithDefaults instantiates a new GetCmOrderAmendmentV1RespItemAmendment 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 (*GetCmOrderAmendmentV1RespItemAmendment) GetCount

GetCount returns the Count field value if set, zero value otherwise.

func (*GetCmOrderAmendmentV1RespItemAmendment) GetCountOk

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

func (*GetCmOrderAmendmentV1RespItemAmendment) GetOrigQty

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetCmOrderAmendmentV1RespItemAmendment) GetOrigQtyOk

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

func (*GetCmOrderAmendmentV1RespItemAmendment) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetCmOrderAmendmentV1RespItemAmendment) GetPriceOk

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

func (*GetCmOrderAmendmentV1RespItemAmendment) HasCount

HasCount returns a boolean if a field has been set.

func (*GetCmOrderAmendmentV1RespItemAmendment) HasOrigQty

HasOrigQty returns a boolean if a field has been set.

func (*GetCmOrderAmendmentV1RespItemAmendment) HasPrice

HasPrice returns a boolean if a field has been set.

func (GetCmOrderAmendmentV1RespItemAmendment) MarshalJSON

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

func (*GetCmOrderAmendmentV1RespItemAmendment) SetCount

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (*GetCmOrderAmendmentV1RespItemAmendment) SetOrigQty

SetOrigQty gets a reference to the given GetCmOrderAmendmentV1RespItemAmendmentOrigQty and assigns it to the OrigQty field.

func (*GetCmOrderAmendmentV1RespItemAmendment) SetPrice

SetPrice gets a reference to the given GetCmOrderAmendmentV1RespItemAmendmentOrigQty and assigns it to the Price field.

func (GetCmOrderAmendmentV1RespItemAmendment) ToMap

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

type GetCmOrderAmendmentV1RespItemAmendmentOrigQty

type GetCmOrderAmendmentV1RespItemAmendmentOrigQty struct {
	After  *string `json:"after,omitempty"`
	Before *string `json:"before,omitempty"`
}

GetCmOrderAmendmentV1RespItemAmendmentOrigQty struct for GetCmOrderAmendmentV1RespItemAmendmentOrigQty

func NewGetCmOrderAmendmentV1RespItemAmendmentOrigQty

func NewGetCmOrderAmendmentV1RespItemAmendmentOrigQty() *GetCmOrderAmendmentV1RespItemAmendmentOrigQty

NewGetCmOrderAmendmentV1RespItemAmendmentOrigQty instantiates a new GetCmOrderAmendmentV1RespItemAmendmentOrigQty 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 NewGetCmOrderAmendmentV1RespItemAmendmentOrigQtyWithDefaults

func NewGetCmOrderAmendmentV1RespItemAmendmentOrigQtyWithDefaults() *GetCmOrderAmendmentV1RespItemAmendmentOrigQty

NewGetCmOrderAmendmentV1RespItemAmendmentOrigQtyWithDefaults instantiates a new GetCmOrderAmendmentV1RespItemAmendmentOrigQty 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 (*GetCmOrderAmendmentV1RespItemAmendmentOrigQty) GetAfter

GetAfter returns the After field value if set, zero value otherwise.

func (*GetCmOrderAmendmentV1RespItemAmendmentOrigQty) GetAfterOk

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

func (*GetCmOrderAmendmentV1RespItemAmendmentOrigQty) GetBefore

GetBefore returns the Before field value if set, zero value otherwise.

func (*GetCmOrderAmendmentV1RespItemAmendmentOrigQty) GetBeforeOk

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

func (*GetCmOrderAmendmentV1RespItemAmendmentOrigQty) HasAfter

HasAfter returns a boolean if a field has been set.

func (*GetCmOrderAmendmentV1RespItemAmendmentOrigQty) HasBefore

HasBefore returns a boolean if a field has been set.

func (GetCmOrderAmendmentV1RespItemAmendmentOrigQty) MarshalJSON

func (*GetCmOrderAmendmentV1RespItemAmendmentOrigQty) SetAfter

SetAfter gets a reference to the given string and assigns it to the After field.

func (*GetCmOrderAmendmentV1RespItemAmendmentOrigQty) SetBefore

SetBefore gets a reference to the given string and assigns it to the Before field.

func (GetCmOrderAmendmentV1RespItemAmendmentOrigQty) ToMap

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

type GetCmOrderV1Resp

type GetCmOrderV1Resp struct {
	AvgPrice      *string `json:"avgPrice,omitempty"`
	ClientOrderId *string `json:"clientOrderId,omitempty"`
	CumBase       *string `json:"cumBase,omitempty"`
	ExecutedQty   *string `json:"executedQty,omitempty"`
	OrderId       *int64  `json:"orderId,omitempty"`
	OrigQty       *string `json:"origQty,omitempty"`
	OrigType      *string `json:"origType,omitempty"`
	Pair          *string `json:"pair,omitempty"`
	PositionSide  *string `json:"positionSide,omitempty"`
	Price         *string `json:"price,omitempty"`
	ReduceOnly    *bool   `json:"reduceOnly,omitempty"`
	Side          *string `json:"side,omitempty"`
	Status        *string `json:"status,omitempty"`
	Symbol        *string `json:"symbol,omitempty"`
	Time          *int64  `json:"time,omitempty"`
	TimeInForce   *string `json:"timeInForce,omitempty"`
	Type          *string `json:"type,omitempty"`
	UpdateTime    *int64  `json:"updateTime,omitempty"`
}

GetCmOrderV1Resp struct for GetCmOrderV1Resp

func NewGetCmOrderV1Resp

func NewGetCmOrderV1Resp() *GetCmOrderV1Resp

NewGetCmOrderV1Resp instantiates a new GetCmOrderV1Resp 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 NewGetCmOrderV1RespWithDefaults

func NewGetCmOrderV1RespWithDefaults() *GetCmOrderV1Resp

NewGetCmOrderV1RespWithDefaults instantiates a new GetCmOrderV1Resp 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 (*GetCmOrderV1Resp) GetAvgPrice

func (o *GetCmOrderV1Resp) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetAvgPriceOk

func (o *GetCmOrderV1Resp) GetAvgPriceOk() (*string, bool)

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

func (*GetCmOrderV1Resp) GetClientOrderId

func (o *GetCmOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetClientOrderIdOk

func (o *GetCmOrderV1Resp) GetClientOrderIdOk() (*string, bool)

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

func (*GetCmOrderV1Resp) GetCumBase

func (o *GetCmOrderV1Resp) GetCumBase() string

GetCumBase returns the CumBase field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetCumBaseOk

func (o *GetCmOrderV1Resp) GetCumBaseOk() (*string, bool)

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

func (*GetCmOrderV1Resp) GetExecutedQty

func (o *GetCmOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetExecutedQtyOk

func (o *GetCmOrderV1Resp) GetExecutedQtyOk() (*string, bool)

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

func (*GetCmOrderV1Resp) GetOrderId

func (o *GetCmOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetOrderIdOk

func (o *GetCmOrderV1Resp) GetOrderIdOk() (*int64, bool)

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

func (*GetCmOrderV1Resp) GetOrigQty

func (o *GetCmOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetOrigQtyOk

func (o *GetCmOrderV1Resp) GetOrigQtyOk() (*string, bool)

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

func (*GetCmOrderV1Resp) GetOrigType

func (o *GetCmOrderV1Resp) GetOrigType() string

GetOrigType returns the OrigType field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetOrigTypeOk

func (o *GetCmOrderV1Resp) GetOrigTypeOk() (*string, bool)

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

func (*GetCmOrderV1Resp) GetPair

func (o *GetCmOrderV1Resp) GetPair() string

GetPair returns the Pair field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetPairOk

func (o *GetCmOrderV1Resp) GetPairOk() (*string, bool)

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

func (*GetCmOrderV1Resp) GetPositionSide

func (o *GetCmOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetPositionSideOk

func (o *GetCmOrderV1Resp) GetPositionSideOk() (*string, bool)

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

func (*GetCmOrderV1Resp) GetPrice

func (o *GetCmOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetPriceOk

func (o *GetCmOrderV1Resp) GetPriceOk() (*string, bool)

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

func (*GetCmOrderV1Resp) GetReduceOnly

func (o *GetCmOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetReduceOnlyOk

func (o *GetCmOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

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

func (*GetCmOrderV1Resp) GetSide

func (o *GetCmOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetSideOk

func (o *GetCmOrderV1Resp) GetSideOk() (*string, bool)

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

func (*GetCmOrderV1Resp) GetStatus

func (o *GetCmOrderV1Resp) GetStatus() string

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

func (*GetCmOrderV1Resp) GetStatusOk

func (o *GetCmOrderV1Resp) 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 (*GetCmOrderV1Resp) GetSymbol

func (o *GetCmOrderV1Resp) GetSymbol() string

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

func (*GetCmOrderV1Resp) GetSymbolOk

func (o *GetCmOrderV1Resp) 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 (*GetCmOrderV1Resp) GetTime

func (o *GetCmOrderV1Resp) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetTimeInForce

func (o *GetCmOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetTimeInForceOk

func (o *GetCmOrderV1Resp) GetTimeInForceOk() (*string, bool)

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

func (*GetCmOrderV1Resp) GetTimeOk

func (o *GetCmOrderV1Resp) GetTimeOk() (*int64, bool)

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

func (*GetCmOrderV1Resp) GetType

func (o *GetCmOrderV1Resp) GetType() string

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

func (*GetCmOrderV1Resp) GetTypeOk

func (o *GetCmOrderV1Resp) 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 (*GetCmOrderV1Resp) GetUpdateTime

func (o *GetCmOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetCmOrderV1Resp) GetUpdateTimeOk

func (o *GetCmOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

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

func (*GetCmOrderV1Resp) HasAvgPrice

func (o *GetCmOrderV1Resp) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasClientOrderId

func (o *GetCmOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasCumBase

func (o *GetCmOrderV1Resp) HasCumBase() bool

HasCumBase returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasExecutedQty

func (o *GetCmOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasOrderId

func (o *GetCmOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasOrigQty

func (o *GetCmOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasOrigType

func (o *GetCmOrderV1Resp) HasOrigType() bool

HasOrigType returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasPair

func (o *GetCmOrderV1Resp) HasPair() bool

HasPair returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasPositionSide

func (o *GetCmOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasPrice

func (o *GetCmOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasReduceOnly

func (o *GetCmOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasSide

func (o *GetCmOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasStatus

func (o *GetCmOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasSymbol

func (o *GetCmOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasTime

func (o *GetCmOrderV1Resp) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasTimeInForce

func (o *GetCmOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasType

func (o *GetCmOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetCmOrderV1Resp) HasUpdateTime

func (o *GetCmOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetCmOrderV1Resp) MarshalJSON

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

func (*GetCmOrderV1Resp) SetAvgPrice

func (o *GetCmOrderV1Resp) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*GetCmOrderV1Resp) SetClientOrderId

func (o *GetCmOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetCmOrderV1Resp) SetCumBase

func (o *GetCmOrderV1Resp) SetCumBase(v string)

SetCumBase gets a reference to the given string and assigns it to the CumBase field.

func (*GetCmOrderV1Resp) SetExecutedQty

func (o *GetCmOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetCmOrderV1Resp) SetOrderId

func (o *GetCmOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetCmOrderV1Resp) SetOrigQty

func (o *GetCmOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetCmOrderV1Resp) SetOrigType

func (o *GetCmOrderV1Resp) SetOrigType(v string)

SetOrigType gets a reference to the given string and assigns it to the OrigType field.

func (*GetCmOrderV1Resp) SetPair

func (o *GetCmOrderV1Resp) SetPair(v string)

SetPair gets a reference to the given string and assigns it to the Pair field.

func (*GetCmOrderV1Resp) SetPositionSide

func (o *GetCmOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetCmOrderV1Resp) SetPrice

func (o *GetCmOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetCmOrderV1Resp) SetReduceOnly

func (o *GetCmOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetCmOrderV1Resp) SetSide

func (o *GetCmOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetCmOrderV1Resp) SetStatus

func (o *GetCmOrderV1Resp) SetStatus(v string)

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

func (*GetCmOrderV1Resp) SetSymbol

func (o *GetCmOrderV1Resp) SetSymbol(v string)

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

func (*GetCmOrderV1Resp) SetTime

func (o *GetCmOrderV1Resp) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetCmOrderV1Resp) SetTimeInForce

func (o *GetCmOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetCmOrderV1Resp) SetType

func (o *GetCmOrderV1Resp) SetType(v string)

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

func (*GetCmOrderV1Resp) SetUpdateTime

func (o *GetCmOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetCmOrderV1Resp) ToMap

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

type GetCmPositionRiskV1RespItem

type GetCmPositionRiskV1RespItem struct {
	EntryPrice       *string `json:"entryPrice,omitempty"`
	Leverage         *string `json:"leverage,omitempty"`
	LiquidationPrice *string `json:"liquidationPrice,omitempty"`
	MarkPrice        *string `json:"markPrice,omitempty"`
	MaxQty           *string `json:"maxQty,omitempty"`
	NotionalValue    *string `json:"notionalValue,omitempty"`
	PositionAmt      *string `json:"positionAmt,omitempty"`
	PositionSide     *string `json:"positionSide,omitempty"`
	Symbol           *string `json:"symbol,omitempty"`
	UnRealizedProfit *string `json:"unRealizedProfit,omitempty"`
	UpdateTime       *int64  `json:"updateTime,omitempty"`
}

GetCmPositionRiskV1RespItem struct for GetCmPositionRiskV1RespItem

func NewGetCmPositionRiskV1RespItem

func NewGetCmPositionRiskV1RespItem() *GetCmPositionRiskV1RespItem

NewGetCmPositionRiskV1RespItem instantiates a new GetCmPositionRiskV1RespItem 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 NewGetCmPositionRiskV1RespItemWithDefaults

func NewGetCmPositionRiskV1RespItemWithDefaults() *GetCmPositionRiskV1RespItem

NewGetCmPositionRiskV1RespItemWithDefaults instantiates a new GetCmPositionRiskV1RespItem 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 (*GetCmPositionRiskV1RespItem) GetEntryPrice

func (o *GetCmPositionRiskV1RespItem) GetEntryPrice() string

GetEntryPrice returns the EntryPrice field value if set, zero value otherwise.

func (*GetCmPositionRiskV1RespItem) GetEntryPriceOk

func (o *GetCmPositionRiskV1RespItem) GetEntryPriceOk() (*string, bool)

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

func (*GetCmPositionRiskV1RespItem) GetLeverage

func (o *GetCmPositionRiskV1RespItem) GetLeverage() string

GetLeverage returns the Leverage field value if set, zero value otherwise.

func (*GetCmPositionRiskV1RespItem) GetLeverageOk

func (o *GetCmPositionRiskV1RespItem) GetLeverageOk() (*string, bool)

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

func (*GetCmPositionRiskV1RespItem) GetLiquidationPrice

func (o *GetCmPositionRiskV1RespItem) GetLiquidationPrice() string

GetLiquidationPrice returns the LiquidationPrice field value if set, zero value otherwise.

func (*GetCmPositionRiskV1RespItem) GetLiquidationPriceOk

func (o *GetCmPositionRiskV1RespItem) GetLiquidationPriceOk() (*string, bool)

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

func (*GetCmPositionRiskV1RespItem) GetMarkPrice

func (o *GetCmPositionRiskV1RespItem) GetMarkPrice() string

GetMarkPrice returns the MarkPrice field value if set, zero value otherwise.

func (*GetCmPositionRiskV1RespItem) GetMarkPriceOk

func (o *GetCmPositionRiskV1RespItem) GetMarkPriceOk() (*string, 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 (*GetCmPositionRiskV1RespItem) GetMaxQty

func (o *GetCmPositionRiskV1RespItem) GetMaxQty() string

GetMaxQty returns the MaxQty field value if set, zero value otherwise.

func (*GetCmPositionRiskV1RespItem) GetMaxQtyOk

func (o *GetCmPositionRiskV1RespItem) GetMaxQtyOk() (*string, bool)

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

func (*GetCmPositionRiskV1RespItem) GetNotionalValue

func (o *GetCmPositionRiskV1RespItem) GetNotionalValue() string

GetNotionalValue returns the NotionalValue field value if set, zero value otherwise.

func (*GetCmPositionRiskV1RespItem) GetNotionalValueOk

func (o *GetCmPositionRiskV1RespItem) GetNotionalValueOk() (*string, bool)

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

func (*GetCmPositionRiskV1RespItem) GetPositionAmt

func (o *GetCmPositionRiskV1RespItem) GetPositionAmt() string

GetPositionAmt returns the PositionAmt field value if set, zero value otherwise.

func (*GetCmPositionRiskV1RespItem) GetPositionAmtOk

func (o *GetCmPositionRiskV1RespItem) GetPositionAmtOk() (*string, bool)

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

func (*GetCmPositionRiskV1RespItem) GetPositionSide

func (o *GetCmPositionRiskV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetCmPositionRiskV1RespItem) GetPositionSideOk

func (o *GetCmPositionRiskV1RespItem) GetPositionSideOk() (*string, bool)

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

func (*GetCmPositionRiskV1RespItem) GetSymbol

func (o *GetCmPositionRiskV1RespItem) GetSymbol() string

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

func (*GetCmPositionRiskV1RespItem) GetSymbolOk

func (o *GetCmPositionRiskV1RespItem) 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 (*GetCmPositionRiskV1RespItem) GetUnRealizedProfit

func (o *GetCmPositionRiskV1RespItem) GetUnRealizedProfit() string

GetUnRealizedProfit returns the UnRealizedProfit field value if set, zero value otherwise.

func (*GetCmPositionRiskV1RespItem) GetUnRealizedProfitOk

func (o *GetCmPositionRiskV1RespItem) GetUnRealizedProfitOk() (*string, bool)

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

func (*GetCmPositionRiskV1RespItem) GetUpdateTime

func (o *GetCmPositionRiskV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetCmPositionRiskV1RespItem) GetUpdateTimeOk

func (o *GetCmPositionRiskV1RespItem) GetUpdateTimeOk() (*int64, bool)

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

func (*GetCmPositionRiskV1RespItem) HasEntryPrice

func (o *GetCmPositionRiskV1RespItem) HasEntryPrice() bool

HasEntryPrice returns a boolean if a field has been set.

func (*GetCmPositionRiskV1RespItem) HasLeverage

func (o *GetCmPositionRiskV1RespItem) HasLeverage() bool

HasLeverage returns a boolean if a field has been set.

func (*GetCmPositionRiskV1RespItem) HasLiquidationPrice

func (o *GetCmPositionRiskV1RespItem) HasLiquidationPrice() bool

HasLiquidationPrice returns a boolean if a field has been set.

func (*GetCmPositionRiskV1RespItem) HasMarkPrice

func (o *GetCmPositionRiskV1RespItem) HasMarkPrice() bool

HasMarkPrice returns a boolean if a field has been set.

func (*GetCmPositionRiskV1RespItem) HasMaxQty

func (o *GetCmPositionRiskV1RespItem) HasMaxQty() bool

HasMaxQty returns a boolean if a field has been set.

func (*GetCmPositionRiskV1RespItem) HasNotionalValue

func (o *GetCmPositionRiskV1RespItem) HasNotionalValue() bool

HasNotionalValue returns a boolean if a field has been set.

func (*GetCmPositionRiskV1RespItem) HasPositionAmt

func (o *GetCmPositionRiskV1RespItem) HasPositionAmt() bool

HasPositionAmt returns a boolean if a field has been set.

func (*GetCmPositionRiskV1RespItem) HasPositionSide

func (o *GetCmPositionRiskV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetCmPositionRiskV1RespItem) HasSymbol

func (o *GetCmPositionRiskV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetCmPositionRiskV1RespItem) HasUnRealizedProfit

func (o *GetCmPositionRiskV1RespItem) HasUnRealizedProfit() bool

HasUnRealizedProfit returns a boolean if a field has been set.

func (*GetCmPositionRiskV1RespItem) HasUpdateTime

func (o *GetCmPositionRiskV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetCmPositionRiskV1RespItem) MarshalJSON

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

func (*GetCmPositionRiskV1RespItem) SetEntryPrice

func (o *GetCmPositionRiskV1RespItem) SetEntryPrice(v string)

SetEntryPrice gets a reference to the given string and assigns it to the EntryPrice field.

func (*GetCmPositionRiskV1RespItem) SetLeverage

func (o *GetCmPositionRiskV1RespItem) SetLeverage(v string)

SetLeverage gets a reference to the given string and assigns it to the Leverage field.

func (*GetCmPositionRiskV1RespItem) SetLiquidationPrice

func (o *GetCmPositionRiskV1RespItem) SetLiquidationPrice(v string)

SetLiquidationPrice gets a reference to the given string and assigns it to the LiquidationPrice field.

func (*GetCmPositionRiskV1RespItem) SetMarkPrice

func (o *GetCmPositionRiskV1RespItem) SetMarkPrice(v string)

SetMarkPrice gets a reference to the given string and assigns it to the MarkPrice field.

func (*GetCmPositionRiskV1RespItem) SetMaxQty

func (o *GetCmPositionRiskV1RespItem) SetMaxQty(v string)

SetMaxQty gets a reference to the given string and assigns it to the MaxQty field.

func (*GetCmPositionRiskV1RespItem) SetNotionalValue

func (o *GetCmPositionRiskV1RespItem) SetNotionalValue(v string)

SetNotionalValue gets a reference to the given string and assigns it to the NotionalValue field.

func (*GetCmPositionRiskV1RespItem) SetPositionAmt

func (o *GetCmPositionRiskV1RespItem) SetPositionAmt(v string)

SetPositionAmt gets a reference to the given string and assigns it to the PositionAmt field.

func (*GetCmPositionRiskV1RespItem) SetPositionSide

func (o *GetCmPositionRiskV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetCmPositionRiskV1RespItem) SetSymbol

func (o *GetCmPositionRiskV1RespItem) SetSymbol(v string)

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

func (*GetCmPositionRiskV1RespItem) SetUnRealizedProfit

func (o *GetCmPositionRiskV1RespItem) SetUnRealizedProfit(v string)

SetUnRealizedProfit gets a reference to the given string and assigns it to the UnRealizedProfit field.

func (*GetCmPositionRiskV1RespItem) SetUpdateTime

func (o *GetCmPositionRiskV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetCmPositionRiskV1RespItem) ToMap

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

type GetCmPositionSideDualV1Resp

type GetCmPositionSideDualV1Resp struct {
	DualSidePosition *bool `json:"dualSidePosition,omitempty"`
}

GetCmPositionSideDualV1Resp struct for GetCmPositionSideDualV1Resp

func NewGetCmPositionSideDualV1Resp

func NewGetCmPositionSideDualV1Resp() *GetCmPositionSideDualV1Resp

NewGetCmPositionSideDualV1Resp instantiates a new GetCmPositionSideDualV1Resp 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 NewGetCmPositionSideDualV1RespWithDefaults

func NewGetCmPositionSideDualV1RespWithDefaults() *GetCmPositionSideDualV1Resp

NewGetCmPositionSideDualV1RespWithDefaults instantiates a new GetCmPositionSideDualV1Resp 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 (*GetCmPositionSideDualV1Resp) GetDualSidePosition

func (o *GetCmPositionSideDualV1Resp) GetDualSidePosition() bool

GetDualSidePosition returns the DualSidePosition field value if set, zero value otherwise.

func (*GetCmPositionSideDualV1Resp) GetDualSidePositionOk

func (o *GetCmPositionSideDualV1Resp) GetDualSidePositionOk() (*bool, bool)

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

func (*GetCmPositionSideDualV1Resp) HasDualSidePosition

func (o *GetCmPositionSideDualV1Resp) HasDualSidePosition() bool

HasDualSidePosition returns a boolean if a field has been set.

func (GetCmPositionSideDualV1Resp) MarshalJSON

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

func (*GetCmPositionSideDualV1Resp) SetDualSidePosition

func (o *GetCmPositionSideDualV1Resp) SetDualSidePosition(v bool)

SetDualSidePosition gets a reference to the given bool and assigns it to the DualSidePosition field.

func (GetCmPositionSideDualV1Resp) ToMap

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

type GetCmUserTradesV1RespItem

type GetCmUserTradesV1RespItem struct {
	BaseQty         *string `json:"baseQty,omitempty"`
	Buyer           *bool   `json:"buyer,omitempty"`
	Commission      *string `json:"commission,omitempty"`
	CommissionAsset *string `json:"commissionAsset,omitempty"`
	Id              *int32  `json:"id,omitempty"`
	Maker           *bool   `json:"maker,omitempty"`
	MarginAsset     *string `json:"marginAsset,omitempty"`
	OrderId         *int64  `json:"orderId,omitempty"`
	Pair            *string `json:"pair,omitempty"`
	PositionSide    *string `json:"positionSide,omitempty"`
	Price           *string `json:"price,omitempty"`
	Qty             *string `json:"qty,omitempty"`
	RealizedPnl     *string `json:"realizedPnl,omitempty"`
	Side            *string `json:"side,omitempty"`
	Symbol          *string `json:"symbol,omitempty"`
	Time            *int64  `json:"time,omitempty"`
}

GetCmUserTradesV1RespItem struct for GetCmUserTradesV1RespItem

func NewGetCmUserTradesV1RespItem

func NewGetCmUserTradesV1RespItem() *GetCmUserTradesV1RespItem

NewGetCmUserTradesV1RespItem instantiates a new GetCmUserTradesV1RespItem 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 NewGetCmUserTradesV1RespItemWithDefaults

func NewGetCmUserTradesV1RespItemWithDefaults() *GetCmUserTradesV1RespItem

NewGetCmUserTradesV1RespItemWithDefaults instantiates a new GetCmUserTradesV1RespItem 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 (*GetCmUserTradesV1RespItem) GetBaseQty

func (o *GetCmUserTradesV1RespItem) GetBaseQty() string

GetBaseQty returns the BaseQty field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetBaseQtyOk

func (o *GetCmUserTradesV1RespItem) GetBaseQtyOk() (*string, bool)

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

func (*GetCmUserTradesV1RespItem) GetBuyer

func (o *GetCmUserTradesV1RespItem) GetBuyer() bool

GetBuyer returns the Buyer field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetBuyerOk

func (o *GetCmUserTradesV1RespItem) GetBuyerOk() (*bool, bool)

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

func (*GetCmUserTradesV1RespItem) GetCommission

func (o *GetCmUserTradesV1RespItem) GetCommission() string

GetCommission returns the Commission field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetCommissionAsset

func (o *GetCmUserTradesV1RespItem) GetCommissionAsset() string

GetCommissionAsset returns the CommissionAsset field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetCommissionAssetOk

func (o *GetCmUserTradesV1RespItem) GetCommissionAssetOk() (*string, bool)

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

func (*GetCmUserTradesV1RespItem) GetCommissionOk

func (o *GetCmUserTradesV1RespItem) GetCommissionOk() (*string, bool)

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

func (*GetCmUserTradesV1RespItem) GetId

func (o *GetCmUserTradesV1RespItem) GetId() int32

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

func (*GetCmUserTradesV1RespItem) GetIdOk

func (o *GetCmUserTradesV1RespItem) GetIdOk() (*int32, 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 (*GetCmUserTradesV1RespItem) GetMaker

func (o *GetCmUserTradesV1RespItem) GetMaker() bool

GetMaker returns the Maker field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetMakerOk

func (o *GetCmUserTradesV1RespItem) GetMakerOk() (*bool, bool)

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

func (*GetCmUserTradesV1RespItem) GetMarginAsset

func (o *GetCmUserTradesV1RespItem) GetMarginAsset() string

GetMarginAsset returns the MarginAsset field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetMarginAssetOk

func (o *GetCmUserTradesV1RespItem) GetMarginAssetOk() (*string, bool)

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

func (*GetCmUserTradesV1RespItem) GetOrderId

func (o *GetCmUserTradesV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetOrderIdOk

func (o *GetCmUserTradesV1RespItem) GetOrderIdOk() (*int64, bool)

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

func (*GetCmUserTradesV1RespItem) GetPair

func (o *GetCmUserTradesV1RespItem) GetPair() string

GetPair returns the Pair field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetPairOk

func (o *GetCmUserTradesV1RespItem) GetPairOk() (*string, bool)

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

func (*GetCmUserTradesV1RespItem) GetPositionSide

func (o *GetCmUserTradesV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetPositionSideOk

func (o *GetCmUserTradesV1RespItem) GetPositionSideOk() (*string, bool)

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

func (*GetCmUserTradesV1RespItem) GetPrice

func (o *GetCmUserTradesV1RespItem) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetPriceOk

func (o *GetCmUserTradesV1RespItem) GetPriceOk() (*string, bool)

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

func (*GetCmUserTradesV1RespItem) GetQty

func (o *GetCmUserTradesV1RespItem) GetQty() string

GetQty returns the Qty field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetQtyOk

func (o *GetCmUserTradesV1RespItem) GetQtyOk() (*string, bool)

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

func (*GetCmUserTradesV1RespItem) GetRealizedPnl

func (o *GetCmUserTradesV1RespItem) GetRealizedPnl() string

GetRealizedPnl returns the RealizedPnl field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetRealizedPnlOk

func (o *GetCmUserTradesV1RespItem) GetRealizedPnlOk() (*string, bool)

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

func (*GetCmUserTradesV1RespItem) GetSide

func (o *GetCmUserTradesV1RespItem) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetSideOk

func (o *GetCmUserTradesV1RespItem) GetSideOk() (*string, bool)

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

func (*GetCmUserTradesV1RespItem) GetSymbol

func (o *GetCmUserTradesV1RespItem) GetSymbol() string

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

func (*GetCmUserTradesV1RespItem) GetSymbolOk

func (o *GetCmUserTradesV1RespItem) 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 (*GetCmUserTradesV1RespItem) GetTime

func (o *GetCmUserTradesV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetCmUserTradesV1RespItem) GetTimeOk

func (o *GetCmUserTradesV1RespItem) GetTimeOk() (*int64, bool)

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

func (*GetCmUserTradesV1RespItem) HasBaseQty

func (o *GetCmUserTradesV1RespItem) HasBaseQty() bool

HasBaseQty returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasBuyer

func (o *GetCmUserTradesV1RespItem) HasBuyer() bool

HasBuyer returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasCommission

func (o *GetCmUserTradesV1RespItem) HasCommission() bool

HasCommission returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasCommissionAsset

func (o *GetCmUserTradesV1RespItem) HasCommissionAsset() bool

HasCommissionAsset returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasId

func (o *GetCmUserTradesV1RespItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasMaker

func (o *GetCmUserTradesV1RespItem) HasMaker() bool

HasMaker returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasMarginAsset

func (o *GetCmUserTradesV1RespItem) HasMarginAsset() bool

HasMarginAsset returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasOrderId

func (o *GetCmUserTradesV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasPair

func (o *GetCmUserTradesV1RespItem) HasPair() bool

HasPair returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasPositionSide

func (o *GetCmUserTradesV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasPrice

func (o *GetCmUserTradesV1RespItem) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasQty

func (o *GetCmUserTradesV1RespItem) HasQty() bool

HasQty returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasRealizedPnl

func (o *GetCmUserTradesV1RespItem) HasRealizedPnl() bool

HasRealizedPnl returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasSide

func (o *GetCmUserTradesV1RespItem) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasSymbol

func (o *GetCmUserTradesV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetCmUserTradesV1RespItem) HasTime

func (o *GetCmUserTradesV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (GetCmUserTradesV1RespItem) MarshalJSON

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

func (*GetCmUserTradesV1RespItem) SetBaseQty

func (o *GetCmUserTradesV1RespItem) SetBaseQty(v string)

SetBaseQty gets a reference to the given string and assigns it to the BaseQty field.

func (*GetCmUserTradesV1RespItem) SetBuyer

func (o *GetCmUserTradesV1RespItem) SetBuyer(v bool)

SetBuyer gets a reference to the given bool and assigns it to the Buyer field.

func (*GetCmUserTradesV1RespItem) SetCommission

func (o *GetCmUserTradesV1RespItem) SetCommission(v string)

SetCommission gets a reference to the given string and assigns it to the Commission field.

func (*GetCmUserTradesV1RespItem) SetCommissionAsset

func (o *GetCmUserTradesV1RespItem) SetCommissionAsset(v string)

SetCommissionAsset gets a reference to the given string and assigns it to the CommissionAsset field.

func (*GetCmUserTradesV1RespItem) SetId

func (o *GetCmUserTradesV1RespItem) SetId(v int32)

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

func (*GetCmUserTradesV1RespItem) SetMaker

func (o *GetCmUserTradesV1RespItem) SetMaker(v bool)

SetMaker gets a reference to the given bool and assigns it to the Maker field.

func (*GetCmUserTradesV1RespItem) SetMarginAsset

func (o *GetCmUserTradesV1RespItem) SetMarginAsset(v string)

SetMarginAsset gets a reference to the given string and assigns it to the MarginAsset field.

func (*GetCmUserTradesV1RespItem) SetOrderId

func (o *GetCmUserTradesV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetCmUserTradesV1RespItem) SetPair

func (o *GetCmUserTradesV1RespItem) SetPair(v string)

SetPair gets a reference to the given string and assigns it to the Pair field.

func (*GetCmUserTradesV1RespItem) SetPositionSide

func (o *GetCmUserTradesV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetCmUserTradesV1RespItem) SetPrice

func (o *GetCmUserTradesV1RespItem) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetCmUserTradesV1RespItem) SetQty

func (o *GetCmUserTradesV1RespItem) SetQty(v string)

SetQty gets a reference to the given string and assigns it to the Qty field.

func (*GetCmUserTradesV1RespItem) SetRealizedPnl

func (o *GetCmUserTradesV1RespItem) SetRealizedPnl(v string)

SetRealizedPnl gets a reference to the given string and assigns it to the RealizedPnl field.

func (*GetCmUserTradesV1RespItem) SetSide

func (o *GetCmUserTradesV1RespItem) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetCmUserTradesV1RespItem) SetSymbol

func (o *GetCmUserTradesV1RespItem) SetSymbol(v string)

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

func (*GetCmUserTradesV1RespItem) SetTime

func (o *GetCmUserTradesV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (GetCmUserTradesV1RespItem) ToMap

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

type GetMarginAllOrderListV1RespItem

type GetMarginAllOrderListV1RespItem struct {
	ContingencyType   *string                                 `json:"contingencyType,omitempty"`
	ListClientOrderId *string                                 `json:"listClientOrderId,omitempty"`
	ListOrderStatus   *string                                 `json:"listOrderStatus,omitempty"`
	ListStatusType    *string                                 `json:"listStatusType,omitempty"`
	OrderListId       *int64                                  `json:"orderListId,omitempty"`
	Orders            []CreateMarginOrderOcoV1RespOrdersInner `json:"orders,omitempty"`
	Symbol            *string                                 `json:"symbol,omitempty"`
	TransactionTime   *int64                                  `json:"transactionTime,omitempty"`
}

GetMarginAllOrderListV1RespItem struct for GetMarginAllOrderListV1RespItem

func NewGetMarginAllOrderListV1RespItem

func NewGetMarginAllOrderListV1RespItem() *GetMarginAllOrderListV1RespItem

NewGetMarginAllOrderListV1RespItem instantiates a new GetMarginAllOrderListV1RespItem 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 NewGetMarginAllOrderListV1RespItemWithDefaults

func NewGetMarginAllOrderListV1RespItemWithDefaults() *GetMarginAllOrderListV1RespItem

NewGetMarginAllOrderListV1RespItemWithDefaults instantiates a new GetMarginAllOrderListV1RespItem 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 (*GetMarginAllOrderListV1RespItem) GetContingencyType

func (o *GetMarginAllOrderListV1RespItem) GetContingencyType() string

GetContingencyType returns the ContingencyType field value if set, zero value otherwise.

func (*GetMarginAllOrderListV1RespItem) GetContingencyTypeOk

func (o *GetMarginAllOrderListV1RespItem) GetContingencyTypeOk() (*string, bool)

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

func (*GetMarginAllOrderListV1RespItem) GetListClientOrderId

func (o *GetMarginAllOrderListV1RespItem) GetListClientOrderId() string

GetListClientOrderId returns the ListClientOrderId field value if set, zero value otherwise.

func (*GetMarginAllOrderListV1RespItem) GetListClientOrderIdOk

func (o *GetMarginAllOrderListV1RespItem) GetListClientOrderIdOk() (*string, bool)

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

func (*GetMarginAllOrderListV1RespItem) GetListOrderStatus

func (o *GetMarginAllOrderListV1RespItem) GetListOrderStatus() string

GetListOrderStatus returns the ListOrderStatus field value if set, zero value otherwise.

func (*GetMarginAllOrderListV1RespItem) GetListOrderStatusOk

func (o *GetMarginAllOrderListV1RespItem) GetListOrderStatusOk() (*string, bool)

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

func (*GetMarginAllOrderListV1RespItem) GetListStatusType

func (o *GetMarginAllOrderListV1RespItem) GetListStatusType() string

GetListStatusType returns the ListStatusType field value if set, zero value otherwise.

func (*GetMarginAllOrderListV1RespItem) GetListStatusTypeOk

func (o *GetMarginAllOrderListV1RespItem) GetListStatusTypeOk() (*string, bool)

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

func (*GetMarginAllOrderListV1RespItem) GetOrderListId

func (o *GetMarginAllOrderListV1RespItem) GetOrderListId() int64

GetOrderListId returns the OrderListId field value if set, zero value otherwise.

func (*GetMarginAllOrderListV1RespItem) GetOrderListIdOk

func (o *GetMarginAllOrderListV1RespItem) GetOrderListIdOk() (*int64, bool)

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

func (*GetMarginAllOrderListV1RespItem) GetOrders

GetOrders returns the Orders field value if set, zero value otherwise.

func (*GetMarginAllOrderListV1RespItem) GetOrdersOk

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

func (*GetMarginAllOrderListV1RespItem) GetSymbol

func (o *GetMarginAllOrderListV1RespItem) GetSymbol() string

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

func (*GetMarginAllOrderListV1RespItem) GetSymbolOk

func (o *GetMarginAllOrderListV1RespItem) 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 (*GetMarginAllOrderListV1RespItem) GetTransactionTime

func (o *GetMarginAllOrderListV1RespItem) GetTransactionTime() int64

GetTransactionTime returns the TransactionTime field value if set, zero value otherwise.

func (*GetMarginAllOrderListV1RespItem) GetTransactionTimeOk

func (o *GetMarginAllOrderListV1RespItem) GetTransactionTimeOk() (*int64, bool)

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

func (*GetMarginAllOrderListV1RespItem) HasContingencyType

func (o *GetMarginAllOrderListV1RespItem) HasContingencyType() bool

HasContingencyType returns a boolean if a field has been set.

func (*GetMarginAllOrderListV1RespItem) HasListClientOrderId

func (o *GetMarginAllOrderListV1RespItem) HasListClientOrderId() bool

HasListClientOrderId returns a boolean if a field has been set.

func (*GetMarginAllOrderListV1RespItem) HasListOrderStatus

func (o *GetMarginAllOrderListV1RespItem) HasListOrderStatus() bool

HasListOrderStatus returns a boolean if a field has been set.

func (*GetMarginAllOrderListV1RespItem) HasListStatusType

func (o *GetMarginAllOrderListV1RespItem) HasListStatusType() bool

HasListStatusType returns a boolean if a field has been set.

func (*GetMarginAllOrderListV1RespItem) HasOrderListId

func (o *GetMarginAllOrderListV1RespItem) HasOrderListId() bool

HasOrderListId returns a boolean if a field has been set.

func (*GetMarginAllOrderListV1RespItem) HasOrders

func (o *GetMarginAllOrderListV1RespItem) HasOrders() bool

HasOrders returns a boolean if a field has been set.

func (*GetMarginAllOrderListV1RespItem) HasSymbol

func (o *GetMarginAllOrderListV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetMarginAllOrderListV1RespItem) HasTransactionTime

func (o *GetMarginAllOrderListV1RespItem) HasTransactionTime() bool

HasTransactionTime returns a boolean if a field has been set.

func (GetMarginAllOrderListV1RespItem) MarshalJSON

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

func (*GetMarginAllOrderListV1RespItem) SetContingencyType

func (o *GetMarginAllOrderListV1RespItem) SetContingencyType(v string)

SetContingencyType gets a reference to the given string and assigns it to the ContingencyType field.

func (*GetMarginAllOrderListV1RespItem) SetListClientOrderId

func (o *GetMarginAllOrderListV1RespItem) SetListClientOrderId(v string)

SetListClientOrderId gets a reference to the given string and assigns it to the ListClientOrderId field.

func (*GetMarginAllOrderListV1RespItem) SetListOrderStatus

func (o *GetMarginAllOrderListV1RespItem) SetListOrderStatus(v string)

SetListOrderStatus gets a reference to the given string and assigns it to the ListOrderStatus field.

func (*GetMarginAllOrderListV1RespItem) SetListStatusType

func (o *GetMarginAllOrderListV1RespItem) SetListStatusType(v string)

SetListStatusType gets a reference to the given string and assigns it to the ListStatusType field.

func (*GetMarginAllOrderListV1RespItem) SetOrderListId

func (o *GetMarginAllOrderListV1RespItem) SetOrderListId(v int64)

SetOrderListId gets a reference to the given int64 and assigns it to the OrderListId field.

func (*GetMarginAllOrderListV1RespItem) SetOrders

SetOrders gets a reference to the given []CreateMarginOrderOcoV1RespOrdersInner and assigns it to the Orders field.

func (*GetMarginAllOrderListV1RespItem) SetSymbol

func (o *GetMarginAllOrderListV1RespItem) SetSymbol(v string)

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

func (*GetMarginAllOrderListV1RespItem) SetTransactionTime

func (o *GetMarginAllOrderListV1RespItem) SetTransactionTime(v int64)

SetTransactionTime gets a reference to the given int64 and assigns it to the TransactionTime field.

func (GetMarginAllOrderListV1RespItem) ToMap

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

type GetMarginAllOrdersV1RespItem

type GetMarginAllOrdersV1RespItem struct {
	AccountId               *int64                 `json:"accountId,omitempty"`
	ClientOrderId           *string                `json:"clientOrderId,omitempty"`
	CummulativeQuoteQty     *string                `json:"cummulativeQuoteQty,omitempty"`
	ExecutedQty             *string                `json:"executedQty,omitempty"`
	IcebergQty              *string                `json:"icebergQty,omitempty"`
	IsWorking               *bool                  `json:"isWorking,omitempty"`
	OrderId                 *int64                 `json:"orderId,omitempty"`
	OrigQty                 *string                `json:"origQty,omitempty"`
	PreventedMatchId        map[string]interface{} `json:"preventedMatchId,omitempty"`
	PreventedQuantity       map[string]interface{} `json:"preventedQuantity,omitempty"`
	Price                   *string                `json:"price,omitempty"`
	SelfTradePreventionMode *string                `json:"selfTradePreventionMode,omitempty"`
	Side                    *string                `json:"side,omitempty"`
	Status                  *string                `json:"status,omitempty"`
	StopPrice               *string                `json:"stopPrice,omitempty"`
	Symbol                  *string                `json:"symbol,omitempty"`
	Time                    *int64                 `json:"time,omitempty"`
	TimeInForce             *string                `json:"timeInForce,omitempty"`
	Type                    *string                `json:"type,omitempty"`
	UpdateTime              *int64                 `json:"updateTime,omitempty"`
}

GetMarginAllOrdersV1RespItem struct for GetMarginAllOrdersV1RespItem

func NewGetMarginAllOrdersV1RespItem

func NewGetMarginAllOrdersV1RespItem() *GetMarginAllOrdersV1RespItem

NewGetMarginAllOrdersV1RespItem instantiates a new GetMarginAllOrdersV1RespItem 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 NewGetMarginAllOrdersV1RespItemWithDefaults

func NewGetMarginAllOrdersV1RespItemWithDefaults() *GetMarginAllOrdersV1RespItem

NewGetMarginAllOrdersV1RespItemWithDefaults instantiates a new GetMarginAllOrdersV1RespItem 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 (*GetMarginAllOrdersV1RespItem) GetAccountId

func (o *GetMarginAllOrdersV1RespItem) GetAccountId() int64

GetAccountId returns the AccountId field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetAccountIdOk

func (o *GetMarginAllOrdersV1RespItem) GetAccountIdOk() (*int64, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetClientOrderId

func (o *GetMarginAllOrdersV1RespItem) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetClientOrderIdOk

func (o *GetMarginAllOrdersV1RespItem) GetClientOrderIdOk() (*string, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetCummulativeQuoteQty

func (o *GetMarginAllOrdersV1RespItem) GetCummulativeQuoteQty() string

GetCummulativeQuoteQty returns the CummulativeQuoteQty field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetCummulativeQuoteQtyOk

func (o *GetMarginAllOrdersV1RespItem) GetCummulativeQuoteQtyOk() (*string, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetExecutedQty

func (o *GetMarginAllOrdersV1RespItem) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetExecutedQtyOk

func (o *GetMarginAllOrdersV1RespItem) GetExecutedQtyOk() (*string, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetIcebergQty

func (o *GetMarginAllOrdersV1RespItem) GetIcebergQty() string

GetIcebergQty returns the IcebergQty field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetIcebergQtyOk

func (o *GetMarginAllOrdersV1RespItem) GetIcebergQtyOk() (*string, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetIsWorking

func (o *GetMarginAllOrdersV1RespItem) GetIsWorking() bool

GetIsWorking returns the IsWorking field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetIsWorkingOk

func (o *GetMarginAllOrdersV1RespItem) GetIsWorkingOk() (*bool, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetOrderId

func (o *GetMarginAllOrdersV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetOrderIdOk

func (o *GetMarginAllOrdersV1RespItem) GetOrderIdOk() (*int64, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetOrigQty

func (o *GetMarginAllOrdersV1RespItem) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetOrigQtyOk

func (o *GetMarginAllOrdersV1RespItem) GetOrigQtyOk() (*string, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetPreventedMatchId

func (o *GetMarginAllOrdersV1RespItem) GetPreventedMatchId() map[string]interface{}

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

func (*GetMarginAllOrdersV1RespItem) GetPreventedMatchIdOk

func (o *GetMarginAllOrdersV1RespItem) GetPreventedMatchIdOk() (map[string]interface{}, bool)

GetPreventedMatchIdOk returns a tuple with the PreventedMatchId 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 (*GetMarginAllOrdersV1RespItem) GetPreventedQuantity

func (o *GetMarginAllOrdersV1RespItem) GetPreventedQuantity() map[string]interface{}

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

func (*GetMarginAllOrdersV1RespItem) GetPreventedQuantityOk

func (o *GetMarginAllOrdersV1RespItem) GetPreventedQuantityOk() (map[string]interface{}, bool)

GetPreventedQuantityOk returns a tuple with the PreventedQuantity 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 (*GetMarginAllOrdersV1RespItem) GetPrice

func (o *GetMarginAllOrdersV1RespItem) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetPriceOk

func (o *GetMarginAllOrdersV1RespItem) GetPriceOk() (*string, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetSelfTradePreventionMode

func (o *GetMarginAllOrdersV1RespItem) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetSelfTradePreventionModeOk

func (o *GetMarginAllOrdersV1RespItem) GetSelfTradePreventionModeOk() (*string, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetSide

func (o *GetMarginAllOrdersV1RespItem) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetSideOk

func (o *GetMarginAllOrdersV1RespItem) GetSideOk() (*string, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetStatus

func (o *GetMarginAllOrdersV1RespItem) GetStatus() string

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

func (*GetMarginAllOrdersV1RespItem) GetStatusOk

func (o *GetMarginAllOrdersV1RespItem) 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 (*GetMarginAllOrdersV1RespItem) GetStopPrice

func (o *GetMarginAllOrdersV1RespItem) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetStopPriceOk

func (o *GetMarginAllOrdersV1RespItem) GetStopPriceOk() (*string, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetSymbol

func (o *GetMarginAllOrdersV1RespItem) GetSymbol() string

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

func (*GetMarginAllOrdersV1RespItem) GetSymbolOk

func (o *GetMarginAllOrdersV1RespItem) 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 (*GetMarginAllOrdersV1RespItem) GetTime

func (o *GetMarginAllOrdersV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetTimeInForce

func (o *GetMarginAllOrdersV1RespItem) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetTimeInForceOk

func (o *GetMarginAllOrdersV1RespItem) GetTimeInForceOk() (*string, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetTimeOk

func (o *GetMarginAllOrdersV1RespItem) GetTimeOk() (*int64, bool)

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

func (*GetMarginAllOrdersV1RespItem) GetType

func (o *GetMarginAllOrdersV1RespItem) GetType() string

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

func (*GetMarginAllOrdersV1RespItem) GetTypeOk

func (o *GetMarginAllOrdersV1RespItem) 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 (*GetMarginAllOrdersV1RespItem) GetUpdateTime

func (o *GetMarginAllOrdersV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetMarginAllOrdersV1RespItem) GetUpdateTimeOk

func (o *GetMarginAllOrdersV1RespItem) GetUpdateTimeOk() (*int64, bool)

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

func (*GetMarginAllOrdersV1RespItem) HasAccountId

func (o *GetMarginAllOrdersV1RespItem) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasClientOrderId

func (o *GetMarginAllOrdersV1RespItem) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasCummulativeQuoteQty

func (o *GetMarginAllOrdersV1RespItem) HasCummulativeQuoteQty() bool

HasCummulativeQuoteQty returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasExecutedQty

func (o *GetMarginAllOrdersV1RespItem) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasIcebergQty

func (o *GetMarginAllOrdersV1RespItem) HasIcebergQty() bool

HasIcebergQty returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasIsWorking

func (o *GetMarginAllOrdersV1RespItem) HasIsWorking() bool

HasIsWorking returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasOrderId

func (o *GetMarginAllOrdersV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasOrigQty

func (o *GetMarginAllOrdersV1RespItem) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasPreventedMatchId

func (o *GetMarginAllOrdersV1RespItem) HasPreventedMatchId() bool

HasPreventedMatchId returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasPreventedQuantity

func (o *GetMarginAllOrdersV1RespItem) HasPreventedQuantity() bool

HasPreventedQuantity returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasPrice

func (o *GetMarginAllOrdersV1RespItem) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasSelfTradePreventionMode

func (o *GetMarginAllOrdersV1RespItem) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasSide

func (o *GetMarginAllOrdersV1RespItem) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasStatus

func (o *GetMarginAllOrdersV1RespItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasStopPrice

func (o *GetMarginAllOrdersV1RespItem) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasSymbol

func (o *GetMarginAllOrdersV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasTime

func (o *GetMarginAllOrdersV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasTimeInForce

func (o *GetMarginAllOrdersV1RespItem) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasType

func (o *GetMarginAllOrdersV1RespItem) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetMarginAllOrdersV1RespItem) HasUpdateTime

func (o *GetMarginAllOrdersV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetMarginAllOrdersV1RespItem) MarshalJSON

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

func (*GetMarginAllOrdersV1RespItem) SetAccountId

func (o *GetMarginAllOrdersV1RespItem) SetAccountId(v int64)

SetAccountId gets a reference to the given int64 and assigns it to the AccountId field.

func (*GetMarginAllOrdersV1RespItem) SetClientOrderId

func (o *GetMarginAllOrdersV1RespItem) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetMarginAllOrdersV1RespItem) SetCummulativeQuoteQty

func (o *GetMarginAllOrdersV1RespItem) SetCummulativeQuoteQty(v string)

SetCummulativeQuoteQty gets a reference to the given string and assigns it to the CummulativeQuoteQty field.

func (*GetMarginAllOrdersV1RespItem) SetExecutedQty

func (o *GetMarginAllOrdersV1RespItem) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetMarginAllOrdersV1RespItem) SetIcebergQty

func (o *GetMarginAllOrdersV1RespItem) SetIcebergQty(v string)

SetIcebergQty gets a reference to the given string and assigns it to the IcebergQty field.

func (*GetMarginAllOrdersV1RespItem) SetIsWorking

func (o *GetMarginAllOrdersV1RespItem) SetIsWorking(v bool)

SetIsWorking gets a reference to the given bool and assigns it to the IsWorking field.

func (*GetMarginAllOrdersV1RespItem) SetOrderId

func (o *GetMarginAllOrdersV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetMarginAllOrdersV1RespItem) SetOrigQty

func (o *GetMarginAllOrdersV1RespItem) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetMarginAllOrdersV1RespItem) SetPreventedMatchId

func (o *GetMarginAllOrdersV1RespItem) SetPreventedMatchId(v map[string]interface{})

SetPreventedMatchId gets a reference to the given map[string]interface{} and assigns it to the PreventedMatchId field.

func (*GetMarginAllOrdersV1RespItem) SetPreventedQuantity

func (o *GetMarginAllOrdersV1RespItem) SetPreventedQuantity(v map[string]interface{})

SetPreventedQuantity gets a reference to the given map[string]interface{} and assigns it to the PreventedQuantity field.

func (*GetMarginAllOrdersV1RespItem) SetPrice

func (o *GetMarginAllOrdersV1RespItem) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetMarginAllOrdersV1RespItem) SetSelfTradePreventionMode

func (o *GetMarginAllOrdersV1RespItem) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*GetMarginAllOrdersV1RespItem) SetSide

func (o *GetMarginAllOrdersV1RespItem) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetMarginAllOrdersV1RespItem) SetStatus

func (o *GetMarginAllOrdersV1RespItem) SetStatus(v string)

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

func (*GetMarginAllOrdersV1RespItem) SetStopPrice

func (o *GetMarginAllOrdersV1RespItem) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*GetMarginAllOrdersV1RespItem) SetSymbol

func (o *GetMarginAllOrdersV1RespItem) SetSymbol(v string)

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

func (*GetMarginAllOrdersV1RespItem) SetTime

func (o *GetMarginAllOrdersV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetMarginAllOrdersV1RespItem) SetTimeInForce

func (o *GetMarginAllOrdersV1RespItem) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetMarginAllOrdersV1RespItem) SetType

func (o *GetMarginAllOrdersV1RespItem) SetType(v string)

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

func (*GetMarginAllOrdersV1RespItem) SetUpdateTime

func (o *GetMarginAllOrdersV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetMarginAllOrdersV1RespItem) ToMap

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

type GetMarginForceOrdersV1Resp

type GetMarginForceOrdersV1Resp struct {
	Rows  []GetMarginForceOrdersV1RespRowsInner `json:"rows,omitempty"`
	Total *int32                                `json:"total,omitempty"`
}

GetMarginForceOrdersV1Resp struct for GetMarginForceOrdersV1Resp

func NewGetMarginForceOrdersV1Resp

func NewGetMarginForceOrdersV1Resp() *GetMarginForceOrdersV1Resp

NewGetMarginForceOrdersV1Resp instantiates a new GetMarginForceOrdersV1Resp 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 NewGetMarginForceOrdersV1RespWithDefaults

func NewGetMarginForceOrdersV1RespWithDefaults() *GetMarginForceOrdersV1Resp

NewGetMarginForceOrdersV1RespWithDefaults instantiates a new GetMarginForceOrdersV1Resp 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 (*GetMarginForceOrdersV1Resp) GetRows

GetRows returns the Rows field value if set, zero value otherwise.

func (*GetMarginForceOrdersV1Resp) GetRowsOk

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

func (*GetMarginForceOrdersV1Resp) GetTotal

func (o *GetMarginForceOrdersV1Resp) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*GetMarginForceOrdersV1Resp) GetTotalOk

func (o *GetMarginForceOrdersV1Resp) GetTotalOk() (*int32, bool)

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

func (*GetMarginForceOrdersV1Resp) HasRows

func (o *GetMarginForceOrdersV1Resp) HasRows() bool

HasRows returns a boolean if a field has been set.

func (*GetMarginForceOrdersV1Resp) HasTotal

func (o *GetMarginForceOrdersV1Resp) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (GetMarginForceOrdersV1Resp) MarshalJSON

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

func (*GetMarginForceOrdersV1Resp) SetRows

SetRows gets a reference to the given []GetMarginForceOrdersV1RespRowsInner and assigns it to the Rows field.

func (*GetMarginForceOrdersV1Resp) SetTotal

func (o *GetMarginForceOrdersV1Resp) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (GetMarginForceOrdersV1Resp) ToMap

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

type GetMarginForceOrdersV1RespRowsInner

type GetMarginForceOrdersV1RespRowsInner struct {
	AvgPrice    *string `json:"avgPrice,omitempty"`
	ExecutedQty *string `json:"executedQty,omitempty"`
	OrderId     *int64  `json:"orderId,omitempty"`
	Price       *string `json:"price,omitempty"`
	Qty         *string `json:"qty,omitempty"`
	Side        *string `json:"side,omitempty"`
	Symbol      *string `json:"symbol,omitempty"`
	TimeInForce *string `json:"timeInForce,omitempty"`
	UpdatedTime *int64  `json:"updatedTime,omitempty"`
}

GetMarginForceOrdersV1RespRowsInner struct for GetMarginForceOrdersV1RespRowsInner

func NewGetMarginForceOrdersV1RespRowsInner

func NewGetMarginForceOrdersV1RespRowsInner() *GetMarginForceOrdersV1RespRowsInner

NewGetMarginForceOrdersV1RespRowsInner instantiates a new GetMarginForceOrdersV1RespRowsInner 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 NewGetMarginForceOrdersV1RespRowsInnerWithDefaults

func NewGetMarginForceOrdersV1RespRowsInnerWithDefaults() *GetMarginForceOrdersV1RespRowsInner

NewGetMarginForceOrdersV1RespRowsInnerWithDefaults instantiates a new GetMarginForceOrdersV1RespRowsInner 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 (*GetMarginForceOrdersV1RespRowsInner) GetAvgPrice

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*GetMarginForceOrdersV1RespRowsInner) GetAvgPriceOk

func (o *GetMarginForceOrdersV1RespRowsInner) GetAvgPriceOk() (*string, bool)

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

func (*GetMarginForceOrdersV1RespRowsInner) GetExecutedQty

func (o *GetMarginForceOrdersV1RespRowsInner) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetMarginForceOrdersV1RespRowsInner) GetExecutedQtyOk

func (o *GetMarginForceOrdersV1RespRowsInner) GetExecutedQtyOk() (*string, bool)

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

func (*GetMarginForceOrdersV1RespRowsInner) GetOrderId

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetMarginForceOrdersV1RespRowsInner) GetOrderIdOk

func (o *GetMarginForceOrdersV1RespRowsInner) GetOrderIdOk() (*int64, bool)

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

func (*GetMarginForceOrdersV1RespRowsInner) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetMarginForceOrdersV1RespRowsInner) GetPriceOk

func (o *GetMarginForceOrdersV1RespRowsInner) GetPriceOk() (*string, bool)

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

func (*GetMarginForceOrdersV1RespRowsInner) GetQty

GetQty returns the Qty field value if set, zero value otherwise.

func (*GetMarginForceOrdersV1RespRowsInner) GetQtyOk

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

func (*GetMarginForceOrdersV1RespRowsInner) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*GetMarginForceOrdersV1RespRowsInner) GetSideOk

func (o *GetMarginForceOrdersV1RespRowsInner) GetSideOk() (*string, bool)

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

func (*GetMarginForceOrdersV1RespRowsInner) GetSymbol

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

func (*GetMarginForceOrdersV1RespRowsInner) GetSymbolOk

func (o *GetMarginForceOrdersV1RespRowsInner) 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 (*GetMarginForceOrdersV1RespRowsInner) GetTimeInForce

func (o *GetMarginForceOrdersV1RespRowsInner) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetMarginForceOrdersV1RespRowsInner) GetTimeInForceOk

func (o *GetMarginForceOrdersV1RespRowsInner) GetTimeInForceOk() (*string, bool)

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

func (*GetMarginForceOrdersV1RespRowsInner) GetUpdatedTime

func (o *GetMarginForceOrdersV1RespRowsInner) GetUpdatedTime() int64

GetUpdatedTime returns the UpdatedTime field value if set, zero value otherwise.

func (*GetMarginForceOrdersV1RespRowsInner) GetUpdatedTimeOk

func (o *GetMarginForceOrdersV1RespRowsInner) GetUpdatedTimeOk() (*int64, bool)

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

func (*GetMarginForceOrdersV1RespRowsInner) HasAvgPrice

func (o *GetMarginForceOrdersV1RespRowsInner) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*GetMarginForceOrdersV1RespRowsInner) HasExecutedQty

func (o *GetMarginForceOrdersV1RespRowsInner) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetMarginForceOrdersV1RespRowsInner) HasOrderId

func (o *GetMarginForceOrdersV1RespRowsInner) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetMarginForceOrdersV1RespRowsInner) HasPrice

HasPrice returns a boolean if a field has been set.

func (*GetMarginForceOrdersV1RespRowsInner) HasQty

HasQty returns a boolean if a field has been set.

func (*GetMarginForceOrdersV1RespRowsInner) HasSide

HasSide returns a boolean if a field has been set.

func (*GetMarginForceOrdersV1RespRowsInner) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (*GetMarginForceOrdersV1RespRowsInner) HasTimeInForce

func (o *GetMarginForceOrdersV1RespRowsInner) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetMarginForceOrdersV1RespRowsInner) HasUpdatedTime

func (o *GetMarginForceOrdersV1RespRowsInner) HasUpdatedTime() bool

HasUpdatedTime returns a boolean if a field has been set.

func (GetMarginForceOrdersV1RespRowsInner) MarshalJSON

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

func (*GetMarginForceOrdersV1RespRowsInner) SetAvgPrice

func (o *GetMarginForceOrdersV1RespRowsInner) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*GetMarginForceOrdersV1RespRowsInner) SetExecutedQty

func (o *GetMarginForceOrdersV1RespRowsInner) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetMarginForceOrdersV1RespRowsInner) SetOrderId

func (o *GetMarginForceOrdersV1RespRowsInner) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetMarginForceOrdersV1RespRowsInner) SetPrice

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetMarginForceOrdersV1RespRowsInner) SetQty

SetQty gets a reference to the given string and assigns it to the Qty field.

func (*GetMarginForceOrdersV1RespRowsInner) SetSide

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetMarginForceOrdersV1RespRowsInner) SetSymbol

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

func (*GetMarginForceOrdersV1RespRowsInner) SetTimeInForce

func (o *GetMarginForceOrdersV1RespRowsInner) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetMarginForceOrdersV1RespRowsInner) SetUpdatedTime

func (o *GetMarginForceOrdersV1RespRowsInner) SetUpdatedTime(v int64)

SetUpdatedTime gets a reference to the given int64 and assigns it to the UpdatedTime field.

func (GetMarginForceOrdersV1RespRowsInner) ToMap

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

type GetMarginMarginInterestHistoryV1Resp

type GetMarginMarginInterestHistoryV1Resp struct {
	Rows  []GetMarginMarginInterestHistoryV1RespRowsInner `json:"rows,omitempty"`
	Total *int32                                          `json:"total,omitempty"`
}

GetMarginMarginInterestHistoryV1Resp struct for GetMarginMarginInterestHistoryV1Resp

func NewGetMarginMarginInterestHistoryV1Resp

func NewGetMarginMarginInterestHistoryV1Resp() *GetMarginMarginInterestHistoryV1Resp

NewGetMarginMarginInterestHistoryV1Resp instantiates a new GetMarginMarginInterestHistoryV1Resp 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 NewGetMarginMarginInterestHistoryV1RespWithDefaults

func NewGetMarginMarginInterestHistoryV1RespWithDefaults() *GetMarginMarginInterestHistoryV1Resp

NewGetMarginMarginInterestHistoryV1RespWithDefaults instantiates a new GetMarginMarginInterestHistoryV1Resp 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 (*GetMarginMarginInterestHistoryV1Resp) GetRows

GetRows returns the Rows field value if set, zero value otherwise.

func (*GetMarginMarginInterestHistoryV1Resp) GetRowsOk

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

func (*GetMarginMarginInterestHistoryV1Resp) GetTotal

GetTotal returns the Total field value if set, zero value otherwise.

func (*GetMarginMarginInterestHistoryV1Resp) GetTotalOk

func (o *GetMarginMarginInterestHistoryV1Resp) GetTotalOk() (*int32, bool)

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

func (*GetMarginMarginInterestHistoryV1Resp) HasRows

HasRows returns a boolean if a field has been set.

func (*GetMarginMarginInterestHistoryV1Resp) HasTotal

HasTotal returns a boolean if a field has been set.

func (GetMarginMarginInterestHistoryV1Resp) MarshalJSON

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

func (*GetMarginMarginInterestHistoryV1Resp) SetRows

SetRows gets a reference to the given []GetMarginMarginInterestHistoryV1RespRowsInner and assigns it to the Rows field.

func (*GetMarginMarginInterestHistoryV1Resp) SetTotal

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (GetMarginMarginInterestHistoryV1Resp) ToMap

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

type GetMarginMarginInterestHistoryV1RespRowsInner

type GetMarginMarginInterestHistoryV1RespRowsInner struct {
	Asset               *string `json:"asset,omitempty"`
	Interest            *string `json:"interest,omitempty"`
	InterestAccuredTime *int64  `json:"interestAccuredTime,omitempty"`
	InterestRate        *string `json:"interestRate,omitempty"`
	Principal           *string `json:"principal,omitempty"`
	RawAsset            *string `json:"rawAsset,omitempty"`
	TxId                *int64  `json:"txId,omitempty"`
	Type                *string `json:"type,omitempty"`
}

GetMarginMarginInterestHistoryV1RespRowsInner struct for GetMarginMarginInterestHistoryV1RespRowsInner

func NewGetMarginMarginInterestHistoryV1RespRowsInner

func NewGetMarginMarginInterestHistoryV1RespRowsInner() *GetMarginMarginInterestHistoryV1RespRowsInner

NewGetMarginMarginInterestHistoryV1RespRowsInner instantiates a new GetMarginMarginInterestHistoryV1RespRowsInner 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 NewGetMarginMarginInterestHistoryV1RespRowsInnerWithDefaults

func NewGetMarginMarginInterestHistoryV1RespRowsInnerWithDefaults() *GetMarginMarginInterestHistoryV1RespRowsInner

NewGetMarginMarginInterestHistoryV1RespRowsInnerWithDefaults instantiates a new GetMarginMarginInterestHistoryV1RespRowsInner 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 (*GetMarginMarginInterestHistoryV1RespRowsInner) GetAsset

GetAsset returns the Asset field value if set, zero value otherwise.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetAssetOk

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

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetInterest

GetInterest returns the Interest field value if set, zero value otherwise.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetInterestAccuredTime

func (o *GetMarginMarginInterestHistoryV1RespRowsInner) GetInterestAccuredTime() int64

GetInterestAccuredTime returns the InterestAccuredTime field value if set, zero value otherwise.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetInterestAccuredTimeOk

func (o *GetMarginMarginInterestHistoryV1RespRowsInner) GetInterestAccuredTimeOk() (*int64, bool)

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

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetInterestOk

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

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetInterestRate

GetInterestRate returns the InterestRate field value if set, zero value otherwise.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetInterestRateOk

func (o *GetMarginMarginInterestHistoryV1RespRowsInner) GetInterestRateOk() (*string, 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 (*GetMarginMarginInterestHistoryV1RespRowsInner) GetPrincipal

GetPrincipal returns the Principal field value if set, zero value otherwise.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetPrincipalOk

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

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetRawAsset

GetRawAsset returns the RawAsset field value if set, zero value otherwise.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetRawAssetOk

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

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetTxId

GetTxId returns the TxId field value if set, zero value otherwise.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetTxIdOk

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

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetType

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

func (*GetMarginMarginInterestHistoryV1RespRowsInner) GetTypeOk

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 (*GetMarginMarginInterestHistoryV1RespRowsInner) HasAsset

HasAsset returns a boolean if a field has been set.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) HasInterest

HasInterest returns a boolean if a field has been set.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) HasInterestAccuredTime

func (o *GetMarginMarginInterestHistoryV1RespRowsInner) HasInterestAccuredTime() bool

HasInterestAccuredTime returns a boolean if a field has been set.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) HasInterestRate

HasInterestRate returns a boolean if a field has been set.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) HasPrincipal

HasPrincipal returns a boolean if a field has been set.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) HasRawAsset

HasRawAsset returns a boolean if a field has been set.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) HasTxId

HasTxId returns a boolean if a field has been set.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) HasType

HasType returns a boolean if a field has been set.

func (GetMarginMarginInterestHistoryV1RespRowsInner) MarshalJSON

func (*GetMarginMarginInterestHistoryV1RespRowsInner) SetAsset

SetAsset gets a reference to the given string and assigns it to the Asset field.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) SetInterest

SetInterest gets a reference to the given string and assigns it to the Interest field.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) SetInterestAccuredTime

func (o *GetMarginMarginInterestHistoryV1RespRowsInner) SetInterestAccuredTime(v int64)

SetInterestAccuredTime gets a reference to the given int64 and assigns it to the InterestAccuredTime field.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) SetInterestRate

SetInterestRate gets a reference to the given string and assigns it to the InterestRate field.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) SetPrincipal

SetPrincipal gets a reference to the given string and assigns it to the Principal field.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) SetRawAsset

SetRawAsset gets a reference to the given string and assigns it to the RawAsset field.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) SetTxId

SetTxId gets a reference to the given int64 and assigns it to the TxId field.

func (*GetMarginMarginInterestHistoryV1RespRowsInner) SetType

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

func (GetMarginMarginInterestHistoryV1RespRowsInner) ToMap

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

type GetMarginMarginLoanV1Resp

type GetMarginMarginLoanV1Resp struct {
	Rows  []GetMarginMarginLoanV1RespRowsInner `json:"rows,omitempty"`
	Total *int32                               `json:"total,omitempty"`
}

GetMarginMarginLoanV1Resp struct for GetMarginMarginLoanV1Resp

func NewGetMarginMarginLoanV1Resp

func NewGetMarginMarginLoanV1Resp() *GetMarginMarginLoanV1Resp

NewGetMarginMarginLoanV1Resp instantiates a new GetMarginMarginLoanV1Resp 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 NewGetMarginMarginLoanV1RespWithDefaults

func NewGetMarginMarginLoanV1RespWithDefaults() *GetMarginMarginLoanV1Resp

NewGetMarginMarginLoanV1RespWithDefaults instantiates a new GetMarginMarginLoanV1Resp 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 (*GetMarginMarginLoanV1Resp) GetRows

GetRows returns the Rows field value if set, zero value otherwise.

func (*GetMarginMarginLoanV1Resp) GetRowsOk

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

func (*GetMarginMarginLoanV1Resp) GetTotal

func (o *GetMarginMarginLoanV1Resp) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*GetMarginMarginLoanV1Resp) GetTotalOk

func (o *GetMarginMarginLoanV1Resp) GetTotalOk() (*int32, bool)

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

func (*GetMarginMarginLoanV1Resp) HasRows

func (o *GetMarginMarginLoanV1Resp) HasRows() bool

HasRows returns a boolean if a field has been set.

func (*GetMarginMarginLoanV1Resp) HasTotal

func (o *GetMarginMarginLoanV1Resp) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (GetMarginMarginLoanV1Resp) MarshalJSON

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

func (*GetMarginMarginLoanV1Resp) SetRows

SetRows gets a reference to the given []GetMarginMarginLoanV1RespRowsInner and assigns it to the Rows field.

func (*GetMarginMarginLoanV1Resp) SetTotal

func (o *GetMarginMarginLoanV1Resp) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (GetMarginMarginLoanV1Resp) ToMap

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

type GetMarginMarginLoanV1RespRowsInner

type GetMarginMarginLoanV1RespRowsInner struct {
	Asset     *string `json:"asset,omitempty"`
	Principal *string `json:"principal,omitempty"`
	Status    *string `json:"status,omitempty"`
	Timestamp *int64  `json:"timestamp,omitempty"`
	TxId      *int64  `json:"txId,omitempty"`
}

GetMarginMarginLoanV1RespRowsInner struct for GetMarginMarginLoanV1RespRowsInner

func NewGetMarginMarginLoanV1RespRowsInner

func NewGetMarginMarginLoanV1RespRowsInner() *GetMarginMarginLoanV1RespRowsInner

NewGetMarginMarginLoanV1RespRowsInner instantiates a new GetMarginMarginLoanV1RespRowsInner 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 NewGetMarginMarginLoanV1RespRowsInnerWithDefaults

func NewGetMarginMarginLoanV1RespRowsInnerWithDefaults() *GetMarginMarginLoanV1RespRowsInner

NewGetMarginMarginLoanV1RespRowsInnerWithDefaults instantiates a new GetMarginMarginLoanV1RespRowsInner 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 (*GetMarginMarginLoanV1RespRowsInner) GetAsset

GetAsset returns the Asset field value if set, zero value otherwise.

func (*GetMarginMarginLoanV1RespRowsInner) GetAssetOk

func (o *GetMarginMarginLoanV1RespRowsInner) GetAssetOk() (*string, bool)

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

func (*GetMarginMarginLoanV1RespRowsInner) GetPrincipal

func (o *GetMarginMarginLoanV1RespRowsInner) GetPrincipal() string

GetPrincipal returns the Principal field value if set, zero value otherwise.

func (*GetMarginMarginLoanV1RespRowsInner) GetPrincipalOk

func (o *GetMarginMarginLoanV1RespRowsInner) GetPrincipalOk() (*string, bool)

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

func (*GetMarginMarginLoanV1RespRowsInner) GetStatus

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

func (*GetMarginMarginLoanV1RespRowsInner) GetStatusOk

func (o *GetMarginMarginLoanV1RespRowsInner) 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 (*GetMarginMarginLoanV1RespRowsInner) GetTimestamp

func (o *GetMarginMarginLoanV1RespRowsInner) GetTimestamp() int64

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*GetMarginMarginLoanV1RespRowsInner) GetTimestampOk

func (o *GetMarginMarginLoanV1RespRowsInner) GetTimestampOk() (*int64, bool)

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

func (*GetMarginMarginLoanV1RespRowsInner) GetTxId

GetTxId returns the TxId field value if set, zero value otherwise.

func (*GetMarginMarginLoanV1RespRowsInner) GetTxIdOk

func (o *GetMarginMarginLoanV1RespRowsInner) GetTxIdOk() (*int64, bool)

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

func (*GetMarginMarginLoanV1RespRowsInner) HasAsset

HasAsset returns a boolean if a field has been set.

func (*GetMarginMarginLoanV1RespRowsInner) HasPrincipal

func (o *GetMarginMarginLoanV1RespRowsInner) HasPrincipal() bool

HasPrincipal returns a boolean if a field has been set.

func (*GetMarginMarginLoanV1RespRowsInner) HasStatus

HasStatus returns a boolean if a field has been set.

func (*GetMarginMarginLoanV1RespRowsInner) HasTimestamp

func (o *GetMarginMarginLoanV1RespRowsInner) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*GetMarginMarginLoanV1RespRowsInner) HasTxId

HasTxId returns a boolean if a field has been set.

func (GetMarginMarginLoanV1RespRowsInner) MarshalJSON

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

func (*GetMarginMarginLoanV1RespRowsInner) SetAsset

SetAsset gets a reference to the given string and assigns it to the Asset field.

func (*GetMarginMarginLoanV1RespRowsInner) SetPrincipal

func (o *GetMarginMarginLoanV1RespRowsInner) SetPrincipal(v string)

SetPrincipal gets a reference to the given string and assigns it to the Principal field.

func (*GetMarginMarginLoanV1RespRowsInner) SetStatus

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

func (*GetMarginMarginLoanV1RespRowsInner) SetTimestamp

func (o *GetMarginMarginLoanV1RespRowsInner) SetTimestamp(v int64)

SetTimestamp gets a reference to the given int64 and assigns it to the Timestamp field.

func (*GetMarginMarginLoanV1RespRowsInner) SetTxId

SetTxId gets a reference to the given int64 and assigns it to the TxId field.

func (GetMarginMarginLoanV1RespRowsInner) ToMap

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

type GetMarginMaxBorrowableV1Resp

type GetMarginMaxBorrowableV1Resp struct {
	Amount      *float32 `json:"amount,omitempty"`
	BorrowLimit *int32   `json:"borrowLimit,omitempty"`
}

GetMarginMaxBorrowableV1Resp struct for GetMarginMaxBorrowableV1Resp

func NewGetMarginMaxBorrowableV1Resp

func NewGetMarginMaxBorrowableV1Resp() *GetMarginMaxBorrowableV1Resp

NewGetMarginMaxBorrowableV1Resp instantiates a new GetMarginMaxBorrowableV1Resp 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 NewGetMarginMaxBorrowableV1RespWithDefaults

func NewGetMarginMaxBorrowableV1RespWithDefaults() *GetMarginMaxBorrowableV1Resp

NewGetMarginMaxBorrowableV1RespWithDefaults instantiates a new GetMarginMaxBorrowableV1Resp 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 (*GetMarginMaxBorrowableV1Resp) GetAmount

func (o *GetMarginMaxBorrowableV1Resp) GetAmount() float32

GetAmount returns the Amount field value if set, zero value otherwise.

func (*GetMarginMaxBorrowableV1Resp) GetAmountOk

func (o *GetMarginMaxBorrowableV1Resp) GetAmountOk() (*float32, bool)

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

func (*GetMarginMaxBorrowableV1Resp) GetBorrowLimit

func (o *GetMarginMaxBorrowableV1Resp) GetBorrowLimit() int32

GetBorrowLimit returns the BorrowLimit field value if set, zero value otherwise.

func (*GetMarginMaxBorrowableV1Resp) GetBorrowLimitOk

func (o *GetMarginMaxBorrowableV1Resp) GetBorrowLimitOk() (*int32, bool)

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

func (*GetMarginMaxBorrowableV1Resp) HasAmount

func (o *GetMarginMaxBorrowableV1Resp) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*GetMarginMaxBorrowableV1Resp) HasBorrowLimit

func (o *GetMarginMaxBorrowableV1Resp) HasBorrowLimit() bool

HasBorrowLimit returns a boolean if a field has been set.

func (GetMarginMaxBorrowableV1Resp) MarshalJSON

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

func (*GetMarginMaxBorrowableV1Resp) SetAmount

func (o *GetMarginMaxBorrowableV1Resp) SetAmount(v float32)

SetAmount gets a reference to the given float32 and assigns it to the Amount field.

func (*GetMarginMaxBorrowableV1Resp) SetBorrowLimit

func (o *GetMarginMaxBorrowableV1Resp) SetBorrowLimit(v int32)

SetBorrowLimit gets a reference to the given int32 and assigns it to the BorrowLimit field.

func (GetMarginMaxBorrowableV1Resp) ToMap

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

type GetMarginMaxWithdrawV1Resp

type GetMarginMaxWithdrawV1Resp struct {
	Amount *string `json:"amount,omitempty"`
}

GetMarginMaxWithdrawV1Resp struct for GetMarginMaxWithdrawV1Resp

func NewGetMarginMaxWithdrawV1Resp

func NewGetMarginMaxWithdrawV1Resp() *GetMarginMaxWithdrawV1Resp

NewGetMarginMaxWithdrawV1Resp instantiates a new GetMarginMaxWithdrawV1Resp 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 NewGetMarginMaxWithdrawV1RespWithDefaults

func NewGetMarginMaxWithdrawV1RespWithDefaults() *GetMarginMaxWithdrawV1Resp

NewGetMarginMaxWithdrawV1RespWithDefaults instantiates a new GetMarginMaxWithdrawV1Resp 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 (*GetMarginMaxWithdrawV1Resp) GetAmount

func (o *GetMarginMaxWithdrawV1Resp) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*GetMarginMaxWithdrawV1Resp) GetAmountOk

func (o *GetMarginMaxWithdrawV1Resp) GetAmountOk() (*string, bool)

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

func (*GetMarginMaxWithdrawV1Resp) HasAmount

func (o *GetMarginMaxWithdrawV1Resp) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (GetMarginMaxWithdrawV1Resp) MarshalJSON

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

func (*GetMarginMaxWithdrawV1Resp) SetAmount

func (o *GetMarginMaxWithdrawV1Resp) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (GetMarginMaxWithdrawV1Resp) ToMap

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

type GetMarginMyTradesV1RespItem

type GetMarginMyTradesV1RespItem struct {
	Commission      *string `json:"commission,omitempty"`
	CommissionAsset *string `json:"commissionAsset,omitempty"`
	Id              *int32  `json:"id,omitempty"`
	IsBestMatch     *bool   `json:"isBestMatch,omitempty"`
	IsBuyer         *bool   `json:"isBuyer,omitempty"`
	IsMaker         *bool   `json:"isMaker,omitempty"`
	OrderId         *int64  `json:"orderId,omitempty"`
	Price           *string `json:"price,omitempty"`
	Qty             *string `json:"qty,omitempty"`
	Symbol          *string `json:"symbol,omitempty"`
	Time            *int64  `json:"time,omitempty"`
}

GetMarginMyTradesV1RespItem struct for GetMarginMyTradesV1RespItem

func NewGetMarginMyTradesV1RespItem

func NewGetMarginMyTradesV1RespItem() *GetMarginMyTradesV1RespItem

NewGetMarginMyTradesV1RespItem instantiates a new GetMarginMyTradesV1RespItem 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 NewGetMarginMyTradesV1RespItemWithDefaults

func NewGetMarginMyTradesV1RespItemWithDefaults() *GetMarginMyTradesV1RespItem

NewGetMarginMyTradesV1RespItemWithDefaults instantiates a new GetMarginMyTradesV1RespItem 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 (*GetMarginMyTradesV1RespItem) GetCommission

func (o *GetMarginMyTradesV1RespItem) GetCommission() string

GetCommission returns the Commission field value if set, zero value otherwise.

func (*GetMarginMyTradesV1RespItem) GetCommissionAsset

func (o *GetMarginMyTradesV1RespItem) GetCommissionAsset() string

GetCommissionAsset returns the CommissionAsset field value if set, zero value otherwise.

func (*GetMarginMyTradesV1RespItem) GetCommissionAssetOk

func (o *GetMarginMyTradesV1RespItem) GetCommissionAssetOk() (*string, bool)

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

func (*GetMarginMyTradesV1RespItem) GetCommissionOk

func (o *GetMarginMyTradesV1RespItem) GetCommissionOk() (*string, bool)

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

func (*GetMarginMyTradesV1RespItem) GetId

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

func (*GetMarginMyTradesV1RespItem) GetIdOk

func (o *GetMarginMyTradesV1RespItem) GetIdOk() (*int32, 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 (*GetMarginMyTradesV1RespItem) GetIsBestMatch

func (o *GetMarginMyTradesV1RespItem) GetIsBestMatch() bool

GetIsBestMatch returns the IsBestMatch field value if set, zero value otherwise.

func (*GetMarginMyTradesV1RespItem) GetIsBestMatchOk

func (o *GetMarginMyTradesV1RespItem) GetIsBestMatchOk() (*bool, bool)

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

func (*GetMarginMyTradesV1RespItem) GetIsBuyer

func (o *GetMarginMyTradesV1RespItem) GetIsBuyer() bool

GetIsBuyer returns the IsBuyer field value if set, zero value otherwise.

func (*GetMarginMyTradesV1RespItem) GetIsBuyerOk

func (o *GetMarginMyTradesV1RespItem) GetIsBuyerOk() (*bool, bool)

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

func (*GetMarginMyTradesV1RespItem) GetIsMaker

func (o *GetMarginMyTradesV1RespItem) GetIsMaker() bool

GetIsMaker returns the IsMaker field value if set, zero value otherwise.

func (*GetMarginMyTradesV1RespItem) GetIsMakerOk

func (o *GetMarginMyTradesV1RespItem) GetIsMakerOk() (*bool, bool)

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

func (*GetMarginMyTradesV1RespItem) GetOrderId

func (o *GetMarginMyTradesV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetMarginMyTradesV1RespItem) GetOrderIdOk

func (o *GetMarginMyTradesV1RespItem) GetOrderIdOk() (*int64, bool)

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

func (*GetMarginMyTradesV1RespItem) GetPrice

func (o *GetMarginMyTradesV1RespItem) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetMarginMyTradesV1RespItem) GetPriceOk

func (o *GetMarginMyTradesV1RespItem) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginMyTradesV1RespItem) GetQty

func (o *GetMarginMyTradesV1RespItem) GetQty() string

GetQty returns the Qty field value if set, zero value otherwise.

func (*GetMarginMyTradesV1RespItem) GetQtyOk

func (o *GetMarginMyTradesV1RespItem) GetQtyOk() (*string, bool)

GetQtyOk returns a tuple with the Qty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginMyTradesV1RespItem) GetSymbol

func (o *GetMarginMyTradesV1RespItem) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetMarginMyTradesV1RespItem) GetSymbolOk

func (o *GetMarginMyTradesV1RespItem) 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 (*GetMarginMyTradesV1RespItem) GetTime

func (o *GetMarginMyTradesV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetMarginMyTradesV1RespItem) GetTimeOk

func (o *GetMarginMyTradesV1RespItem) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginMyTradesV1RespItem) HasCommission

func (o *GetMarginMyTradesV1RespItem) HasCommission() bool

HasCommission returns a boolean if a field has been set.

func (*GetMarginMyTradesV1RespItem) HasCommissionAsset

func (o *GetMarginMyTradesV1RespItem) HasCommissionAsset() bool

HasCommissionAsset returns a boolean if a field has been set.

func (*GetMarginMyTradesV1RespItem) HasId

func (o *GetMarginMyTradesV1RespItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*GetMarginMyTradesV1RespItem) HasIsBestMatch

func (o *GetMarginMyTradesV1RespItem) HasIsBestMatch() bool

HasIsBestMatch returns a boolean if a field has been set.

func (*GetMarginMyTradesV1RespItem) HasIsBuyer

func (o *GetMarginMyTradesV1RespItem) HasIsBuyer() bool

HasIsBuyer returns a boolean if a field has been set.

func (*GetMarginMyTradesV1RespItem) HasIsMaker

func (o *GetMarginMyTradesV1RespItem) HasIsMaker() bool

HasIsMaker returns a boolean if a field has been set.

func (*GetMarginMyTradesV1RespItem) HasOrderId

func (o *GetMarginMyTradesV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetMarginMyTradesV1RespItem) HasPrice

func (o *GetMarginMyTradesV1RespItem) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetMarginMyTradesV1RespItem) HasQty

func (o *GetMarginMyTradesV1RespItem) HasQty() bool

HasQty returns a boolean if a field has been set.

func (*GetMarginMyTradesV1RespItem) HasSymbol

func (o *GetMarginMyTradesV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetMarginMyTradesV1RespItem) HasTime

func (o *GetMarginMyTradesV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (GetMarginMyTradesV1RespItem) MarshalJSON

func (o GetMarginMyTradesV1RespItem) MarshalJSON() ([]byte, error)

func (*GetMarginMyTradesV1RespItem) SetCommission

func (o *GetMarginMyTradesV1RespItem) SetCommission(v string)

SetCommission gets a reference to the given string and assigns it to the Commission field.

func (*GetMarginMyTradesV1RespItem) SetCommissionAsset

func (o *GetMarginMyTradesV1RespItem) SetCommissionAsset(v string)

SetCommissionAsset gets a reference to the given string and assigns it to the CommissionAsset field.

func (*GetMarginMyTradesV1RespItem) SetId

func (o *GetMarginMyTradesV1RespItem) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*GetMarginMyTradesV1RespItem) SetIsBestMatch

func (o *GetMarginMyTradesV1RespItem) SetIsBestMatch(v bool)

SetIsBestMatch gets a reference to the given bool and assigns it to the IsBestMatch field.

func (*GetMarginMyTradesV1RespItem) SetIsBuyer

func (o *GetMarginMyTradesV1RespItem) SetIsBuyer(v bool)

SetIsBuyer gets a reference to the given bool and assigns it to the IsBuyer field.

func (*GetMarginMyTradesV1RespItem) SetIsMaker

func (o *GetMarginMyTradesV1RespItem) SetIsMaker(v bool)

SetIsMaker gets a reference to the given bool and assigns it to the IsMaker field.

func (*GetMarginMyTradesV1RespItem) SetOrderId

func (o *GetMarginMyTradesV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetMarginMyTradesV1RespItem) SetPrice

func (o *GetMarginMyTradesV1RespItem) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetMarginMyTradesV1RespItem) SetQty

func (o *GetMarginMyTradesV1RespItem) SetQty(v string)

SetQty gets a reference to the given string and assigns it to the Qty field.

func (*GetMarginMyTradesV1RespItem) SetSymbol

func (o *GetMarginMyTradesV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetMarginMyTradesV1RespItem) SetTime

func (o *GetMarginMyTradesV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (GetMarginMyTradesV1RespItem) ToMap

func (o GetMarginMyTradesV1RespItem) ToMap() (map[string]interface{}, error)

type GetMarginOpenOrderListV1RespItem

type GetMarginOpenOrderListV1RespItem struct {
	ContingencyType   *string                                 `json:"contingencyType,omitempty"`
	ListClientOrderId *string                                 `json:"listClientOrderId,omitempty"`
	ListOrderStatus   *string                                 `json:"listOrderStatus,omitempty"`
	ListStatusType    *string                                 `json:"listStatusType,omitempty"`
	OrderListId       *int64                                  `json:"orderListId,omitempty"`
	Orders            []CreateMarginOrderOcoV1RespOrdersInner `json:"orders,omitempty"`
	Symbol            *string                                 `json:"symbol,omitempty"`
	TransactionTime   *int64                                  `json:"transactionTime,omitempty"`
}

GetMarginOpenOrderListV1RespItem struct for GetMarginOpenOrderListV1RespItem

func NewGetMarginOpenOrderListV1RespItem

func NewGetMarginOpenOrderListV1RespItem() *GetMarginOpenOrderListV1RespItem

NewGetMarginOpenOrderListV1RespItem instantiates a new GetMarginOpenOrderListV1RespItem 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 NewGetMarginOpenOrderListV1RespItemWithDefaults

func NewGetMarginOpenOrderListV1RespItemWithDefaults() *GetMarginOpenOrderListV1RespItem

NewGetMarginOpenOrderListV1RespItemWithDefaults instantiates a new GetMarginOpenOrderListV1RespItem 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 (*GetMarginOpenOrderListV1RespItem) GetContingencyType

func (o *GetMarginOpenOrderListV1RespItem) GetContingencyType() string

GetContingencyType returns the ContingencyType field value if set, zero value otherwise.

func (*GetMarginOpenOrderListV1RespItem) GetContingencyTypeOk

func (o *GetMarginOpenOrderListV1RespItem) GetContingencyTypeOk() (*string, bool)

GetContingencyTypeOk returns a tuple with the ContingencyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrderListV1RespItem) GetListClientOrderId

func (o *GetMarginOpenOrderListV1RespItem) GetListClientOrderId() string

GetListClientOrderId returns the ListClientOrderId field value if set, zero value otherwise.

func (*GetMarginOpenOrderListV1RespItem) GetListClientOrderIdOk

func (o *GetMarginOpenOrderListV1RespItem) GetListClientOrderIdOk() (*string, bool)

GetListClientOrderIdOk returns a tuple with the ListClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrderListV1RespItem) GetListOrderStatus

func (o *GetMarginOpenOrderListV1RespItem) GetListOrderStatus() string

GetListOrderStatus returns the ListOrderStatus field value if set, zero value otherwise.

func (*GetMarginOpenOrderListV1RespItem) GetListOrderStatusOk

func (o *GetMarginOpenOrderListV1RespItem) GetListOrderStatusOk() (*string, bool)

GetListOrderStatusOk returns a tuple with the ListOrderStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrderListV1RespItem) GetListStatusType

func (o *GetMarginOpenOrderListV1RespItem) GetListStatusType() string

GetListStatusType returns the ListStatusType field value if set, zero value otherwise.

func (*GetMarginOpenOrderListV1RespItem) GetListStatusTypeOk

func (o *GetMarginOpenOrderListV1RespItem) GetListStatusTypeOk() (*string, bool)

GetListStatusTypeOk returns a tuple with the ListStatusType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrderListV1RespItem) GetOrderListId

func (o *GetMarginOpenOrderListV1RespItem) GetOrderListId() int64

GetOrderListId returns the OrderListId field value if set, zero value otherwise.

func (*GetMarginOpenOrderListV1RespItem) GetOrderListIdOk

func (o *GetMarginOpenOrderListV1RespItem) GetOrderListIdOk() (*int64, bool)

GetOrderListIdOk returns a tuple with the OrderListId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrderListV1RespItem) GetOrders

GetOrders returns the Orders field value if set, zero value otherwise.

func (*GetMarginOpenOrderListV1RespItem) GetOrdersOk

GetOrdersOk returns a tuple with the Orders field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrderListV1RespItem) GetSymbol

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetMarginOpenOrderListV1RespItem) GetSymbolOk

func (o *GetMarginOpenOrderListV1RespItem) 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 (*GetMarginOpenOrderListV1RespItem) GetTransactionTime

func (o *GetMarginOpenOrderListV1RespItem) GetTransactionTime() int64

GetTransactionTime returns the TransactionTime field value if set, zero value otherwise.

func (*GetMarginOpenOrderListV1RespItem) GetTransactionTimeOk

func (o *GetMarginOpenOrderListV1RespItem) GetTransactionTimeOk() (*int64, bool)

GetTransactionTimeOk returns a tuple with the TransactionTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrderListV1RespItem) HasContingencyType

func (o *GetMarginOpenOrderListV1RespItem) HasContingencyType() bool

HasContingencyType returns a boolean if a field has been set.

func (*GetMarginOpenOrderListV1RespItem) HasListClientOrderId

func (o *GetMarginOpenOrderListV1RespItem) HasListClientOrderId() bool

HasListClientOrderId returns a boolean if a field has been set.

func (*GetMarginOpenOrderListV1RespItem) HasListOrderStatus

func (o *GetMarginOpenOrderListV1RespItem) HasListOrderStatus() bool

HasListOrderStatus returns a boolean if a field has been set.

func (*GetMarginOpenOrderListV1RespItem) HasListStatusType

func (o *GetMarginOpenOrderListV1RespItem) HasListStatusType() bool

HasListStatusType returns a boolean if a field has been set.

func (*GetMarginOpenOrderListV1RespItem) HasOrderListId

func (o *GetMarginOpenOrderListV1RespItem) HasOrderListId() bool

HasOrderListId returns a boolean if a field has been set.

func (*GetMarginOpenOrderListV1RespItem) HasOrders

func (o *GetMarginOpenOrderListV1RespItem) HasOrders() bool

HasOrders returns a boolean if a field has been set.

func (*GetMarginOpenOrderListV1RespItem) HasSymbol

func (o *GetMarginOpenOrderListV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetMarginOpenOrderListV1RespItem) HasTransactionTime

func (o *GetMarginOpenOrderListV1RespItem) HasTransactionTime() bool

HasTransactionTime returns a boolean if a field has been set.

func (GetMarginOpenOrderListV1RespItem) MarshalJSON

func (o GetMarginOpenOrderListV1RespItem) MarshalJSON() ([]byte, error)

func (*GetMarginOpenOrderListV1RespItem) SetContingencyType

func (o *GetMarginOpenOrderListV1RespItem) SetContingencyType(v string)

SetContingencyType gets a reference to the given string and assigns it to the ContingencyType field.

func (*GetMarginOpenOrderListV1RespItem) SetListClientOrderId

func (o *GetMarginOpenOrderListV1RespItem) SetListClientOrderId(v string)

SetListClientOrderId gets a reference to the given string and assigns it to the ListClientOrderId field.

func (*GetMarginOpenOrderListV1RespItem) SetListOrderStatus

func (o *GetMarginOpenOrderListV1RespItem) SetListOrderStatus(v string)

SetListOrderStatus gets a reference to the given string and assigns it to the ListOrderStatus field.

func (*GetMarginOpenOrderListV1RespItem) SetListStatusType

func (o *GetMarginOpenOrderListV1RespItem) SetListStatusType(v string)

SetListStatusType gets a reference to the given string and assigns it to the ListStatusType field.

func (*GetMarginOpenOrderListV1RespItem) SetOrderListId

func (o *GetMarginOpenOrderListV1RespItem) SetOrderListId(v int64)

SetOrderListId gets a reference to the given int64 and assigns it to the OrderListId field.

func (*GetMarginOpenOrderListV1RespItem) SetOrders

SetOrders gets a reference to the given []CreateMarginOrderOcoV1RespOrdersInner and assigns it to the Orders field.

func (*GetMarginOpenOrderListV1RespItem) SetSymbol

func (o *GetMarginOpenOrderListV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetMarginOpenOrderListV1RespItem) SetTransactionTime

func (o *GetMarginOpenOrderListV1RespItem) SetTransactionTime(v int64)

SetTransactionTime gets a reference to the given int64 and assigns it to the TransactionTime field.

func (GetMarginOpenOrderListV1RespItem) ToMap

func (o GetMarginOpenOrderListV1RespItem) ToMap() (map[string]interface{}, error)

type GetMarginOpenOrdersV1RespItem

type GetMarginOpenOrdersV1RespItem struct {
	AccountId               *int64                 `json:"accountId,omitempty"`
	ClientOrderId           *string                `json:"clientOrderId,omitempty"`
	CummulativeQuoteQty     *string                `json:"cummulativeQuoteQty,omitempty"`
	ExecutedQty             *string                `json:"executedQty,omitempty"`
	IcebergQty              *string                `json:"icebergQty,omitempty"`
	IsWorking               *bool                  `json:"isWorking,omitempty"`
	OrderId                 *int64                 `json:"orderId,omitempty"`
	OrigQty                 *string                `json:"origQty,omitempty"`
	PreventedMatchId        map[string]interface{} `json:"preventedMatchId,omitempty"`
	PreventedQuantity       map[string]interface{} `json:"preventedQuantity,omitempty"`
	Price                   *string                `json:"price,omitempty"`
	SelfTradePreventionMode *string                `json:"selfTradePreventionMode,omitempty"`
	Side                    *string                `json:"side,omitempty"`
	Status                  *string                `json:"status,omitempty"`
	StopPrice               *string                `json:"stopPrice,omitempty"`
	Symbol                  *string                `json:"symbol,omitempty"`
	Time                    *int64                 `json:"time,omitempty"`
	TimeInForce             *string                `json:"timeInForce,omitempty"`
	Type                    *string                `json:"type,omitempty"`
	UpdateTime              *int64                 `json:"updateTime,omitempty"`
}

GetMarginOpenOrdersV1RespItem struct for GetMarginOpenOrdersV1RespItem

func NewGetMarginOpenOrdersV1RespItem

func NewGetMarginOpenOrdersV1RespItem() *GetMarginOpenOrdersV1RespItem

NewGetMarginOpenOrdersV1RespItem instantiates a new GetMarginOpenOrdersV1RespItem 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 NewGetMarginOpenOrdersV1RespItemWithDefaults

func NewGetMarginOpenOrdersV1RespItemWithDefaults() *GetMarginOpenOrdersV1RespItem

NewGetMarginOpenOrdersV1RespItemWithDefaults instantiates a new GetMarginOpenOrdersV1RespItem 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 (*GetMarginOpenOrdersV1RespItem) GetAccountId

func (o *GetMarginOpenOrdersV1RespItem) GetAccountId() int64

GetAccountId returns the AccountId field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetAccountIdOk

func (o *GetMarginOpenOrdersV1RespItem) GetAccountIdOk() (*int64, bool)

GetAccountIdOk returns a tuple with the AccountId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetClientOrderId

func (o *GetMarginOpenOrdersV1RespItem) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetClientOrderIdOk

func (o *GetMarginOpenOrdersV1RespItem) GetClientOrderIdOk() (*string, bool)

GetClientOrderIdOk returns a tuple with the ClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetCummulativeQuoteQty

func (o *GetMarginOpenOrdersV1RespItem) GetCummulativeQuoteQty() string

GetCummulativeQuoteQty returns the CummulativeQuoteQty field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetCummulativeQuoteQtyOk

func (o *GetMarginOpenOrdersV1RespItem) GetCummulativeQuoteQtyOk() (*string, bool)

GetCummulativeQuoteQtyOk returns a tuple with the CummulativeQuoteQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetExecutedQty

func (o *GetMarginOpenOrdersV1RespItem) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetExecutedQtyOk

func (o *GetMarginOpenOrdersV1RespItem) GetExecutedQtyOk() (*string, bool)

GetExecutedQtyOk returns a tuple with the ExecutedQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetIcebergQty

func (o *GetMarginOpenOrdersV1RespItem) GetIcebergQty() string

GetIcebergQty returns the IcebergQty field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetIcebergQtyOk

func (o *GetMarginOpenOrdersV1RespItem) GetIcebergQtyOk() (*string, bool)

GetIcebergQtyOk returns a tuple with the IcebergQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetIsWorking

func (o *GetMarginOpenOrdersV1RespItem) GetIsWorking() bool

GetIsWorking returns the IsWorking field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetIsWorkingOk

func (o *GetMarginOpenOrdersV1RespItem) GetIsWorkingOk() (*bool, bool)

GetIsWorkingOk returns a tuple with the IsWorking field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetOrderId

func (o *GetMarginOpenOrdersV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetOrderIdOk

func (o *GetMarginOpenOrdersV1RespItem) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetOrigQty

func (o *GetMarginOpenOrdersV1RespItem) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetOrigQtyOk

func (o *GetMarginOpenOrdersV1RespItem) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetPreventedMatchId

func (o *GetMarginOpenOrdersV1RespItem) GetPreventedMatchId() map[string]interface{}

GetPreventedMatchId returns the PreventedMatchId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GetMarginOpenOrdersV1RespItem) GetPreventedMatchIdOk

func (o *GetMarginOpenOrdersV1RespItem) GetPreventedMatchIdOk() (map[string]interface{}, bool)

GetPreventedMatchIdOk returns a tuple with the PreventedMatchId 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 (*GetMarginOpenOrdersV1RespItem) GetPreventedQuantity

func (o *GetMarginOpenOrdersV1RespItem) GetPreventedQuantity() map[string]interface{}

GetPreventedQuantity returns the PreventedQuantity field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GetMarginOpenOrdersV1RespItem) GetPreventedQuantityOk

func (o *GetMarginOpenOrdersV1RespItem) GetPreventedQuantityOk() (map[string]interface{}, bool)

GetPreventedQuantityOk returns a tuple with the PreventedQuantity 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 (*GetMarginOpenOrdersV1RespItem) GetPrice

func (o *GetMarginOpenOrdersV1RespItem) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetPriceOk

func (o *GetMarginOpenOrdersV1RespItem) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetSelfTradePreventionMode

func (o *GetMarginOpenOrdersV1RespItem) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetSelfTradePreventionModeOk

func (o *GetMarginOpenOrdersV1RespItem) GetSelfTradePreventionModeOk() (*string, bool)

GetSelfTradePreventionModeOk returns a tuple with the SelfTradePreventionMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetSideOk

func (o *GetMarginOpenOrdersV1RespItem) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetStatus

func (o *GetMarginOpenOrdersV1RespItem) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetStatusOk

func (o *GetMarginOpenOrdersV1RespItem) 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 (*GetMarginOpenOrdersV1RespItem) GetStopPrice

func (o *GetMarginOpenOrdersV1RespItem) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetStopPriceOk

func (o *GetMarginOpenOrdersV1RespItem) GetStopPriceOk() (*string, bool)

GetStopPriceOk returns a tuple with the StopPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetSymbol

func (o *GetMarginOpenOrdersV1RespItem) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetSymbolOk

func (o *GetMarginOpenOrdersV1RespItem) 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 (*GetMarginOpenOrdersV1RespItem) GetTime

func (o *GetMarginOpenOrdersV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetTimeInForce

func (o *GetMarginOpenOrdersV1RespItem) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetTimeInForceOk

func (o *GetMarginOpenOrdersV1RespItem) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetTimeOk

func (o *GetMarginOpenOrdersV1RespItem) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetTypeOk

func (o *GetMarginOpenOrdersV1RespItem) 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 (*GetMarginOpenOrdersV1RespItem) GetUpdateTime

func (o *GetMarginOpenOrdersV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetMarginOpenOrdersV1RespItem) GetUpdateTimeOk

func (o *GetMarginOpenOrdersV1RespItem) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOpenOrdersV1RespItem) HasAccountId

func (o *GetMarginOpenOrdersV1RespItem) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasClientOrderId

func (o *GetMarginOpenOrdersV1RespItem) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasCummulativeQuoteQty

func (o *GetMarginOpenOrdersV1RespItem) HasCummulativeQuoteQty() bool

HasCummulativeQuoteQty returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasExecutedQty

func (o *GetMarginOpenOrdersV1RespItem) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasIcebergQty

func (o *GetMarginOpenOrdersV1RespItem) HasIcebergQty() bool

HasIcebergQty returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasIsWorking

func (o *GetMarginOpenOrdersV1RespItem) HasIsWorking() bool

HasIsWorking returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasOrderId

func (o *GetMarginOpenOrdersV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasOrigQty

func (o *GetMarginOpenOrdersV1RespItem) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasPreventedMatchId

func (o *GetMarginOpenOrdersV1RespItem) HasPreventedMatchId() bool

HasPreventedMatchId returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasPreventedQuantity

func (o *GetMarginOpenOrdersV1RespItem) HasPreventedQuantity() bool

HasPreventedQuantity returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasPrice

func (o *GetMarginOpenOrdersV1RespItem) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasSelfTradePreventionMode

func (o *GetMarginOpenOrdersV1RespItem) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasSide

func (o *GetMarginOpenOrdersV1RespItem) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasStatus

func (o *GetMarginOpenOrdersV1RespItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasStopPrice

func (o *GetMarginOpenOrdersV1RespItem) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasSymbol

func (o *GetMarginOpenOrdersV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasTime

func (o *GetMarginOpenOrdersV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasTimeInForce

func (o *GetMarginOpenOrdersV1RespItem) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasType

func (o *GetMarginOpenOrdersV1RespItem) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetMarginOpenOrdersV1RespItem) HasUpdateTime

func (o *GetMarginOpenOrdersV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetMarginOpenOrdersV1RespItem) MarshalJSON

func (o GetMarginOpenOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*GetMarginOpenOrdersV1RespItem) SetAccountId

func (o *GetMarginOpenOrdersV1RespItem) SetAccountId(v int64)

SetAccountId gets a reference to the given int64 and assigns it to the AccountId field.

func (*GetMarginOpenOrdersV1RespItem) SetClientOrderId

func (o *GetMarginOpenOrdersV1RespItem) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetMarginOpenOrdersV1RespItem) SetCummulativeQuoteQty

func (o *GetMarginOpenOrdersV1RespItem) SetCummulativeQuoteQty(v string)

SetCummulativeQuoteQty gets a reference to the given string and assigns it to the CummulativeQuoteQty field.

func (*GetMarginOpenOrdersV1RespItem) SetExecutedQty

func (o *GetMarginOpenOrdersV1RespItem) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetMarginOpenOrdersV1RespItem) SetIcebergQty

func (o *GetMarginOpenOrdersV1RespItem) SetIcebergQty(v string)

SetIcebergQty gets a reference to the given string and assigns it to the IcebergQty field.

func (*GetMarginOpenOrdersV1RespItem) SetIsWorking

func (o *GetMarginOpenOrdersV1RespItem) SetIsWorking(v bool)

SetIsWorking gets a reference to the given bool and assigns it to the IsWorking field.

func (*GetMarginOpenOrdersV1RespItem) SetOrderId

func (o *GetMarginOpenOrdersV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetMarginOpenOrdersV1RespItem) SetOrigQty

func (o *GetMarginOpenOrdersV1RespItem) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetMarginOpenOrdersV1RespItem) SetPreventedMatchId

func (o *GetMarginOpenOrdersV1RespItem) SetPreventedMatchId(v map[string]interface{})

SetPreventedMatchId gets a reference to the given map[string]interface{} and assigns it to the PreventedMatchId field.

func (*GetMarginOpenOrdersV1RespItem) SetPreventedQuantity

func (o *GetMarginOpenOrdersV1RespItem) SetPreventedQuantity(v map[string]interface{})

SetPreventedQuantity gets a reference to the given map[string]interface{} and assigns it to the PreventedQuantity field.

func (*GetMarginOpenOrdersV1RespItem) SetPrice

func (o *GetMarginOpenOrdersV1RespItem) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetMarginOpenOrdersV1RespItem) SetSelfTradePreventionMode

func (o *GetMarginOpenOrdersV1RespItem) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*GetMarginOpenOrdersV1RespItem) SetSide

func (o *GetMarginOpenOrdersV1RespItem) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetMarginOpenOrdersV1RespItem) SetStatus

func (o *GetMarginOpenOrdersV1RespItem) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetMarginOpenOrdersV1RespItem) SetStopPrice

func (o *GetMarginOpenOrdersV1RespItem) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*GetMarginOpenOrdersV1RespItem) SetSymbol

func (o *GetMarginOpenOrdersV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetMarginOpenOrdersV1RespItem) SetTime

func (o *GetMarginOpenOrdersV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetMarginOpenOrdersV1RespItem) SetTimeInForce

func (o *GetMarginOpenOrdersV1RespItem) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetMarginOpenOrdersV1RespItem) SetType

func (o *GetMarginOpenOrdersV1RespItem) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetMarginOpenOrdersV1RespItem) SetUpdateTime

func (o *GetMarginOpenOrdersV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetMarginOpenOrdersV1RespItem) ToMap

func (o GetMarginOpenOrdersV1RespItem) ToMap() (map[string]interface{}, error)

type GetMarginOrderListV1Resp

type GetMarginOrderListV1Resp struct {
	ContingencyType   *string                                 `json:"contingencyType,omitempty"`
	ListClientOrderId *string                                 `json:"listClientOrderId,omitempty"`
	ListOrderStatus   *string                                 `json:"listOrderStatus,omitempty"`
	ListStatusType    *string                                 `json:"listStatusType,omitempty"`
	OrderListId       *int64                                  `json:"orderListId,omitempty"`
	Orders            []CreateMarginOrderOcoV1RespOrdersInner `json:"orders,omitempty"`
	Symbol            *string                                 `json:"symbol,omitempty"`
	TransactionTime   *int64                                  `json:"transactionTime,omitempty"`
}

GetMarginOrderListV1Resp struct for GetMarginOrderListV1Resp

func NewGetMarginOrderListV1Resp

func NewGetMarginOrderListV1Resp() *GetMarginOrderListV1Resp

NewGetMarginOrderListV1Resp instantiates a new GetMarginOrderListV1Resp 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 NewGetMarginOrderListV1RespWithDefaults

func NewGetMarginOrderListV1RespWithDefaults() *GetMarginOrderListV1Resp

NewGetMarginOrderListV1RespWithDefaults instantiates a new GetMarginOrderListV1Resp 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 (*GetMarginOrderListV1Resp) GetContingencyType

func (o *GetMarginOrderListV1Resp) GetContingencyType() string

GetContingencyType returns the ContingencyType field value if set, zero value otherwise.

func (*GetMarginOrderListV1Resp) GetContingencyTypeOk

func (o *GetMarginOrderListV1Resp) GetContingencyTypeOk() (*string, bool)

GetContingencyTypeOk returns a tuple with the ContingencyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderListV1Resp) GetListClientOrderId

func (o *GetMarginOrderListV1Resp) GetListClientOrderId() string

GetListClientOrderId returns the ListClientOrderId field value if set, zero value otherwise.

func (*GetMarginOrderListV1Resp) GetListClientOrderIdOk

func (o *GetMarginOrderListV1Resp) GetListClientOrderIdOk() (*string, bool)

GetListClientOrderIdOk returns a tuple with the ListClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderListV1Resp) GetListOrderStatus

func (o *GetMarginOrderListV1Resp) GetListOrderStatus() string

GetListOrderStatus returns the ListOrderStatus field value if set, zero value otherwise.

func (*GetMarginOrderListV1Resp) GetListOrderStatusOk

func (o *GetMarginOrderListV1Resp) GetListOrderStatusOk() (*string, bool)

GetListOrderStatusOk returns a tuple with the ListOrderStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderListV1Resp) GetListStatusType

func (o *GetMarginOrderListV1Resp) GetListStatusType() string

GetListStatusType returns the ListStatusType field value if set, zero value otherwise.

func (*GetMarginOrderListV1Resp) GetListStatusTypeOk

func (o *GetMarginOrderListV1Resp) GetListStatusTypeOk() (*string, bool)

GetListStatusTypeOk returns a tuple with the ListStatusType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderListV1Resp) GetOrderListId

func (o *GetMarginOrderListV1Resp) GetOrderListId() int64

GetOrderListId returns the OrderListId field value if set, zero value otherwise.

func (*GetMarginOrderListV1Resp) GetOrderListIdOk

func (o *GetMarginOrderListV1Resp) GetOrderListIdOk() (*int64, bool)

GetOrderListIdOk returns a tuple with the OrderListId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderListV1Resp) GetOrders

GetOrders returns the Orders field value if set, zero value otherwise.

func (*GetMarginOrderListV1Resp) GetOrdersOk

GetOrdersOk returns a tuple with the Orders field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderListV1Resp) GetSymbol

func (o *GetMarginOrderListV1Resp) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetMarginOrderListV1Resp) GetSymbolOk

func (o *GetMarginOrderListV1Resp) 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 (*GetMarginOrderListV1Resp) GetTransactionTime

func (o *GetMarginOrderListV1Resp) GetTransactionTime() int64

GetTransactionTime returns the TransactionTime field value if set, zero value otherwise.

func (*GetMarginOrderListV1Resp) GetTransactionTimeOk

func (o *GetMarginOrderListV1Resp) GetTransactionTimeOk() (*int64, bool)

GetTransactionTimeOk returns a tuple with the TransactionTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderListV1Resp) HasContingencyType

func (o *GetMarginOrderListV1Resp) HasContingencyType() bool

HasContingencyType returns a boolean if a field has been set.

func (*GetMarginOrderListV1Resp) HasListClientOrderId

func (o *GetMarginOrderListV1Resp) HasListClientOrderId() bool

HasListClientOrderId returns a boolean if a field has been set.

func (*GetMarginOrderListV1Resp) HasListOrderStatus

func (o *GetMarginOrderListV1Resp) HasListOrderStatus() bool

HasListOrderStatus returns a boolean if a field has been set.

func (*GetMarginOrderListV1Resp) HasListStatusType

func (o *GetMarginOrderListV1Resp) HasListStatusType() bool

HasListStatusType returns a boolean if a field has been set.

func (*GetMarginOrderListV1Resp) HasOrderListId

func (o *GetMarginOrderListV1Resp) HasOrderListId() bool

HasOrderListId returns a boolean if a field has been set.

func (*GetMarginOrderListV1Resp) HasOrders

func (o *GetMarginOrderListV1Resp) HasOrders() bool

HasOrders returns a boolean if a field has been set.

func (*GetMarginOrderListV1Resp) HasSymbol

func (o *GetMarginOrderListV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetMarginOrderListV1Resp) HasTransactionTime

func (o *GetMarginOrderListV1Resp) HasTransactionTime() bool

HasTransactionTime returns a boolean if a field has been set.

func (GetMarginOrderListV1Resp) MarshalJSON

func (o GetMarginOrderListV1Resp) MarshalJSON() ([]byte, error)

func (*GetMarginOrderListV1Resp) SetContingencyType

func (o *GetMarginOrderListV1Resp) SetContingencyType(v string)

SetContingencyType gets a reference to the given string and assigns it to the ContingencyType field.

func (*GetMarginOrderListV1Resp) SetListClientOrderId

func (o *GetMarginOrderListV1Resp) SetListClientOrderId(v string)

SetListClientOrderId gets a reference to the given string and assigns it to the ListClientOrderId field.

func (*GetMarginOrderListV1Resp) SetListOrderStatus

func (o *GetMarginOrderListV1Resp) SetListOrderStatus(v string)

SetListOrderStatus gets a reference to the given string and assigns it to the ListOrderStatus field.

func (*GetMarginOrderListV1Resp) SetListStatusType

func (o *GetMarginOrderListV1Resp) SetListStatusType(v string)

SetListStatusType gets a reference to the given string and assigns it to the ListStatusType field.

func (*GetMarginOrderListV1Resp) SetOrderListId

func (o *GetMarginOrderListV1Resp) SetOrderListId(v int64)

SetOrderListId gets a reference to the given int64 and assigns it to the OrderListId field.

func (*GetMarginOrderListV1Resp) SetOrders

SetOrders gets a reference to the given []CreateMarginOrderOcoV1RespOrdersInner and assigns it to the Orders field.

func (*GetMarginOrderListV1Resp) SetSymbol

func (o *GetMarginOrderListV1Resp) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetMarginOrderListV1Resp) SetTransactionTime

func (o *GetMarginOrderListV1Resp) SetTransactionTime(v int64)

SetTransactionTime gets a reference to the given int64 and assigns it to the TransactionTime field.

func (GetMarginOrderListV1Resp) ToMap

func (o GetMarginOrderListV1Resp) ToMap() (map[string]interface{}, error)

type GetMarginOrderV1Resp

type GetMarginOrderV1Resp struct {
	AccountId               *int64                 `json:"accountId,omitempty"`
	ClientOrderId           *string                `json:"clientOrderId,omitempty"`
	CummulativeQuoteQty     *string                `json:"cummulativeQuoteQty,omitempty"`
	ExecutedQty             *string                `json:"executedQty,omitempty"`
	IcebergQty              *string                `json:"icebergQty,omitempty"`
	IsWorking               *bool                  `json:"isWorking,omitempty"`
	OrderId                 *int64                 `json:"orderId,omitempty"`
	OrigQty                 *string                `json:"origQty,omitempty"`
	PreventedMatchId        map[string]interface{} `json:"preventedMatchId,omitempty"`
	PreventedQuantity       map[string]interface{} `json:"preventedQuantity,omitempty"`
	Price                   *string                `json:"price,omitempty"`
	SelfTradePreventionMode *string                `json:"selfTradePreventionMode,omitempty"`
	Side                    *string                `json:"side,omitempty"`
	Status                  *string                `json:"status,omitempty"`
	StopPrice               *string                `json:"stopPrice,omitempty"`
	Symbol                  *string                `json:"symbol,omitempty"`
	Time                    *int64                 `json:"time,omitempty"`
	TimeInForce             *string                `json:"timeInForce,omitempty"`
	Type                    *string                `json:"type,omitempty"`
	UpdateTime              *int64                 `json:"updateTime,omitempty"`
}

GetMarginOrderV1Resp struct for GetMarginOrderV1Resp

func NewGetMarginOrderV1Resp

func NewGetMarginOrderV1Resp() *GetMarginOrderV1Resp

NewGetMarginOrderV1Resp instantiates a new GetMarginOrderV1Resp 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 NewGetMarginOrderV1RespWithDefaults

func NewGetMarginOrderV1RespWithDefaults() *GetMarginOrderV1Resp

NewGetMarginOrderV1RespWithDefaults instantiates a new GetMarginOrderV1Resp 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 (*GetMarginOrderV1Resp) GetAccountId

func (o *GetMarginOrderV1Resp) GetAccountId() int64

GetAccountId returns the AccountId field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetAccountIdOk

func (o *GetMarginOrderV1Resp) GetAccountIdOk() (*int64, bool)

GetAccountIdOk returns a tuple with the AccountId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetClientOrderId

func (o *GetMarginOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetClientOrderIdOk

func (o *GetMarginOrderV1Resp) GetClientOrderIdOk() (*string, bool)

GetClientOrderIdOk returns a tuple with the ClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetCummulativeQuoteQty

func (o *GetMarginOrderV1Resp) GetCummulativeQuoteQty() string

GetCummulativeQuoteQty returns the CummulativeQuoteQty field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetCummulativeQuoteQtyOk

func (o *GetMarginOrderV1Resp) GetCummulativeQuoteQtyOk() (*string, bool)

GetCummulativeQuoteQtyOk returns a tuple with the CummulativeQuoteQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetExecutedQty

func (o *GetMarginOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetExecutedQtyOk

func (o *GetMarginOrderV1Resp) GetExecutedQtyOk() (*string, bool)

GetExecutedQtyOk returns a tuple with the ExecutedQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetIcebergQty

func (o *GetMarginOrderV1Resp) GetIcebergQty() string

GetIcebergQty returns the IcebergQty field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetIcebergQtyOk

func (o *GetMarginOrderV1Resp) GetIcebergQtyOk() (*string, bool)

GetIcebergQtyOk returns a tuple with the IcebergQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetIsWorking

func (o *GetMarginOrderV1Resp) GetIsWorking() bool

GetIsWorking returns the IsWorking field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetIsWorkingOk

func (o *GetMarginOrderV1Resp) GetIsWorkingOk() (*bool, bool)

GetIsWorkingOk returns a tuple with the IsWorking field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetOrderId

func (o *GetMarginOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetOrderIdOk

func (o *GetMarginOrderV1Resp) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetOrigQty

func (o *GetMarginOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetOrigQtyOk

func (o *GetMarginOrderV1Resp) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetPreventedMatchId

func (o *GetMarginOrderV1Resp) GetPreventedMatchId() map[string]interface{}

GetPreventedMatchId returns the PreventedMatchId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GetMarginOrderV1Resp) GetPreventedMatchIdOk

func (o *GetMarginOrderV1Resp) GetPreventedMatchIdOk() (map[string]interface{}, bool)

GetPreventedMatchIdOk returns a tuple with the PreventedMatchId 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 (*GetMarginOrderV1Resp) GetPreventedQuantity

func (o *GetMarginOrderV1Resp) GetPreventedQuantity() map[string]interface{}

GetPreventedQuantity returns the PreventedQuantity field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GetMarginOrderV1Resp) GetPreventedQuantityOk

func (o *GetMarginOrderV1Resp) GetPreventedQuantityOk() (map[string]interface{}, bool)

GetPreventedQuantityOk returns a tuple with the PreventedQuantity 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 (*GetMarginOrderV1Resp) GetPrice

func (o *GetMarginOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetPriceOk

func (o *GetMarginOrderV1Resp) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetSelfTradePreventionMode

func (o *GetMarginOrderV1Resp) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetSelfTradePreventionModeOk

func (o *GetMarginOrderV1Resp) GetSelfTradePreventionModeOk() (*string, bool)

GetSelfTradePreventionModeOk returns a tuple with the SelfTradePreventionMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetSide

func (o *GetMarginOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetSideOk

func (o *GetMarginOrderV1Resp) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetStatus

func (o *GetMarginOrderV1Resp) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetStatusOk

func (o *GetMarginOrderV1Resp) 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 (*GetMarginOrderV1Resp) GetStopPrice

func (o *GetMarginOrderV1Resp) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetStopPriceOk

func (o *GetMarginOrderV1Resp) GetStopPriceOk() (*string, bool)

GetStopPriceOk returns a tuple with the StopPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetSymbol

func (o *GetMarginOrderV1Resp) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetSymbolOk

func (o *GetMarginOrderV1Resp) 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 (*GetMarginOrderV1Resp) GetTime

func (o *GetMarginOrderV1Resp) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetTimeInForce

func (o *GetMarginOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetTimeInForceOk

func (o *GetMarginOrderV1Resp) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetTimeOk

func (o *GetMarginOrderV1Resp) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) GetType

func (o *GetMarginOrderV1Resp) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetTypeOk

func (o *GetMarginOrderV1Resp) 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 (*GetMarginOrderV1Resp) GetUpdateTime

func (o *GetMarginOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetMarginOrderV1Resp) GetUpdateTimeOk

func (o *GetMarginOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginOrderV1Resp) HasAccountId

func (o *GetMarginOrderV1Resp) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasClientOrderId

func (o *GetMarginOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasCummulativeQuoteQty

func (o *GetMarginOrderV1Resp) HasCummulativeQuoteQty() bool

HasCummulativeQuoteQty returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasExecutedQty

func (o *GetMarginOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasIcebergQty

func (o *GetMarginOrderV1Resp) HasIcebergQty() bool

HasIcebergQty returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasIsWorking

func (o *GetMarginOrderV1Resp) HasIsWorking() bool

HasIsWorking returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasOrderId

func (o *GetMarginOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasOrigQty

func (o *GetMarginOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasPreventedMatchId

func (o *GetMarginOrderV1Resp) HasPreventedMatchId() bool

HasPreventedMatchId returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasPreventedQuantity

func (o *GetMarginOrderV1Resp) HasPreventedQuantity() bool

HasPreventedQuantity returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasPrice

func (o *GetMarginOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasSelfTradePreventionMode

func (o *GetMarginOrderV1Resp) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasSide

func (o *GetMarginOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasStatus

func (o *GetMarginOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasStopPrice

func (o *GetMarginOrderV1Resp) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasSymbol

func (o *GetMarginOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasTime

func (o *GetMarginOrderV1Resp) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasTimeInForce

func (o *GetMarginOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasType

func (o *GetMarginOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetMarginOrderV1Resp) HasUpdateTime

func (o *GetMarginOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetMarginOrderV1Resp) MarshalJSON

func (o GetMarginOrderV1Resp) MarshalJSON() ([]byte, error)

func (*GetMarginOrderV1Resp) SetAccountId

func (o *GetMarginOrderV1Resp) SetAccountId(v int64)

SetAccountId gets a reference to the given int64 and assigns it to the AccountId field.

func (*GetMarginOrderV1Resp) SetClientOrderId

func (o *GetMarginOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetMarginOrderV1Resp) SetCummulativeQuoteQty

func (o *GetMarginOrderV1Resp) SetCummulativeQuoteQty(v string)

SetCummulativeQuoteQty gets a reference to the given string and assigns it to the CummulativeQuoteQty field.

func (*GetMarginOrderV1Resp) SetExecutedQty

func (o *GetMarginOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetMarginOrderV1Resp) SetIcebergQty

func (o *GetMarginOrderV1Resp) SetIcebergQty(v string)

SetIcebergQty gets a reference to the given string and assigns it to the IcebergQty field.

func (*GetMarginOrderV1Resp) SetIsWorking

func (o *GetMarginOrderV1Resp) SetIsWorking(v bool)

SetIsWorking gets a reference to the given bool and assigns it to the IsWorking field.

func (*GetMarginOrderV1Resp) SetOrderId

func (o *GetMarginOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetMarginOrderV1Resp) SetOrigQty

func (o *GetMarginOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetMarginOrderV1Resp) SetPreventedMatchId

func (o *GetMarginOrderV1Resp) SetPreventedMatchId(v map[string]interface{})

SetPreventedMatchId gets a reference to the given map[string]interface{} and assigns it to the PreventedMatchId field.

func (*GetMarginOrderV1Resp) SetPreventedQuantity

func (o *GetMarginOrderV1Resp) SetPreventedQuantity(v map[string]interface{})

SetPreventedQuantity gets a reference to the given map[string]interface{} and assigns it to the PreventedQuantity field.

func (*GetMarginOrderV1Resp) SetPrice

func (o *GetMarginOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetMarginOrderV1Resp) SetSelfTradePreventionMode

func (o *GetMarginOrderV1Resp) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*GetMarginOrderV1Resp) SetSide

func (o *GetMarginOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetMarginOrderV1Resp) SetStatus

func (o *GetMarginOrderV1Resp) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetMarginOrderV1Resp) SetStopPrice

func (o *GetMarginOrderV1Resp) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*GetMarginOrderV1Resp) SetSymbol

func (o *GetMarginOrderV1Resp) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetMarginOrderV1Resp) SetTime

func (o *GetMarginOrderV1Resp) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetMarginOrderV1Resp) SetTimeInForce

func (o *GetMarginOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetMarginOrderV1Resp) SetType

func (o *GetMarginOrderV1Resp) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetMarginOrderV1Resp) SetUpdateTime

func (o *GetMarginOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetMarginOrderV1Resp) ToMap

func (o GetMarginOrderV1Resp) ToMap() (map[string]interface{}, error)

type GetMarginRepayLoanV1Resp

type GetMarginRepayLoanV1Resp struct {
	Rows  []GetMarginRepayLoanV1RespRowsInner `json:"rows,omitempty"`
	Total *int32                              `json:"total,omitempty"`
}

GetMarginRepayLoanV1Resp struct for GetMarginRepayLoanV1Resp

func NewGetMarginRepayLoanV1Resp

func NewGetMarginRepayLoanV1Resp() *GetMarginRepayLoanV1Resp

NewGetMarginRepayLoanV1Resp instantiates a new GetMarginRepayLoanV1Resp 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 NewGetMarginRepayLoanV1RespWithDefaults

func NewGetMarginRepayLoanV1RespWithDefaults() *GetMarginRepayLoanV1Resp

NewGetMarginRepayLoanV1RespWithDefaults instantiates a new GetMarginRepayLoanV1Resp 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 (*GetMarginRepayLoanV1Resp) GetRows

GetRows returns the Rows field value if set, zero value otherwise.

func (*GetMarginRepayLoanV1Resp) GetRowsOk

GetRowsOk returns a tuple with the Rows field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginRepayLoanV1Resp) GetTotal

func (o *GetMarginRepayLoanV1Resp) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*GetMarginRepayLoanV1Resp) GetTotalOk

func (o *GetMarginRepayLoanV1Resp) GetTotalOk() (*int32, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginRepayLoanV1Resp) HasRows

func (o *GetMarginRepayLoanV1Resp) HasRows() bool

HasRows returns a boolean if a field has been set.

func (*GetMarginRepayLoanV1Resp) HasTotal

func (o *GetMarginRepayLoanV1Resp) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (GetMarginRepayLoanV1Resp) MarshalJSON

func (o GetMarginRepayLoanV1Resp) MarshalJSON() ([]byte, error)

func (*GetMarginRepayLoanV1Resp) SetRows

SetRows gets a reference to the given []GetMarginRepayLoanV1RespRowsInner and assigns it to the Rows field.

func (*GetMarginRepayLoanV1Resp) SetTotal

func (o *GetMarginRepayLoanV1Resp) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (GetMarginRepayLoanV1Resp) ToMap

func (o GetMarginRepayLoanV1Resp) ToMap() (map[string]interface{}, error)

type GetMarginRepayLoanV1RespRowsInner

type GetMarginRepayLoanV1RespRowsInner struct {
	Amount    *string `json:"amount,omitempty"`
	Asset     *string `json:"asset,omitempty"`
	Interest  *string `json:"interest,omitempty"`
	Principal *string `json:"principal,omitempty"`
	Status    *string `json:"status,omitempty"`
	Timestamp *int64  `json:"timestamp,omitempty"`
	TxId      *int64  `json:"txId,omitempty"`
}

GetMarginRepayLoanV1RespRowsInner struct for GetMarginRepayLoanV1RespRowsInner

func NewGetMarginRepayLoanV1RespRowsInner

func NewGetMarginRepayLoanV1RespRowsInner() *GetMarginRepayLoanV1RespRowsInner

NewGetMarginRepayLoanV1RespRowsInner instantiates a new GetMarginRepayLoanV1RespRowsInner 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 NewGetMarginRepayLoanV1RespRowsInnerWithDefaults

func NewGetMarginRepayLoanV1RespRowsInnerWithDefaults() *GetMarginRepayLoanV1RespRowsInner

NewGetMarginRepayLoanV1RespRowsInnerWithDefaults instantiates a new GetMarginRepayLoanV1RespRowsInner 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 (*GetMarginRepayLoanV1RespRowsInner) GetAmount

GetAmount returns the Amount field value if set, zero value otherwise.

func (*GetMarginRepayLoanV1RespRowsInner) GetAmountOk

func (o *GetMarginRepayLoanV1RespRowsInner) GetAmountOk() (*string, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginRepayLoanV1RespRowsInner) GetAsset

GetAsset returns the Asset field value if set, zero value otherwise.

func (*GetMarginRepayLoanV1RespRowsInner) GetAssetOk

func (o *GetMarginRepayLoanV1RespRowsInner) GetAssetOk() (*string, bool)

GetAssetOk returns a tuple with the Asset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginRepayLoanV1RespRowsInner) GetInterest

func (o *GetMarginRepayLoanV1RespRowsInner) GetInterest() string

GetInterest returns the Interest field value if set, zero value otherwise.

func (*GetMarginRepayLoanV1RespRowsInner) GetInterestOk

func (o *GetMarginRepayLoanV1RespRowsInner) GetInterestOk() (*string, bool)

GetInterestOk returns a tuple with the Interest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginRepayLoanV1RespRowsInner) GetPrincipal

func (o *GetMarginRepayLoanV1RespRowsInner) GetPrincipal() string

GetPrincipal returns the Principal field value if set, zero value otherwise.

func (*GetMarginRepayLoanV1RespRowsInner) GetPrincipalOk

func (o *GetMarginRepayLoanV1RespRowsInner) GetPrincipalOk() (*string, bool)

GetPrincipalOk returns a tuple with the Principal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginRepayLoanV1RespRowsInner) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetMarginRepayLoanV1RespRowsInner) GetStatusOk

func (o *GetMarginRepayLoanV1RespRowsInner) 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 (*GetMarginRepayLoanV1RespRowsInner) GetTimestamp

func (o *GetMarginRepayLoanV1RespRowsInner) GetTimestamp() int64

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*GetMarginRepayLoanV1RespRowsInner) GetTimestampOk

func (o *GetMarginRepayLoanV1RespRowsInner) GetTimestampOk() (*int64, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginRepayLoanV1RespRowsInner) GetTxId

GetTxId returns the TxId field value if set, zero value otherwise.

func (*GetMarginRepayLoanV1RespRowsInner) GetTxIdOk

func (o *GetMarginRepayLoanV1RespRowsInner) GetTxIdOk() (*int64, bool)

GetTxIdOk returns a tuple with the TxId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetMarginRepayLoanV1RespRowsInner) HasAmount

func (o *GetMarginRepayLoanV1RespRowsInner) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*GetMarginRepayLoanV1RespRowsInner) HasAsset

HasAsset returns a boolean if a field has been set.

func (*GetMarginRepayLoanV1RespRowsInner) HasInterest

func (o *GetMarginRepayLoanV1RespRowsInner) HasInterest() bool

HasInterest returns a boolean if a field has been set.

func (*GetMarginRepayLoanV1RespRowsInner) HasPrincipal

func (o *GetMarginRepayLoanV1RespRowsInner) HasPrincipal() bool

HasPrincipal returns a boolean if a field has been set.

func (*GetMarginRepayLoanV1RespRowsInner) HasStatus

func (o *GetMarginRepayLoanV1RespRowsInner) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetMarginRepayLoanV1RespRowsInner) HasTimestamp

func (o *GetMarginRepayLoanV1RespRowsInner) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*GetMarginRepayLoanV1RespRowsInner) HasTxId

HasTxId returns a boolean if a field has been set.

func (GetMarginRepayLoanV1RespRowsInner) MarshalJSON

func (o GetMarginRepayLoanV1RespRowsInner) MarshalJSON() ([]byte, error)

func (*GetMarginRepayLoanV1RespRowsInner) SetAmount

func (o *GetMarginRepayLoanV1RespRowsInner) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*GetMarginRepayLoanV1RespRowsInner) SetAsset

SetAsset gets a reference to the given string and assigns it to the Asset field.

func (*GetMarginRepayLoanV1RespRowsInner) SetInterest

func (o *GetMarginRepayLoanV1RespRowsInner) SetInterest(v string)

SetInterest gets a reference to the given string and assigns it to the Interest field.

func (*GetMarginRepayLoanV1RespRowsInner) SetPrincipal

func (o *GetMarginRepayLoanV1RespRowsInner) SetPrincipal(v string)

SetPrincipal gets a reference to the given string and assigns it to the Principal field.

func (*GetMarginRepayLoanV1RespRowsInner) SetStatus

func (o *GetMarginRepayLoanV1RespRowsInner) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetMarginRepayLoanV1RespRowsInner) SetTimestamp

func (o *GetMarginRepayLoanV1RespRowsInner) SetTimestamp(v int64)

SetTimestamp gets a reference to the given int64 and assigns it to the Timestamp field.

func (*GetMarginRepayLoanV1RespRowsInner) SetTxId

SetTxId gets a reference to the given int64 and assigns it to the TxId field.

func (GetMarginRepayLoanV1RespRowsInner) ToMap

func (o GetMarginRepayLoanV1RespRowsInner) ToMap() (map[string]interface{}, error)

type GetPortfolioInterestHistoryV1RespItem

type GetPortfolioInterestHistoryV1RespItem struct {
	Asset               *string `json:"asset,omitempty"`
	Interest            *string `json:"interest,omitempty"`
	InterestAccuredTime *int64  `json:"interestAccuredTime,omitempty"`
	InterestRate        *string `json:"interestRate,omitempty"`
	Principal           *string `json:"principal,omitempty"`
}

GetPortfolioInterestHistoryV1RespItem struct for GetPortfolioInterestHistoryV1RespItem

func NewGetPortfolioInterestHistoryV1RespItem

func NewGetPortfolioInterestHistoryV1RespItem() *GetPortfolioInterestHistoryV1RespItem

NewGetPortfolioInterestHistoryV1RespItem instantiates a new GetPortfolioInterestHistoryV1RespItem 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 NewGetPortfolioInterestHistoryV1RespItemWithDefaults

func NewGetPortfolioInterestHistoryV1RespItemWithDefaults() *GetPortfolioInterestHistoryV1RespItem

NewGetPortfolioInterestHistoryV1RespItemWithDefaults instantiates a new GetPortfolioInterestHistoryV1RespItem 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 (*GetPortfolioInterestHistoryV1RespItem) GetAsset

GetAsset returns the Asset field value if set, zero value otherwise.

func (*GetPortfolioInterestHistoryV1RespItem) GetAssetOk

GetAssetOk returns a tuple with the Asset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPortfolioInterestHistoryV1RespItem) GetInterest

GetInterest returns the Interest field value if set, zero value otherwise.

func (*GetPortfolioInterestHistoryV1RespItem) GetInterestAccuredTime

func (o *GetPortfolioInterestHistoryV1RespItem) GetInterestAccuredTime() int64

GetInterestAccuredTime returns the InterestAccuredTime field value if set, zero value otherwise.

func (*GetPortfolioInterestHistoryV1RespItem) GetInterestAccuredTimeOk

func (o *GetPortfolioInterestHistoryV1RespItem) GetInterestAccuredTimeOk() (*int64, bool)

GetInterestAccuredTimeOk returns a tuple with the InterestAccuredTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPortfolioInterestHistoryV1RespItem) GetInterestOk

func (o *GetPortfolioInterestHistoryV1RespItem) GetInterestOk() (*string, bool)

GetInterestOk returns a tuple with the Interest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPortfolioInterestHistoryV1RespItem) GetInterestRate

func (o *GetPortfolioInterestHistoryV1RespItem) GetInterestRate() string

GetInterestRate returns the InterestRate field value if set, zero value otherwise.

func (*GetPortfolioInterestHistoryV1RespItem) GetInterestRateOk

func (o *GetPortfolioInterestHistoryV1RespItem) GetInterestRateOk() (*string, 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 (*GetPortfolioInterestHistoryV1RespItem) GetPrincipal

GetPrincipal returns the Principal field value if set, zero value otherwise.

func (*GetPortfolioInterestHistoryV1RespItem) GetPrincipalOk

func (o *GetPortfolioInterestHistoryV1RespItem) GetPrincipalOk() (*string, bool)

GetPrincipalOk returns a tuple with the Principal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPortfolioInterestHistoryV1RespItem) HasAsset

HasAsset returns a boolean if a field has been set.

func (*GetPortfolioInterestHistoryV1RespItem) HasInterest

HasInterest returns a boolean if a field has been set.

func (*GetPortfolioInterestHistoryV1RespItem) HasInterestAccuredTime

func (o *GetPortfolioInterestHistoryV1RespItem) HasInterestAccuredTime() bool

HasInterestAccuredTime returns a boolean if a field has been set.

func (*GetPortfolioInterestHistoryV1RespItem) HasInterestRate

func (o *GetPortfolioInterestHistoryV1RespItem) HasInterestRate() bool

HasInterestRate returns a boolean if a field has been set.

func (*GetPortfolioInterestHistoryV1RespItem) HasPrincipal

func (o *GetPortfolioInterestHistoryV1RespItem) HasPrincipal() bool

HasPrincipal returns a boolean if a field has been set.

func (GetPortfolioInterestHistoryV1RespItem) MarshalJSON

func (o GetPortfolioInterestHistoryV1RespItem) MarshalJSON() ([]byte, error)

func (*GetPortfolioInterestHistoryV1RespItem) SetAsset

SetAsset gets a reference to the given string and assigns it to the Asset field.

func (*GetPortfolioInterestHistoryV1RespItem) SetInterest

SetInterest gets a reference to the given string and assigns it to the Interest field.

func (*GetPortfolioInterestHistoryV1RespItem) SetInterestAccuredTime

func (o *GetPortfolioInterestHistoryV1RespItem) SetInterestAccuredTime(v int64)

SetInterestAccuredTime gets a reference to the given int64 and assigns it to the InterestAccuredTime field.

func (*GetPortfolioInterestHistoryV1RespItem) SetInterestRate

func (o *GetPortfolioInterestHistoryV1RespItem) SetInterestRate(v string)

SetInterestRate gets a reference to the given string and assigns it to the InterestRate field.

func (*GetPortfolioInterestHistoryV1RespItem) SetPrincipal

func (o *GetPortfolioInterestHistoryV1RespItem) SetPrincipal(v string)

SetPrincipal gets a reference to the given string and assigns it to the Principal field.

func (GetPortfolioInterestHistoryV1RespItem) ToMap

func (o GetPortfolioInterestHistoryV1RespItem) ToMap() (map[string]interface{}, error)

type GetPortfolioNegativeBalanceExchangeRecordV1Resp

type GetPortfolioNegativeBalanceExchangeRecordV1Resp struct {
	Rows  []GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner `json:"rows,omitempty"`
	Total *int32                                                     `json:"total,omitempty"`
}

GetPortfolioNegativeBalanceExchangeRecordV1Resp struct for GetPortfolioNegativeBalanceExchangeRecordV1Resp

func NewGetPortfolioNegativeBalanceExchangeRecordV1Resp

func NewGetPortfolioNegativeBalanceExchangeRecordV1Resp() *GetPortfolioNegativeBalanceExchangeRecordV1Resp

NewGetPortfolioNegativeBalanceExchangeRecordV1Resp instantiates a new GetPortfolioNegativeBalanceExchangeRecordV1Resp 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 NewGetPortfolioNegativeBalanceExchangeRecordV1RespWithDefaults

func NewGetPortfolioNegativeBalanceExchangeRecordV1RespWithDefaults() *GetPortfolioNegativeBalanceExchangeRecordV1Resp

NewGetPortfolioNegativeBalanceExchangeRecordV1RespWithDefaults instantiates a new GetPortfolioNegativeBalanceExchangeRecordV1Resp 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 (*GetPortfolioNegativeBalanceExchangeRecordV1Resp) GetRows

GetRows returns the Rows field value if set, zero value otherwise.

func (*GetPortfolioNegativeBalanceExchangeRecordV1Resp) GetRowsOk

GetRowsOk returns a tuple with the Rows field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1Resp) GetTotal

GetTotal returns the Total field value if set, zero value otherwise.

func (*GetPortfolioNegativeBalanceExchangeRecordV1Resp) GetTotalOk

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1Resp) HasRows

HasRows returns a boolean if a field has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1Resp) HasTotal

HasTotal returns a boolean if a field has been set.

func (GetPortfolioNegativeBalanceExchangeRecordV1Resp) MarshalJSON

func (*GetPortfolioNegativeBalanceExchangeRecordV1Resp) SetRows

SetRows gets a reference to the given []GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner and assigns it to the Rows field.

func (*GetPortfolioNegativeBalanceExchangeRecordV1Resp) SetTotal

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (GetPortfolioNegativeBalanceExchangeRecordV1Resp) ToMap

func (o GetPortfolioNegativeBalanceExchangeRecordV1Resp) ToMap() (map[string]interface{}, error)

type GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner

type GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner struct {
	Details   []GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner `json:"details,omitempty"`
	EndTime   *int64                                                                 `json:"endTime,omitempty"`
	StartTime *int64                                                                 `json:"startTime,omitempty"`
}

GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner struct for GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner

func NewGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner

func NewGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner() *GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner

NewGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner instantiates a new GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner 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 NewGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerWithDefaults

func NewGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerWithDefaults() *GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner

NewGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerWithDefaults instantiates a new GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner 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 (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) GetDetails

GetDetails returns the Details field value if set, zero value otherwise.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) GetDetailsOk

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) GetEndTime

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) GetEndTimeOk

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) GetStartTime

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) GetStartTimeOk

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) HasDetails

HasDetails returns a boolean if a field has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) HasEndTime

HasEndTime returns a boolean if a field has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) HasStartTime

HasStartTime returns a boolean if a field has been set.

func (GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) MarshalJSON

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) SetDetails

SetDetails gets a reference to the given []GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner and assigns it to the Details field.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) SetEndTime

SetEndTime gets a reference to the given int64 and assigns it to the EndTime field.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) SetStartTime

SetStartTime gets a reference to the given int64 and assigns it to the StartTime field.

func (GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) ToMap

type GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner

type GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner struct {
	Asset                *string `json:"asset,omitempty"`
	NegativeBalance      *int32  `json:"negativeBalance,omitempty"`
	NegativeMaxThreshold *int32  `json:"negativeMaxThreshold,omitempty"`
}

GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner struct for GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner

func NewGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner

func NewGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner() *GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner

NewGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner instantiates a new GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner 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 NewGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInnerWithDefaults

func NewGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInnerWithDefaults() *GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner

NewGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInnerWithDefaults instantiates a new GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner 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 (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) GetAsset

GetAsset returns the Asset field value if set, zero value otherwise.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) GetAssetOk

GetAssetOk returns a tuple with the Asset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) GetNegativeBalance

GetNegativeBalance returns the NegativeBalance field value if set, zero value otherwise.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) GetNegativeBalanceOk

GetNegativeBalanceOk returns a tuple with the NegativeBalance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) GetNegativeMaxThreshold

GetNegativeMaxThreshold returns the NegativeMaxThreshold field value if set, zero value otherwise.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) GetNegativeMaxThresholdOk

GetNegativeMaxThresholdOk returns a tuple with the NegativeMaxThreshold field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) HasAsset

HasAsset returns a boolean if a field has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) HasNegativeBalance

HasNegativeBalance returns a boolean if a field has been set.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) HasNegativeMaxThreshold

HasNegativeMaxThreshold returns a boolean if a field has been set.

func (GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) MarshalJSON

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) SetAsset

SetAsset gets a reference to the given string and assigns it to the Asset field.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) SetNegativeBalance

SetNegativeBalance gets a reference to the given int32 and assigns it to the NegativeBalance field.

func (*GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) SetNegativeMaxThreshold

SetNegativeMaxThreshold gets a reference to the given int32 and assigns it to the NegativeMaxThreshold field.

func (GetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) ToMap

type GetRateLimitOrderV1RespItem

type GetRateLimitOrderV1RespItem struct {
	Interval      *string `json:"interval,omitempty"`
	IntervalNum   *int32  `json:"intervalNum,omitempty"`
	Limit         *int32  `json:"limit,omitempty"`
	RateLimitType *string `json:"rateLimitType,omitempty"`
}

GetRateLimitOrderV1RespItem struct for GetRateLimitOrderV1RespItem

func NewGetRateLimitOrderV1RespItem

func NewGetRateLimitOrderV1RespItem() *GetRateLimitOrderV1RespItem

NewGetRateLimitOrderV1RespItem instantiates a new GetRateLimitOrderV1RespItem 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 NewGetRateLimitOrderV1RespItemWithDefaults

func NewGetRateLimitOrderV1RespItemWithDefaults() *GetRateLimitOrderV1RespItem

NewGetRateLimitOrderV1RespItemWithDefaults instantiates a new GetRateLimitOrderV1RespItem 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 (*GetRateLimitOrderV1RespItem) GetInterval

func (o *GetRateLimitOrderV1RespItem) GetInterval() string

GetInterval returns the Interval field value if set, zero value otherwise.

func (*GetRateLimitOrderV1RespItem) GetIntervalNum

func (o *GetRateLimitOrderV1RespItem) GetIntervalNum() int32

GetIntervalNum returns the IntervalNum field value if set, zero value otherwise.

func (*GetRateLimitOrderV1RespItem) GetIntervalNumOk

func (o *GetRateLimitOrderV1RespItem) GetIntervalNumOk() (*int32, bool)

GetIntervalNumOk returns a tuple with the IntervalNum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRateLimitOrderV1RespItem) GetIntervalOk

func (o *GetRateLimitOrderV1RespItem) GetIntervalOk() (*string, 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 (*GetRateLimitOrderV1RespItem) GetLimit

func (o *GetRateLimitOrderV1RespItem) GetLimit() int32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetRateLimitOrderV1RespItem) GetLimitOk

func (o *GetRateLimitOrderV1RespItem) GetLimitOk() (*int32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRateLimitOrderV1RespItem) GetRateLimitType

func (o *GetRateLimitOrderV1RespItem) GetRateLimitType() string

GetRateLimitType returns the RateLimitType field value if set, zero value otherwise.

func (*GetRateLimitOrderV1RespItem) GetRateLimitTypeOk

func (o *GetRateLimitOrderV1RespItem) GetRateLimitTypeOk() (*string, bool)

GetRateLimitTypeOk returns a tuple with the RateLimitType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRateLimitOrderV1RespItem) HasInterval

func (o *GetRateLimitOrderV1RespItem) HasInterval() bool

HasInterval returns a boolean if a field has been set.

func (*GetRateLimitOrderV1RespItem) HasIntervalNum

func (o *GetRateLimitOrderV1RespItem) HasIntervalNum() bool

HasIntervalNum returns a boolean if a field has been set.

func (*GetRateLimitOrderV1RespItem) HasLimit

func (o *GetRateLimitOrderV1RespItem) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetRateLimitOrderV1RespItem) HasRateLimitType

func (o *GetRateLimitOrderV1RespItem) HasRateLimitType() bool

HasRateLimitType returns a boolean if a field has been set.

func (GetRateLimitOrderV1RespItem) MarshalJSON

func (o GetRateLimitOrderV1RespItem) MarshalJSON() ([]byte, error)

func (*GetRateLimitOrderV1RespItem) SetInterval

func (o *GetRateLimitOrderV1RespItem) SetInterval(v string)

SetInterval gets a reference to the given string and assigns it to the Interval field.

func (*GetRateLimitOrderV1RespItem) SetIntervalNum

func (o *GetRateLimitOrderV1RespItem) SetIntervalNum(v int32)

SetIntervalNum gets a reference to the given int32 and assigns it to the IntervalNum field.

func (*GetRateLimitOrderV1RespItem) SetLimit

func (o *GetRateLimitOrderV1RespItem) SetLimit(v int32)

SetLimit gets a reference to the given int32 and assigns it to the Limit field.

func (*GetRateLimitOrderV1RespItem) SetRateLimitType

func (o *GetRateLimitOrderV1RespItem) SetRateLimitType(v string)

SetRateLimitType gets a reference to the given string and assigns it to the RateLimitType field.

func (GetRateLimitOrderV1RespItem) ToMap

func (o GetRateLimitOrderV1RespItem) ToMap() (map[string]interface{}, error)

type GetRepayFuturesSwitchV1Resp

type GetRepayFuturesSwitchV1Resp struct {
	AutoRepay *bool `json:"autoRepay,omitempty"`
}

GetRepayFuturesSwitchV1Resp struct for GetRepayFuturesSwitchV1Resp

func NewGetRepayFuturesSwitchV1Resp

func NewGetRepayFuturesSwitchV1Resp() *GetRepayFuturesSwitchV1Resp

NewGetRepayFuturesSwitchV1Resp instantiates a new GetRepayFuturesSwitchV1Resp 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 NewGetRepayFuturesSwitchV1RespWithDefaults

func NewGetRepayFuturesSwitchV1RespWithDefaults() *GetRepayFuturesSwitchV1Resp

NewGetRepayFuturesSwitchV1RespWithDefaults instantiates a new GetRepayFuturesSwitchV1Resp 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 (*GetRepayFuturesSwitchV1Resp) GetAutoRepay

func (o *GetRepayFuturesSwitchV1Resp) GetAutoRepay() bool

GetAutoRepay returns the AutoRepay field value if set, zero value otherwise.

func (*GetRepayFuturesSwitchV1Resp) GetAutoRepayOk

func (o *GetRepayFuturesSwitchV1Resp) GetAutoRepayOk() (*bool, bool)

GetAutoRepayOk returns a tuple with the AutoRepay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepayFuturesSwitchV1Resp) HasAutoRepay

func (o *GetRepayFuturesSwitchV1Resp) HasAutoRepay() bool

HasAutoRepay returns a boolean if a field has been set.

func (GetRepayFuturesSwitchV1Resp) MarshalJSON

func (o GetRepayFuturesSwitchV1Resp) MarshalJSON() ([]byte, error)

func (*GetRepayFuturesSwitchV1Resp) SetAutoRepay

func (o *GetRepayFuturesSwitchV1Resp) SetAutoRepay(v bool)

SetAutoRepay gets a reference to the given bool and assigns it to the AutoRepay field.

func (GetRepayFuturesSwitchV1Resp) ToMap

func (o GetRepayFuturesSwitchV1Resp) ToMap() (map[string]interface{}, error)

type GetUmAccountConfigV1Resp

type GetUmAccountConfigV1Resp struct {
	CanDeposit        *bool  `json:"canDeposit,omitempty"`
	CanTrade          *bool  `json:"canTrade,omitempty"`
	CanWithdraw       *bool  `json:"canWithdraw,omitempty"`
	DualSidePosition  *bool  `json:"dualSidePosition,omitempty"`
	FeeTier           *int32 `json:"feeTier,omitempty"`
	MultiAssetsMargin *bool  `json:"multiAssetsMargin,omitempty"`
	TradeGroupId      *int64 `json:"tradeGroupId,omitempty"`
	UpdateTime        *int64 `json:"updateTime,omitempty"`
}

GetUmAccountConfigV1Resp struct for GetUmAccountConfigV1Resp

func NewGetUmAccountConfigV1Resp

func NewGetUmAccountConfigV1Resp() *GetUmAccountConfigV1Resp

NewGetUmAccountConfigV1Resp instantiates a new GetUmAccountConfigV1Resp 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 NewGetUmAccountConfigV1RespWithDefaults

func NewGetUmAccountConfigV1RespWithDefaults() *GetUmAccountConfigV1Resp

NewGetUmAccountConfigV1RespWithDefaults instantiates a new GetUmAccountConfigV1Resp 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 (*GetUmAccountConfigV1Resp) GetCanDeposit

func (o *GetUmAccountConfigV1Resp) GetCanDeposit() bool

GetCanDeposit returns the CanDeposit field value if set, zero value otherwise.

func (*GetUmAccountConfigV1Resp) GetCanDepositOk

func (o *GetUmAccountConfigV1Resp) GetCanDepositOk() (*bool, bool)

GetCanDepositOk returns a tuple with the CanDeposit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountConfigV1Resp) GetCanTrade

func (o *GetUmAccountConfigV1Resp) GetCanTrade() bool

GetCanTrade returns the CanTrade field value if set, zero value otherwise.

func (*GetUmAccountConfigV1Resp) GetCanTradeOk

func (o *GetUmAccountConfigV1Resp) GetCanTradeOk() (*bool, bool)

GetCanTradeOk returns a tuple with the CanTrade field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountConfigV1Resp) GetCanWithdraw

func (o *GetUmAccountConfigV1Resp) GetCanWithdraw() bool

GetCanWithdraw returns the CanWithdraw field value if set, zero value otherwise.

func (*GetUmAccountConfigV1Resp) GetCanWithdrawOk

func (o *GetUmAccountConfigV1Resp) GetCanWithdrawOk() (*bool, bool)

GetCanWithdrawOk returns a tuple with the CanWithdraw field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountConfigV1Resp) GetDualSidePosition

func (o *GetUmAccountConfigV1Resp) GetDualSidePosition() bool

GetDualSidePosition returns the DualSidePosition field value if set, zero value otherwise.

func (*GetUmAccountConfigV1Resp) GetDualSidePositionOk

func (o *GetUmAccountConfigV1Resp) GetDualSidePositionOk() (*bool, bool)

GetDualSidePositionOk returns a tuple with the DualSidePosition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountConfigV1Resp) GetFeeTier

func (o *GetUmAccountConfigV1Resp) GetFeeTier() int32

GetFeeTier returns the FeeTier field value if set, zero value otherwise.

func (*GetUmAccountConfigV1Resp) GetFeeTierOk

func (o *GetUmAccountConfigV1Resp) GetFeeTierOk() (*int32, bool)

GetFeeTierOk returns a tuple with the FeeTier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountConfigV1Resp) GetMultiAssetsMargin

func (o *GetUmAccountConfigV1Resp) GetMultiAssetsMargin() bool

GetMultiAssetsMargin returns the MultiAssetsMargin field value if set, zero value otherwise.

func (*GetUmAccountConfigV1Resp) GetMultiAssetsMarginOk

func (o *GetUmAccountConfigV1Resp) GetMultiAssetsMarginOk() (*bool, bool)

GetMultiAssetsMarginOk returns a tuple with the MultiAssetsMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountConfigV1Resp) GetTradeGroupId

func (o *GetUmAccountConfigV1Resp) GetTradeGroupId() int64

GetTradeGroupId returns the TradeGroupId field value if set, zero value otherwise.

func (*GetUmAccountConfigV1Resp) GetTradeGroupIdOk

func (o *GetUmAccountConfigV1Resp) GetTradeGroupIdOk() (*int64, bool)

GetTradeGroupIdOk returns a tuple with the TradeGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountConfigV1Resp) GetUpdateTime

func (o *GetUmAccountConfigV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmAccountConfigV1Resp) GetUpdateTimeOk

func (o *GetUmAccountConfigV1Resp) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountConfigV1Resp) HasCanDeposit

func (o *GetUmAccountConfigV1Resp) HasCanDeposit() bool

HasCanDeposit returns a boolean if a field has been set.

func (*GetUmAccountConfigV1Resp) HasCanTrade

func (o *GetUmAccountConfigV1Resp) HasCanTrade() bool

HasCanTrade returns a boolean if a field has been set.

func (*GetUmAccountConfigV1Resp) HasCanWithdraw

func (o *GetUmAccountConfigV1Resp) HasCanWithdraw() bool

HasCanWithdraw returns a boolean if a field has been set.

func (*GetUmAccountConfigV1Resp) HasDualSidePosition

func (o *GetUmAccountConfigV1Resp) HasDualSidePosition() bool

HasDualSidePosition returns a boolean if a field has been set.

func (*GetUmAccountConfigV1Resp) HasFeeTier

func (o *GetUmAccountConfigV1Resp) HasFeeTier() bool

HasFeeTier returns a boolean if a field has been set.

func (*GetUmAccountConfigV1Resp) HasMultiAssetsMargin

func (o *GetUmAccountConfigV1Resp) HasMultiAssetsMargin() bool

HasMultiAssetsMargin returns a boolean if a field has been set.

func (*GetUmAccountConfigV1Resp) HasTradeGroupId

func (o *GetUmAccountConfigV1Resp) HasTradeGroupId() bool

HasTradeGroupId returns a boolean if a field has been set.

func (*GetUmAccountConfigV1Resp) HasUpdateTime

func (o *GetUmAccountConfigV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmAccountConfigV1Resp) MarshalJSON

func (o GetUmAccountConfigV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmAccountConfigV1Resp) SetCanDeposit

func (o *GetUmAccountConfigV1Resp) SetCanDeposit(v bool)

SetCanDeposit gets a reference to the given bool and assigns it to the CanDeposit field.

func (*GetUmAccountConfigV1Resp) SetCanTrade

func (o *GetUmAccountConfigV1Resp) SetCanTrade(v bool)

SetCanTrade gets a reference to the given bool and assigns it to the CanTrade field.

func (*GetUmAccountConfigV1Resp) SetCanWithdraw

func (o *GetUmAccountConfigV1Resp) SetCanWithdraw(v bool)

SetCanWithdraw gets a reference to the given bool and assigns it to the CanWithdraw field.

func (*GetUmAccountConfigV1Resp) SetDualSidePosition

func (o *GetUmAccountConfigV1Resp) SetDualSidePosition(v bool)

SetDualSidePosition gets a reference to the given bool and assigns it to the DualSidePosition field.

func (*GetUmAccountConfigV1Resp) SetFeeTier

func (o *GetUmAccountConfigV1Resp) SetFeeTier(v int32)

SetFeeTier gets a reference to the given int32 and assigns it to the FeeTier field.

func (*GetUmAccountConfigV1Resp) SetMultiAssetsMargin

func (o *GetUmAccountConfigV1Resp) SetMultiAssetsMargin(v bool)

SetMultiAssetsMargin gets a reference to the given bool and assigns it to the MultiAssetsMargin field.

func (*GetUmAccountConfigV1Resp) SetTradeGroupId

func (o *GetUmAccountConfigV1Resp) SetTradeGroupId(v int64)

SetTradeGroupId gets a reference to the given int64 and assigns it to the TradeGroupId field.

func (*GetUmAccountConfigV1Resp) SetUpdateTime

func (o *GetUmAccountConfigV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmAccountConfigV1Resp) ToMap

func (o GetUmAccountConfigV1Resp) ToMap() (map[string]interface{}, error)

type GetUmAccountV1Resp

type GetUmAccountV1Resp struct {
	Assets    []GetCmAccountV1RespAssetsInner    `json:"assets,omitempty"`
	Positions []GetUmAccountV1RespPositionsInner `json:"positions,omitempty"`
}

GetUmAccountV1Resp struct for GetUmAccountV1Resp

func NewGetUmAccountV1Resp

func NewGetUmAccountV1Resp() *GetUmAccountV1Resp

NewGetUmAccountV1Resp instantiates a new GetUmAccountV1Resp 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 NewGetUmAccountV1RespWithDefaults

func NewGetUmAccountV1RespWithDefaults() *GetUmAccountV1Resp

NewGetUmAccountV1RespWithDefaults instantiates a new GetUmAccountV1Resp 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 (*GetUmAccountV1Resp) GetAssets

GetAssets returns the Assets field value if set, zero value otherwise.

func (*GetUmAccountV1Resp) GetAssetsOk

GetAssetsOk returns a tuple with the Assets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1Resp) GetPositions

GetPositions returns the Positions field value if set, zero value otherwise.

func (*GetUmAccountV1Resp) GetPositionsOk

func (o *GetUmAccountV1Resp) GetPositionsOk() ([]GetUmAccountV1RespPositionsInner, bool)

GetPositionsOk returns a tuple with the Positions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1Resp) HasAssets

func (o *GetUmAccountV1Resp) HasAssets() bool

HasAssets returns a boolean if a field has been set.

func (*GetUmAccountV1Resp) HasPositions

func (o *GetUmAccountV1Resp) HasPositions() bool

HasPositions returns a boolean if a field has been set.

func (GetUmAccountV1Resp) MarshalJSON

func (o GetUmAccountV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmAccountV1Resp) SetAssets

SetAssets gets a reference to the given []GetCmAccountV1RespAssetsInner and assigns it to the Assets field.

func (*GetUmAccountV1Resp) SetPositions

SetPositions gets a reference to the given []GetUmAccountV1RespPositionsInner and assigns it to the Positions field.

func (GetUmAccountV1Resp) ToMap

func (o GetUmAccountV1Resp) ToMap() (map[string]interface{}, error)

type GetUmAccountV1RespPositionsInner

type GetUmAccountV1RespPositionsInner struct {
	AskNotional            *string `json:"askNotional,omitempty"`
	BidNotional            *string `json:"bidNotional,omitempty"`
	EntryPrice             *string `json:"entryPrice,omitempty"`
	InitialMargin          *string `json:"initialMargin,omitempty"`
	Leverage               *string `json:"leverage,omitempty"`
	MaintMargin            *string `json:"maintMargin,omitempty"`
	MaxNotional            *string `json:"maxNotional,omitempty"`
	OpenOrderInitialMargin *string `json:"openOrderInitialMargin,omitempty"`
	PositionAmt            *string `json:"positionAmt,omitempty"`
	PositionInitialMargin  *string `json:"positionInitialMargin,omitempty"`
	PositionSide           *string `json:"positionSide,omitempty"`
	Symbol                 *string `json:"symbol,omitempty"`
	UnrealizedProfit       *string `json:"unrealizedProfit,omitempty"`
	UpdateTime             *int64  `json:"updateTime,omitempty"`
}

GetUmAccountV1RespPositionsInner struct for GetUmAccountV1RespPositionsInner

func NewGetUmAccountV1RespPositionsInner

func NewGetUmAccountV1RespPositionsInner() *GetUmAccountV1RespPositionsInner

NewGetUmAccountV1RespPositionsInner instantiates a new GetUmAccountV1RespPositionsInner 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 NewGetUmAccountV1RespPositionsInnerWithDefaults

func NewGetUmAccountV1RespPositionsInnerWithDefaults() *GetUmAccountV1RespPositionsInner

NewGetUmAccountV1RespPositionsInnerWithDefaults instantiates a new GetUmAccountV1RespPositionsInner 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 (*GetUmAccountV1RespPositionsInner) GetAskNotional

func (o *GetUmAccountV1RespPositionsInner) GetAskNotional() string

GetAskNotional returns the AskNotional field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetAskNotionalOk

func (o *GetUmAccountV1RespPositionsInner) GetAskNotionalOk() (*string, bool)

GetAskNotionalOk returns a tuple with the AskNotional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) GetBidNotional

func (o *GetUmAccountV1RespPositionsInner) GetBidNotional() string

GetBidNotional returns the BidNotional field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetBidNotionalOk

func (o *GetUmAccountV1RespPositionsInner) GetBidNotionalOk() (*string, bool)

GetBidNotionalOk returns a tuple with the BidNotional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) GetEntryPrice

func (o *GetUmAccountV1RespPositionsInner) GetEntryPrice() string

GetEntryPrice returns the EntryPrice field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetEntryPriceOk

func (o *GetUmAccountV1RespPositionsInner) GetEntryPriceOk() (*string, bool)

GetEntryPriceOk returns a tuple with the EntryPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) GetInitialMargin

func (o *GetUmAccountV1RespPositionsInner) GetInitialMargin() string

GetInitialMargin returns the InitialMargin field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetInitialMarginOk

func (o *GetUmAccountV1RespPositionsInner) GetInitialMarginOk() (*string, bool)

GetInitialMarginOk returns a tuple with the InitialMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) GetLeverage

func (o *GetUmAccountV1RespPositionsInner) GetLeverage() string

GetLeverage returns the Leverage field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetLeverageOk

func (o *GetUmAccountV1RespPositionsInner) GetLeverageOk() (*string, bool)

GetLeverageOk returns a tuple with the Leverage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) GetMaintMargin

func (o *GetUmAccountV1RespPositionsInner) GetMaintMargin() string

GetMaintMargin returns the MaintMargin field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetMaintMarginOk

func (o *GetUmAccountV1RespPositionsInner) GetMaintMarginOk() (*string, bool)

GetMaintMarginOk returns a tuple with the MaintMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) GetMaxNotional

func (o *GetUmAccountV1RespPositionsInner) GetMaxNotional() string

GetMaxNotional returns the MaxNotional field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetMaxNotionalOk

func (o *GetUmAccountV1RespPositionsInner) GetMaxNotionalOk() (*string, bool)

GetMaxNotionalOk returns a tuple with the MaxNotional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) GetOpenOrderInitialMargin

func (o *GetUmAccountV1RespPositionsInner) GetOpenOrderInitialMargin() string

GetOpenOrderInitialMargin returns the OpenOrderInitialMargin field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetOpenOrderInitialMarginOk

func (o *GetUmAccountV1RespPositionsInner) GetOpenOrderInitialMarginOk() (*string, bool)

GetOpenOrderInitialMarginOk returns a tuple with the OpenOrderInitialMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) GetPositionAmt

func (o *GetUmAccountV1RespPositionsInner) GetPositionAmt() string

GetPositionAmt returns the PositionAmt field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetPositionAmtOk

func (o *GetUmAccountV1RespPositionsInner) GetPositionAmtOk() (*string, bool)

GetPositionAmtOk returns a tuple with the PositionAmt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) GetPositionInitialMargin

func (o *GetUmAccountV1RespPositionsInner) GetPositionInitialMargin() string

GetPositionInitialMargin returns the PositionInitialMargin field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetPositionInitialMarginOk

func (o *GetUmAccountV1RespPositionsInner) GetPositionInitialMarginOk() (*string, bool)

GetPositionInitialMarginOk returns a tuple with the PositionInitialMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) GetPositionSide

func (o *GetUmAccountV1RespPositionsInner) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetPositionSideOk

func (o *GetUmAccountV1RespPositionsInner) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) GetSymbol

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetSymbolOk

func (o *GetUmAccountV1RespPositionsInner) 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 (*GetUmAccountV1RespPositionsInner) GetUnrealizedProfit

func (o *GetUmAccountV1RespPositionsInner) GetUnrealizedProfit() string

GetUnrealizedProfit returns the UnrealizedProfit field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetUnrealizedProfitOk

func (o *GetUmAccountV1RespPositionsInner) GetUnrealizedProfitOk() (*string, bool)

GetUnrealizedProfitOk returns a tuple with the UnrealizedProfit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) GetUpdateTime

func (o *GetUmAccountV1RespPositionsInner) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmAccountV1RespPositionsInner) GetUpdateTimeOk

func (o *GetUmAccountV1RespPositionsInner) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV1RespPositionsInner) HasAskNotional

func (o *GetUmAccountV1RespPositionsInner) HasAskNotional() bool

HasAskNotional returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasBidNotional

func (o *GetUmAccountV1RespPositionsInner) HasBidNotional() bool

HasBidNotional returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasEntryPrice

func (o *GetUmAccountV1RespPositionsInner) HasEntryPrice() bool

HasEntryPrice returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasInitialMargin

func (o *GetUmAccountV1RespPositionsInner) HasInitialMargin() bool

HasInitialMargin returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasLeverage

func (o *GetUmAccountV1RespPositionsInner) HasLeverage() bool

HasLeverage returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasMaintMargin

func (o *GetUmAccountV1RespPositionsInner) HasMaintMargin() bool

HasMaintMargin returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasMaxNotional

func (o *GetUmAccountV1RespPositionsInner) HasMaxNotional() bool

HasMaxNotional returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasOpenOrderInitialMargin

func (o *GetUmAccountV1RespPositionsInner) HasOpenOrderInitialMargin() bool

HasOpenOrderInitialMargin returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasPositionAmt

func (o *GetUmAccountV1RespPositionsInner) HasPositionAmt() bool

HasPositionAmt returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasPositionInitialMargin

func (o *GetUmAccountV1RespPositionsInner) HasPositionInitialMargin() bool

HasPositionInitialMargin returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasPositionSide

func (o *GetUmAccountV1RespPositionsInner) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasSymbol

func (o *GetUmAccountV1RespPositionsInner) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasUnrealizedProfit

func (o *GetUmAccountV1RespPositionsInner) HasUnrealizedProfit() bool

HasUnrealizedProfit returns a boolean if a field has been set.

func (*GetUmAccountV1RespPositionsInner) HasUpdateTime

func (o *GetUmAccountV1RespPositionsInner) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmAccountV1RespPositionsInner) MarshalJSON

func (o GetUmAccountV1RespPositionsInner) MarshalJSON() ([]byte, error)

func (*GetUmAccountV1RespPositionsInner) SetAskNotional

func (o *GetUmAccountV1RespPositionsInner) SetAskNotional(v string)

SetAskNotional gets a reference to the given string and assigns it to the AskNotional field.

func (*GetUmAccountV1RespPositionsInner) SetBidNotional

func (o *GetUmAccountV1RespPositionsInner) SetBidNotional(v string)

SetBidNotional gets a reference to the given string and assigns it to the BidNotional field.

func (*GetUmAccountV1RespPositionsInner) SetEntryPrice

func (o *GetUmAccountV1RespPositionsInner) SetEntryPrice(v string)

SetEntryPrice gets a reference to the given string and assigns it to the EntryPrice field.

func (*GetUmAccountV1RespPositionsInner) SetInitialMargin

func (o *GetUmAccountV1RespPositionsInner) SetInitialMargin(v string)

SetInitialMargin gets a reference to the given string and assigns it to the InitialMargin field.

func (*GetUmAccountV1RespPositionsInner) SetLeverage

func (o *GetUmAccountV1RespPositionsInner) SetLeverage(v string)

SetLeverage gets a reference to the given string and assigns it to the Leverage field.

func (*GetUmAccountV1RespPositionsInner) SetMaintMargin

func (o *GetUmAccountV1RespPositionsInner) SetMaintMargin(v string)

SetMaintMargin gets a reference to the given string and assigns it to the MaintMargin field.

func (*GetUmAccountV1RespPositionsInner) SetMaxNotional

func (o *GetUmAccountV1RespPositionsInner) SetMaxNotional(v string)

SetMaxNotional gets a reference to the given string and assigns it to the MaxNotional field.

func (*GetUmAccountV1RespPositionsInner) SetOpenOrderInitialMargin

func (o *GetUmAccountV1RespPositionsInner) SetOpenOrderInitialMargin(v string)

SetOpenOrderInitialMargin gets a reference to the given string and assigns it to the OpenOrderInitialMargin field.

func (*GetUmAccountV1RespPositionsInner) SetPositionAmt

func (o *GetUmAccountV1RespPositionsInner) SetPositionAmt(v string)

SetPositionAmt gets a reference to the given string and assigns it to the PositionAmt field.

func (*GetUmAccountV1RespPositionsInner) SetPositionInitialMargin

func (o *GetUmAccountV1RespPositionsInner) SetPositionInitialMargin(v string)

SetPositionInitialMargin gets a reference to the given string and assigns it to the PositionInitialMargin field.

func (*GetUmAccountV1RespPositionsInner) SetPositionSide

func (o *GetUmAccountV1RespPositionsInner) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmAccountV1RespPositionsInner) SetSymbol

func (o *GetUmAccountV1RespPositionsInner) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmAccountV1RespPositionsInner) SetUnrealizedProfit

func (o *GetUmAccountV1RespPositionsInner) SetUnrealizedProfit(v string)

SetUnrealizedProfit gets a reference to the given string and assigns it to the UnrealizedProfit field.

func (*GetUmAccountV1RespPositionsInner) SetUpdateTime

func (o *GetUmAccountV1RespPositionsInner) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmAccountV1RespPositionsInner) ToMap

func (o GetUmAccountV1RespPositionsInner) ToMap() (map[string]interface{}, error)

type GetUmAccountV2Resp

type GetUmAccountV2Resp struct {
	Assets    []GetCmAccountV1RespAssetsInner    `json:"assets,omitempty"`
	Positions []GetUmAccountV2RespPositionsInner `json:"positions,omitempty"`
}

GetUmAccountV2Resp struct for GetUmAccountV2Resp

func NewGetUmAccountV2Resp

func NewGetUmAccountV2Resp() *GetUmAccountV2Resp

NewGetUmAccountV2Resp instantiates a new GetUmAccountV2Resp 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 NewGetUmAccountV2RespWithDefaults

func NewGetUmAccountV2RespWithDefaults() *GetUmAccountV2Resp

NewGetUmAccountV2RespWithDefaults instantiates a new GetUmAccountV2Resp 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 (*GetUmAccountV2Resp) GetAssets

GetAssets returns the Assets field value if set, zero value otherwise.

func (*GetUmAccountV2Resp) GetAssetsOk

GetAssetsOk returns a tuple with the Assets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV2Resp) GetPositions

GetPositions returns the Positions field value if set, zero value otherwise.

func (*GetUmAccountV2Resp) GetPositionsOk

func (o *GetUmAccountV2Resp) GetPositionsOk() ([]GetUmAccountV2RespPositionsInner, bool)

GetPositionsOk returns a tuple with the Positions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV2Resp) HasAssets

func (o *GetUmAccountV2Resp) HasAssets() bool

HasAssets returns a boolean if a field has been set.

func (*GetUmAccountV2Resp) HasPositions

func (o *GetUmAccountV2Resp) HasPositions() bool

HasPositions returns a boolean if a field has been set.

func (GetUmAccountV2Resp) MarshalJSON

func (o GetUmAccountV2Resp) MarshalJSON() ([]byte, error)

func (*GetUmAccountV2Resp) SetAssets

SetAssets gets a reference to the given []GetCmAccountV1RespAssetsInner and assigns it to the Assets field.

func (*GetUmAccountV2Resp) SetPositions

SetPositions gets a reference to the given []GetUmAccountV2RespPositionsInner and assigns it to the Positions field.

func (GetUmAccountV2Resp) ToMap

func (o GetUmAccountV2Resp) ToMap() (map[string]interface{}, error)

type GetUmAccountV2RespPositionsInner

type GetUmAccountV2RespPositionsInner struct {
	InitialMargin    *string `json:"initialMargin,omitempty"`
	MaintMargin      *string `json:"maintMargin,omitempty"`
	Notional         *string `json:"notional,omitempty"`
	PositionAmt      *string `json:"positionAmt,omitempty"`
	PositionSide     *string `json:"positionSide,omitempty"`
	Symbol           *string `json:"symbol,omitempty"`
	UnrealizedProfit *string `json:"unrealizedProfit,omitempty"`
	UpdateTime       *int64  `json:"updateTime,omitempty"`
}

GetUmAccountV2RespPositionsInner struct for GetUmAccountV2RespPositionsInner

func NewGetUmAccountV2RespPositionsInner

func NewGetUmAccountV2RespPositionsInner() *GetUmAccountV2RespPositionsInner

NewGetUmAccountV2RespPositionsInner instantiates a new GetUmAccountV2RespPositionsInner 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 NewGetUmAccountV2RespPositionsInnerWithDefaults

func NewGetUmAccountV2RespPositionsInnerWithDefaults() *GetUmAccountV2RespPositionsInner

NewGetUmAccountV2RespPositionsInnerWithDefaults instantiates a new GetUmAccountV2RespPositionsInner 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 (*GetUmAccountV2RespPositionsInner) GetInitialMargin

func (o *GetUmAccountV2RespPositionsInner) GetInitialMargin() string

GetInitialMargin returns the InitialMargin field value if set, zero value otherwise.

func (*GetUmAccountV2RespPositionsInner) GetInitialMarginOk

func (o *GetUmAccountV2RespPositionsInner) GetInitialMarginOk() (*string, bool)

GetInitialMarginOk returns a tuple with the InitialMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV2RespPositionsInner) GetMaintMargin

func (o *GetUmAccountV2RespPositionsInner) GetMaintMargin() string

GetMaintMargin returns the MaintMargin field value if set, zero value otherwise.

func (*GetUmAccountV2RespPositionsInner) GetMaintMarginOk

func (o *GetUmAccountV2RespPositionsInner) GetMaintMarginOk() (*string, bool)

GetMaintMarginOk returns a tuple with the MaintMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV2RespPositionsInner) GetNotional

func (o *GetUmAccountV2RespPositionsInner) GetNotional() string

GetNotional returns the Notional field value if set, zero value otherwise.

func (*GetUmAccountV2RespPositionsInner) GetNotionalOk

func (o *GetUmAccountV2RespPositionsInner) GetNotionalOk() (*string, bool)

GetNotionalOk returns a tuple with the Notional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV2RespPositionsInner) GetPositionAmt

func (o *GetUmAccountV2RespPositionsInner) GetPositionAmt() string

GetPositionAmt returns the PositionAmt field value if set, zero value otherwise.

func (*GetUmAccountV2RespPositionsInner) GetPositionAmtOk

func (o *GetUmAccountV2RespPositionsInner) GetPositionAmtOk() (*string, bool)

GetPositionAmtOk returns a tuple with the PositionAmt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV2RespPositionsInner) GetPositionSide

func (o *GetUmAccountV2RespPositionsInner) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmAccountV2RespPositionsInner) GetPositionSideOk

func (o *GetUmAccountV2RespPositionsInner) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV2RespPositionsInner) GetSymbol

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmAccountV2RespPositionsInner) GetSymbolOk

func (o *GetUmAccountV2RespPositionsInner) 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 (*GetUmAccountV2RespPositionsInner) GetUnrealizedProfit

func (o *GetUmAccountV2RespPositionsInner) GetUnrealizedProfit() string

GetUnrealizedProfit returns the UnrealizedProfit field value if set, zero value otherwise.

func (*GetUmAccountV2RespPositionsInner) GetUnrealizedProfitOk

func (o *GetUmAccountV2RespPositionsInner) GetUnrealizedProfitOk() (*string, bool)

GetUnrealizedProfitOk returns a tuple with the UnrealizedProfit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV2RespPositionsInner) GetUpdateTime

func (o *GetUmAccountV2RespPositionsInner) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmAccountV2RespPositionsInner) GetUpdateTimeOk

func (o *GetUmAccountV2RespPositionsInner) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAccountV2RespPositionsInner) HasInitialMargin

func (o *GetUmAccountV2RespPositionsInner) HasInitialMargin() bool

HasInitialMargin returns a boolean if a field has been set.

func (*GetUmAccountV2RespPositionsInner) HasMaintMargin

func (o *GetUmAccountV2RespPositionsInner) HasMaintMargin() bool

HasMaintMargin returns a boolean if a field has been set.

func (*GetUmAccountV2RespPositionsInner) HasNotional

func (o *GetUmAccountV2RespPositionsInner) HasNotional() bool

HasNotional returns a boolean if a field has been set.

func (*GetUmAccountV2RespPositionsInner) HasPositionAmt

func (o *GetUmAccountV2RespPositionsInner) HasPositionAmt() bool

HasPositionAmt returns a boolean if a field has been set.

func (*GetUmAccountV2RespPositionsInner) HasPositionSide

func (o *GetUmAccountV2RespPositionsInner) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmAccountV2RespPositionsInner) HasSymbol

func (o *GetUmAccountV2RespPositionsInner) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmAccountV2RespPositionsInner) HasUnrealizedProfit

func (o *GetUmAccountV2RespPositionsInner) HasUnrealizedProfit() bool

HasUnrealizedProfit returns a boolean if a field has been set.

func (*GetUmAccountV2RespPositionsInner) HasUpdateTime

func (o *GetUmAccountV2RespPositionsInner) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmAccountV2RespPositionsInner) MarshalJSON

func (o GetUmAccountV2RespPositionsInner) MarshalJSON() ([]byte, error)

func (*GetUmAccountV2RespPositionsInner) SetInitialMargin

func (o *GetUmAccountV2RespPositionsInner) SetInitialMargin(v string)

SetInitialMargin gets a reference to the given string and assigns it to the InitialMargin field.

func (*GetUmAccountV2RespPositionsInner) SetMaintMargin

func (o *GetUmAccountV2RespPositionsInner) SetMaintMargin(v string)

SetMaintMargin gets a reference to the given string and assigns it to the MaintMargin field.

func (*GetUmAccountV2RespPositionsInner) SetNotional

func (o *GetUmAccountV2RespPositionsInner) SetNotional(v string)

SetNotional gets a reference to the given string and assigns it to the Notional field.

func (*GetUmAccountV2RespPositionsInner) SetPositionAmt

func (o *GetUmAccountV2RespPositionsInner) SetPositionAmt(v string)

SetPositionAmt gets a reference to the given string and assigns it to the PositionAmt field.

func (*GetUmAccountV2RespPositionsInner) SetPositionSide

func (o *GetUmAccountV2RespPositionsInner) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmAccountV2RespPositionsInner) SetSymbol

func (o *GetUmAccountV2RespPositionsInner) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmAccountV2RespPositionsInner) SetUnrealizedProfit

func (o *GetUmAccountV2RespPositionsInner) SetUnrealizedProfit(v string)

SetUnrealizedProfit gets a reference to the given string and assigns it to the UnrealizedProfit field.

func (*GetUmAccountV2RespPositionsInner) SetUpdateTime

func (o *GetUmAccountV2RespPositionsInner) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmAccountV2RespPositionsInner) ToMap

func (o GetUmAccountV2RespPositionsInner) ToMap() (map[string]interface{}, error)

type GetUmAdlQuantileV1RespItem

type GetUmAdlQuantileV1RespItem struct {
	AdlQuantile *GetCmAdlQuantileV1RespItemAdlQuantile `json:"adlQuantile,omitempty"`
	Symbol      *string                                `json:"symbol,omitempty"`
}

GetUmAdlQuantileV1RespItem struct for GetUmAdlQuantileV1RespItem

func NewGetUmAdlQuantileV1RespItem

func NewGetUmAdlQuantileV1RespItem() *GetUmAdlQuantileV1RespItem

NewGetUmAdlQuantileV1RespItem instantiates a new GetUmAdlQuantileV1RespItem 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 NewGetUmAdlQuantileV1RespItemWithDefaults

func NewGetUmAdlQuantileV1RespItemWithDefaults() *GetUmAdlQuantileV1RespItem

NewGetUmAdlQuantileV1RespItemWithDefaults instantiates a new GetUmAdlQuantileV1RespItem 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 (*GetUmAdlQuantileV1RespItem) GetAdlQuantile

GetAdlQuantile returns the AdlQuantile field value if set, zero value otherwise.

func (*GetUmAdlQuantileV1RespItem) GetAdlQuantileOk

GetAdlQuantileOk returns a tuple with the AdlQuantile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAdlQuantileV1RespItem) GetSymbol

func (o *GetUmAdlQuantileV1RespItem) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmAdlQuantileV1RespItem) GetSymbolOk

func (o *GetUmAdlQuantileV1RespItem) 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 (*GetUmAdlQuantileV1RespItem) HasAdlQuantile

func (o *GetUmAdlQuantileV1RespItem) HasAdlQuantile() bool

HasAdlQuantile returns a boolean if a field has been set.

func (*GetUmAdlQuantileV1RespItem) HasSymbol

func (o *GetUmAdlQuantileV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (GetUmAdlQuantileV1RespItem) MarshalJSON

func (o GetUmAdlQuantileV1RespItem) MarshalJSON() ([]byte, error)

func (*GetUmAdlQuantileV1RespItem) SetAdlQuantile

SetAdlQuantile gets a reference to the given GetCmAdlQuantileV1RespItemAdlQuantile and assigns it to the AdlQuantile field.

func (*GetUmAdlQuantileV1RespItem) SetSymbol

func (o *GetUmAdlQuantileV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (GetUmAdlQuantileV1RespItem) ToMap

func (o GetUmAdlQuantileV1RespItem) ToMap() (map[string]interface{}, error)

type GetUmAllOrdersV1RespItem

type GetUmAllOrdersV1RespItem struct {
	AvgPrice                *string `json:"avgPrice,omitempty"`
	ClientOrderId           *string `json:"clientOrderId,omitempty"`
	CumQuote                *string `json:"cumQuote,omitempty"`
	ExecutedQty             *string `json:"executedQty,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	OrderId                 *int64  `json:"orderId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	OrigType                *string `json:"origType,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceMatch              *string `json:"priceMatch,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	Status                  *string `json:"status,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	Time                    *int64  `json:"time,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	Type                    *string `json:"type,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
}

GetUmAllOrdersV1RespItem struct for GetUmAllOrdersV1RespItem

func NewGetUmAllOrdersV1RespItem

func NewGetUmAllOrdersV1RespItem() *GetUmAllOrdersV1RespItem

NewGetUmAllOrdersV1RespItem instantiates a new GetUmAllOrdersV1RespItem 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 NewGetUmAllOrdersV1RespItemWithDefaults

func NewGetUmAllOrdersV1RespItemWithDefaults() *GetUmAllOrdersV1RespItem

NewGetUmAllOrdersV1RespItemWithDefaults instantiates a new GetUmAllOrdersV1RespItem 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 (*GetUmAllOrdersV1RespItem) GetAvgPrice

func (o *GetUmAllOrdersV1RespItem) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetAvgPriceOk

func (o *GetUmAllOrdersV1RespItem) GetAvgPriceOk() (*string, bool)

GetAvgPriceOk returns a tuple with the AvgPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetClientOrderId

func (o *GetUmAllOrdersV1RespItem) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetClientOrderIdOk

func (o *GetUmAllOrdersV1RespItem) GetClientOrderIdOk() (*string, bool)

GetClientOrderIdOk returns a tuple with the ClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetCumQuote

func (o *GetUmAllOrdersV1RespItem) GetCumQuote() string

GetCumQuote returns the CumQuote field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetCumQuoteOk

func (o *GetUmAllOrdersV1RespItem) GetCumQuoteOk() (*string, bool)

GetCumQuoteOk returns a tuple with the CumQuote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetExecutedQty

func (o *GetUmAllOrdersV1RespItem) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetExecutedQtyOk

func (o *GetUmAllOrdersV1RespItem) GetExecutedQtyOk() (*string, bool)

GetExecutedQtyOk returns a tuple with the ExecutedQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetGoodTillDate

func (o *GetUmAllOrdersV1RespItem) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetGoodTillDateOk

func (o *GetUmAllOrdersV1RespItem) GetGoodTillDateOk() (*int64, bool)

GetGoodTillDateOk returns a tuple with the GoodTillDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetOrderId

func (o *GetUmAllOrdersV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetOrderIdOk

func (o *GetUmAllOrdersV1RespItem) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetOrigQty

func (o *GetUmAllOrdersV1RespItem) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetOrigQtyOk

func (o *GetUmAllOrdersV1RespItem) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetOrigType

func (o *GetUmAllOrdersV1RespItem) GetOrigType() string

GetOrigType returns the OrigType field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetOrigTypeOk

func (o *GetUmAllOrdersV1RespItem) GetOrigTypeOk() (*string, bool)

GetOrigTypeOk returns a tuple with the OrigType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetPositionSide

func (o *GetUmAllOrdersV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetPositionSideOk

func (o *GetUmAllOrdersV1RespItem) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetPrice

func (o *GetUmAllOrdersV1RespItem) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetPriceMatch

func (o *GetUmAllOrdersV1RespItem) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetPriceMatchOk

func (o *GetUmAllOrdersV1RespItem) GetPriceMatchOk() (*string, bool)

GetPriceMatchOk returns a tuple with the PriceMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetPriceOk

func (o *GetUmAllOrdersV1RespItem) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetReduceOnly

func (o *GetUmAllOrdersV1RespItem) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetReduceOnlyOk

func (o *GetUmAllOrdersV1RespItem) GetReduceOnlyOk() (*bool, bool)

GetReduceOnlyOk returns a tuple with the ReduceOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetSelfTradePreventionMode

func (o *GetUmAllOrdersV1RespItem) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetSelfTradePreventionModeOk

func (o *GetUmAllOrdersV1RespItem) GetSelfTradePreventionModeOk() (*string, bool)

GetSelfTradePreventionModeOk returns a tuple with the SelfTradePreventionMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetSide

func (o *GetUmAllOrdersV1RespItem) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetSideOk

func (o *GetUmAllOrdersV1RespItem) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetStatus

func (o *GetUmAllOrdersV1RespItem) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetStatusOk

func (o *GetUmAllOrdersV1RespItem) 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 (*GetUmAllOrdersV1RespItem) GetSymbol

func (o *GetUmAllOrdersV1RespItem) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetSymbolOk

func (o *GetUmAllOrdersV1RespItem) 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 (*GetUmAllOrdersV1RespItem) GetTime

func (o *GetUmAllOrdersV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetTimeInForce

func (o *GetUmAllOrdersV1RespItem) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetTimeInForceOk

func (o *GetUmAllOrdersV1RespItem) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetTimeOk

func (o *GetUmAllOrdersV1RespItem) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) GetType

func (o *GetUmAllOrdersV1RespItem) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetTypeOk

func (o *GetUmAllOrdersV1RespItem) 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 (*GetUmAllOrdersV1RespItem) GetUpdateTime

func (o *GetUmAllOrdersV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmAllOrdersV1RespItem) GetUpdateTimeOk

func (o *GetUmAllOrdersV1RespItem) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmAllOrdersV1RespItem) HasAvgPrice

func (o *GetUmAllOrdersV1RespItem) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasClientOrderId

func (o *GetUmAllOrdersV1RespItem) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasCumQuote

func (o *GetUmAllOrdersV1RespItem) HasCumQuote() bool

HasCumQuote returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasExecutedQty

func (o *GetUmAllOrdersV1RespItem) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasGoodTillDate

func (o *GetUmAllOrdersV1RespItem) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasOrderId

func (o *GetUmAllOrdersV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasOrigQty

func (o *GetUmAllOrdersV1RespItem) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasOrigType

func (o *GetUmAllOrdersV1RespItem) HasOrigType() bool

HasOrigType returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasPositionSide

func (o *GetUmAllOrdersV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasPrice

func (o *GetUmAllOrdersV1RespItem) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasPriceMatch

func (o *GetUmAllOrdersV1RespItem) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasReduceOnly

func (o *GetUmAllOrdersV1RespItem) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasSelfTradePreventionMode

func (o *GetUmAllOrdersV1RespItem) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasSide

func (o *GetUmAllOrdersV1RespItem) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasStatus

func (o *GetUmAllOrdersV1RespItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasSymbol

func (o *GetUmAllOrdersV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasTime

func (o *GetUmAllOrdersV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasTimeInForce

func (o *GetUmAllOrdersV1RespItem) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasType

func (o *GetUmAllOrdersV1RespItem) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetUmAllOrdersV1RespItem) HasUpdateTime

func (o *GetUmAllOrdersV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmAllOrdersV1RespItem) MarshalJSON

func (o GetUmAllOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*GetUmAllOrdersV1RespItem) SetAvgPrice

func (o *GetUmAllOrdersV1RespItem) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*GetUmAllOrdersV1RespItem) SetClientOrderId

func (o *GetUmAllOrdersV1RespItem) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetUmAllOrdersV1RespItem) SetCumQuote

func (o *GetUmAllOrdersV1RespItem) SetCumQuote(v string)

SetCumQuote gets a reference to the given string and assigns it to the CumQuote field.

func (*GetUmAllOrdersV1RespItem) SetExecutedQty

func (o *GetUmAllOrdersV1RespItem) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetUmAllOrdersV1RespItem) SetGoodTillDate

func (o *GetUmAllOrdersV1RespItem) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*GetUmAllOrdersV1RespItem) SetOrderId

func (o *GetUmAllOrdersV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetUmAllOrdersV1RespItem) SetOrigQty

func (o *GetUmAllOrdersV1RespItem) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetUmAllOrdersV1RespItem) SetOrigType

func (o *GetUmAllOrdersV1RespItem) SetOrigType(v string)

SetOrigType gets a reference to the given string and assigns it to the OrigType field.

func (*GetUmAllOrdersV1RespItem) SetPositionSide

func (o *GetUmAllOrdersV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmAllOrdersV1RespItem) SetPrice

func (o *GetUmAllOrdersV1RespItem) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetUmAllOrdersV1RespItem) SetPriceMatch

func (o *GetUmAllOrdersV1RespItem) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*GetUmAllOrdersV1RespItem) SetReduceOnly

func (o *GetUmAllOrdersV1RespItem) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetUmAllOrdersV1RespItem) SetSelfTradePreventionMode

func (o *GetUmAllOrdersV1RespItem) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*GetUmAllOrdersV1RespItem) SetSide

func (o *GetUmAllOrdersV1RespItem) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetUmAllOrdersV1RespItem) SetStatus

func (o *GetUmAllOrdersV1RespItem) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetUmAllOrdersV1RespItem) SetSymbol

func (o *GetUmAllOrdersV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmAllOrdersV1RespItem) SetTime

func (o *GetUmAllOrdersV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetUmAllOrdersV1RespItem) SetTimeInForce

func (o *GetUmAllOrdersV1RespItem) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetUmAllOrdersV1RespItem) SetType

func (o *GetUmAllOrdersV1RespItem) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetUmAllOrdersV1RespItem) SetUpdateTime

func (o *GetUmAllOrdersV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmAllOrdersV1RespItem) ToMap

func (o GetUmAllOrdersV1RespItem) ToMap() (map[string]interface{}, error)

type GetUmApiTradingStatusV1Resp

type GetUmApiTradingStatusV1Resp struct {
	Indicators *GetUmApiTradingStatusV1RespIndicators `json:"indicators,omitempty"`
	UpdateTime *int64                                 `json:"updateTime,omitempty"`
}

GetUmApiTradingStatusV1Resp struct for GetUmApiTradingStatusV1Resp

func NewGetUmApiTradingStatusV1Resp

func NewGetUmApiTradingStatusV1Resp() *GetUmApiTradingStatusV1Resp

NewGetUmApiTradingStatusV1Resp instantiates a new GetUmApiTradingStatusV1Resp 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 NewGetUmApiTradingStatusV1RespWithDefaults

func NewGetUmApiTradingStatusV1RespWithDefaults() *GetUmApiTradingStatusV1Resp

NewGetUmApiTradingStatusV1RespWithDefaults instantiates a new GetUmApiTradingStatusV1Resp 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 (*GetUmApiTradingStatusV1Resp) GetIndicators

GetIndicators returns the Indicators field value if set, zero value otherwise.

func (*GetUmApiTradingStatusV1Resp) GetIndicatorsOk

GetIndicatorsOk returns a tuple with the Indicators field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmApiTradingStatusV1Resp) GetUpdateTime

func (o *GetUmApiTradingStatusV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmApiTradingStatusV1Resp) GetUpdateTimeOk

func (o *GetUmApiTradingStatusV1Resp) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmApiTradingStatusV1Resp) HasIndicators

func (o *GetUmApiTradingStatusV1Resp) HasIndicators() bool

HasIndicators returns a boolean if a field has been set.

func (*GetUmApiTradingStatusV1Resp) HasUpdateTime

func (o *GetUmApiTradingStatusV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmApiTradingStatusV1Resp) MarshalJSON

func (o GetUmApiTradingStatusV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmApiTradingStatusV1Resp) SetIndicators

SetIndicators gets a reference to the given GetUmApiTradingStatusV1RespIndicators and assigns it to the Indicators field.

func (*GetUmApiTradingStatusV1Resp) SetUpdateTime

func (o *GetUmApiTradingStatusV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmApiTradingStatusV1Resp) ToMap

func (o GetUmApiTradingStatusV1Resp) ToMap() (map[string]interface{}, error)

type GetUmApiTradingStatusV1RespIndicators

type GetUmApiTradingStatusV1RespIndicators struct {
	BTCUSDT []GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner `json:"BTCUSDT,omitempty"`
}

GetUmApiTradingStatusV1RespIndicators struct for GetUmApiTradingStatusV1RespIndicators

func NewGetUmApiTradingStatusV1RespIndicators

func NewGetUmApiTradingStatusV1RespIndicators() *GetUmApiTradingStatusV1RespIndicators

NewGetUmApiTradingStatusV1RespIndicators instantiates a new GetUmApiTradingStatusV1RespIndicators 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 NewGetUmApiTradingStatusV1RespIndicatorsWithDefaults

func NewGetUmApiTradingStatusV1RespIndicatorsWithDefaults() *GetUmApiTradingStatusV1RespIndicators

NewGetUmApiTradingStatusV1RespIndicatorsWithDefaults instantiates a new GetUmApiTradingStatusV1RespIndicators 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 (*GetUmApiTradingStatusV1RespIndicators) GetBTCUSDT

GetBTCUSDT returns the BTCUSDT field value if set, zero value otherwise.

func (*GetUmApiTradingStatusV1RespIndicators) GetBTCUSDTOk

GetBTCUSDTOk returns a tuple with the BTCUSDT field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmApiTradingStatusV1RespIndicators) HasBTCUSDT

HasBTCUSDT returns a boolean if a field has been set.

func (GetUmApiTradingStatusV1RespIndicators) MarshalJSON

func (o GetUmApiTradingStatusV1RespIndicators) MarshalJSON() ([]byte, error)

func (*GetUmApiTradingStatusV1RespIndicators) SetBTCUSDT

SetBTCUSDT gets a reference to the given []GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner and assigns it to the BTCUSDT field.

func (GetUmApiTradingStatusV1RespIndicators) ToMap

func (o GetUmApiTradingStatusV1RespIndicators) ToMap() (map[string]interface{}, error)

type GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner

type GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner struct {
	Indicator          *string  `json:"indicator,omitempty"`
	IsLocked           *bool    `json:"isLocked,omitempty"`
	PlannedRecoverTime *int64   `json:"plannedRecoverTime,omitempty"`
	TriggerValue       *float32 `json:"triggerValue,omitempty"`
	Value              *float32 `json:"value,omitempty"`
}

GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner struct for GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner

func NewGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner

func NewGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner() *GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner

NewGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner instantiates a new GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner 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 NewGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInnerWithDefaults

func NewGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInnerWithDefaults() *GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner

NewGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInnerWithDefaults instantiates a new GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner 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 (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) GetIndicator

GetIndicator returns the Indicator field value if set, zero value otherwise.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) GetIndicatorOk

GetIndicatorOk returns a tuple with the Indicator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) GetIsLocked

GetIsLocked returns the IsLocked field value if set, zero value otherwise.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) GetIsLockedOk

GetIsLockedOk returns a tuple with the IsLocked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) GetPlannedRecoverTime

func (o *GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) GetPlannedRecoverTime() int64

GetPlannedRecoverTime returns the PlannedRecoverTime field value if set, zero value otherwise.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) GetPlannedRecoverTimeOk

func (o *GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) GetPlannedRecoverTimeOk() (*int64, bool)

GetPlannedRecoverTimeOk returns a tuple with the PlannedRecoverTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) GetTriggerValue

GetTriggerValue returns the TriggerValue field value if set, zero value otherwise.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) GetTriggerValueOk

GetTriggerValueOk returns a tuple with the TriggerValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) GetValueOk

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) HasIndicator

HasIndicator returns a boolean if a field has been set.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) HasIsLocked

HasIsLocked returns a boolean if a field has been set.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) HasPlannedRecoverTime

func (o *GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) HasPlannedRecoverTime() bool

HasPlannedRecoverTime returns a boolean if a field has been set.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) HasTriggerValue

HasTriggerValue returns a boolean if a field has been set.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) HasValue

HasValue returns a boolean if a field has been set.

func (GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) MarshalJSON

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) SetIndicator

SetIndicator gets a reference to the given string and assigns it to the Indicator field.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) SetIsLocked

SetIsLocked gets a reference to the given bool and assigns it to the IsLocked field.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) SetPlannedRecoverTime

func (o *GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) SetPlannedRecoverTime(v int64)

SetPlannedRecoverTime gets a reference to the given int64 and assigns it to the PlannedRecoverTime field.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) SetTriggerValue

SetTriggerValue gets a reference to the given float32 and assigns it to the TriggerValue field.

func (*GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) SetValue

SetValue gets a reference to the given float32 and assigns it to the Value field.

func (GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) ToMap

func (o GetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) ToMap() (map[string]interface{}, error)

type GetUmCommissionRateV1Resp

type GetUmCommissionRateV1Resp struct {
	MakerCommissionRate *string `json:"makerCommissionRate,omitempty"`
	Symbol              *string `json:"symbol,omitempty"`
	TakerCommissionRate *string `json:"takerCommissionRate,omitempty"`
}

GetUmCommissionRateV1Resp struct for GetUmCommissionRateV1Resp

func NewGetUmCommissionRateV1Resp

func NewGetUmCommissionRateV1Resp() *GetUmCommissionRateV1Resp

NewGetUmCommissionRateV1Resp instantiates a new GetUmCommissionRateV1Resp 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 NewGetUmCommissionRateV1RespWithDefaults

func NewGetUmCommissionRateV1RespWithDefaults() *GetUmCommissionRateV1Resp

NewGetUmCommissionRateV1RespWithDefaults instantiates a new GetUmCommissionRateV1Resp 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 (*GetUmCommissionRateV1Resp) GetMakerCommissionRate

func (o *GetUmCommissionRateV1Resp) GetMakerCommissionRate() string

GetMakerCommissionRate returns the MakerCommissionRate field value if set, zero value otherwise.

func (*GetUmCommissionRateV1Resp) GetMakerCommissionRateOk

func (o *GetUmCommissionRateV1Resp) GetMakerCommissionRateOk() (*string, bool)

GetMakerCommissionRateOk returns a tuple with the MakerCommissionRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmCommissionRateV1Resp) GetSymbol

func (o *GetUmCommissionRateV1Resp) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmCommissionRateV1Resp) GetSymbolOk

func (o *GetUmCommissionRateV1Resp) 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 (*GetUmCommissionRateV1Resp) GetTakerCommissionRate

func (o *GetUmCommissionRateV1Resp) GetTakerCommissionRate() string

GetTakerCommissionRate returns the TakerCommissionRate field value if set, zero value otherwise.

func (*GetUmCommissionRateV1Resp) GetTakerCommissionRateOk

func (o *GetUmCommissionRateV1Resp) GetTakerCommissionRateOk() (*string, bool)

GetTakerCommissionRateOk returns a tuple with the TakerCommissionRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmCommissionRateV1Resp) HasMakerCommissionRate

func (o *GetUmCommissionRateV1Resp) HasMakerCommissionRate() bool

HasMakerCommissionRate returns a boolean if a field has been set.

func (*GetUmCommissionRateV1Resp) HasSymbol

func (o *GetUmCommissionRateV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmCommissionRateV1Resp) HasTakerCommissionRate

func (o *GetUmCommissionRateV1Resp) HasTakerCommissionRate() bool

HasTakerCommissionRate returns a boolean if a field has been set.

func (GetUmCommissionRateV1Resp) MarshalJSON

func (o GetUmCommissionRateV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmCommissionRateV1Resp) SetMakerCommissionRate

func (o *GetUmCommissionRateV1Resp) SetMakerCommissionRate(v string)

SetMakerCommissionRate gets a reference to the given string and assigns it to the MakerCommissionRate field.

func (*GetUmCommissionRateV1Resp) SetSymbol

func (o *GetUmCommissionRateV1Resp) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmCommissionRateV1Resp) SetTakerCommissionRate

func (o *GetUmCommissionRateV1Resp) SetTakerCommissionRate(v string)

SetTakerCommissionRate gets a reference to the given string and assigns it to the TakerCommissionRate field.

func (GetUmCommissionRateV1Resp) ToMap

func (o GetUmCommissionRateV1Resp) ToMap() (map[string]interface{}, error)

type GetUmConditionalAllOrdersV1RespItem

type GetUmConditionalAllOrdersV1RespItem struct {
	ActivatePrice           *string `json:"activatePrice,omitempty"`
	BookTime                *int64  `json:"bookTime,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	NewClientStrategyId     *string `json:"newClientStrategyId,omitempty"`
	OrderId                 *int64  `json:"orderId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceMatch              *string `json:"priceMatch,omitempty"`
	PriceRate               *string `json:"priceRate,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	Status                  *string `json:"status,omitempty"`
	StopPrice               *string `json:"stopPrice,omitempty"`
	StrategyId              *int64  `json:"strategyId,omitempty"`
	StrategyStatus          *string `json:"strategyStatus,omitempty"`
	StrategyType            *string `json:"strategyType,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	TriggerTime             *int64  `json:"triggerTime,omitempty"`
	Type                    *string `json:"type,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
}

GetUmConditionalAllOrdersV1RespItem struct for GetUmConditionalAllOrdersV1RespItem

func NewGetUmConditionalAllOrdersV1RespItem

func NewGetUmConditionalAllOrdersV1RespItem() *GetUmConditionalAllOrdersV1RespItem

NewGetUmConditionalAllOrdersV1RespItem instantiates a new GetUmConditionalAllOrdersV1RespItem 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 NewGetUmConditionalAllOrdersV1RespItemWithDefaults

func NewGetUmConditionalAllOrdersV1RespItemWithDefaults() *GetUmConditionalAllOrdersV1RespItem

NewGetUmConditionalAllOrdersV1RespItemWithDefaults instantiates a new GetUmConditionalAllOrdersV1RespItem 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 (*GetUmConditionalAllOrdersV1RespItem) GetActivatePrice

func (o *GetUmConditionalAllOrdersV1RespItem) GetActivatePrice() string

GetActivatePrice returns the ActivatePrice field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetActivatePriceOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetActivatePriceOk() (*string, bool)

GetActivatePriceOk returns a tuple with the ActivatePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetBookTime

func (o *GetUmConditionalAllOrdersV1RespItem) GetBookTime() int64

GetBookTime returns the BookTime field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetBookTimeOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetBookTimeOk() (*int64, bool)

GetBookTimeOk returns a tuple with the BookTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetGoodTillDate

func (o *GetUmConditionalAllOrdersV1RespItem) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetGoodTillDateOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetGoodTillDateOk() (*int64, bool)

GetGoodTillDateOk returns a tuple with the GoodTillDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetNewClientStrategyId

func (o *GetUmConditionalAllOrdersV1RespItem) GetNewClientStrategyId() string

GetNewClientStrategyId returns the NewClientStrategyId field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetNewClientStrategyIdOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetNewClientStrategyIdOk() (*string, bool)

GetNewClientStrategyIdOk returns a tuple with the NewClientStrategyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetOrderId

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetOrderIdOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetOrigQty

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetOrigQtyOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetPositionSide

func (o *GetUmConditionalAllOrdersV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetPositionSideOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetPriceMatch

func (o *GetUmConditionalAllOrdersV1RespItem) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetPriceMatchOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetPriceMatchOk() (*string, bool)

GetPriceMatchOk returns a tuple with the PriceMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetPriceOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetPriceRate

func (o *GetUmConditionalAllOrdersV1RespItem) GetPriceRate() string

GetPriceRate returns the PriceRate field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetPriceRateOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetPriceRateOk() (*string, bool)

GetPriceRateOk returns a tuple with the PriceRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetReduceOnly

func (o *GetUmConditionalAllOrdersV1RespItem) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetReduceOnlyOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetReduceOnlyOk() (*bool, bool)

GetReduceOnlyOk returns a tuple with the ReduceOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetSelfTradePreventionMode

func (o *GetUmConditionalAllOrdersV1RespItem) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetSelfTradePreventionModeOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetSelfTradePreventionModeOk() (*string, bool)

GetSelfTradePreventionModeOk returns a tuple with the SelfTradePreventionMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetSideOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetStatusOk

func (o *GetUmConditionalAllOrdersV1RespItem) 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 (*GetUmConditionalAllOrdersV1RespItem) GetStopPrice

func (o *GetUmConditionalAllOrdersV1RespItem) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetStopPriceOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetStopPriceOk() (*string, bool)

GetStopPriceOk returns a tuple with the StopPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetStrategyId

func (o *GetUmConditionalAllOrdersV1RespItem) GetStrategyId() int64

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetStrategyIdOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetStrategyIdOk() (*int64, bool)

GetStrategyIdOk returns a tuple with the StrategyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetStrategyStatus

func (o *GetUmConditionalAllOrdersV1RespItem) GetStrategyStatus() string

GetStrategyStatus returns the StrategyStatus field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetStrategyStatusOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetStrategyStatusOk() (*string, bool)

GetStrategyStatusOk returns a tuple with the StrategyStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetStrategyType

func (o *GetUmConditionalAllOrdersV1RespItem) GetStrategyType() string

GetStrategyType returns the StrategyType field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetStrategyTypeOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetStrategyTypeOk() (*string, bool)

GetStrategyTypeOk returns a tuple with the StrategyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetSymbol

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetSymbolOk

func (o *GetUmConditionalAllOrdersV1RespItem) 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 (*GetUmConditionalAllOrdersV1RespItem) GetTimeInForce

func (o *GetUmConditionalAllOrdersV1RespItem) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetTimeInForceOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetTriggerTime

func (o *GetUmConditionalAllOrdersV1RespItem) GetTriggerTime() int64

GetTriggerTime returns the TriggerTime field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetTriggerTimeOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetTriggerTimeOk() (*int64, bool)

GetTriggerTimeOk returns a tuple with the TriggerTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetTypeOk

func (o *GetUmConditionalAllOrdersV1RespItem) 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 (*GetUmConditionalAllOrdersV1RespItem) GetUpdateTime

func (o *GetUmConditionalAllOrdersV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmConditionalAllOrdersV1RespItem) GetUpdateTimeOk

func (o *GetUmConditionalAllOrdersV1RespItem) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasActivatePrice

func (o *GetUmConditionalAllOrdersV1RespItem) HasActivatePrice() bool

HasActivatePrice returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasBookTime

func (o *GetUmConditionalAllOrdersV1RespItem) HasBookTime() bool

HasBookTime returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasGoodTillDate

func (o *GetUmConditionalAllOrdersV1RespItem) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasNewClientStrategyId

func (o *GetUmConditionalAllOrdersV1RespItem) HasNewClientStrategyId() bool

HasNewClientStrategyId returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasOrderId

func (o *GetUmConditionalAllOrdersV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasOrigQty

func (o *GetUmConditionalAllOrdersV1RespItem) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasPositionSide

func (o *GetUmConditionalAllOrdersV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasPrice

HasPrice returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasPriceMatch

func (o *GetUmConditionalAllOrdersV1RespItem) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasPriceRate

func (o *GetUmConditionalAllOrdersV1RespItem) HasPriceRate() bool

HasPriceRate returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasReduceOnly

func (o *GetUmConditionalAllOrdersV1RespItem) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasSelfTradePreventionMode

func (o *GetUmConditionalAllOrdersV1RespItem) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasSide

HasSide returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasStatus

HasStatus returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasStopPrice

func (o *GetUmConditionalAllOrdersV1RespItem) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasStrategyId

func (o *GetUmConditionalAllOrdersV1RespItem) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasStrategyStatus

func (o *GetUmConditionalAllOrdersV1RespItem) HasStrategyStatus() bool

HasStrategyStatus returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasStrategyType

func (o *GetUmConditionalAllOrdersV1RespItem) HasStrategyType() bool

HasStrategyType returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasTimeInForce

func (o *GetUmConditionalAllOrdersV1RespItem) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasTriggerTime

func (o *GetUmConditionalAllOrdersV1RespItem) HasTriggerTime() bool

HasTriggerTime returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasType

HasType returns a boolean if a field has been set.

func (*GetUmConditionalAllOrdersV1RespItem) HasUpdateTime

func (o *GetUmConditionalAllOrdersV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmConditionalAllOrdersV1RespItem) MarshalJSON

func (o GetUmConditionalAllOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*GetUmConditionalAllOrdersV1RespItem) SetActivatePrice

func (o *GetUmConditionalAllOrdersV1RespItem) SetActivatePrice(v string)

SetActivatePrice gets a reference to the given string and assigns it to the ActivatePrice field.

func (*GetUmConditionalAllOrdersV1RespItem) SetBookTime

func (o *GetUmConditionalAllOrdersV1RespItem) SetBookTime(v int64)

SetBookTime gets a reference to the given int64 and assigns it to the BookTime field.

func (*GetUmConditionalAllOrdersV1RespItem) SetGoodTillDate

func (o *GetUmConditionalAllOrdersV1RespItem) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*GetUmConditionalAllOrdersV1RespItem) SetNewClientStrategyId

func (o *GetUmConditionalAllOrdersV1RespItem) SetNewClientStrategyId(v string)

SetNewClientStrategyId gets a reference to the given string and assigns it to the NewClientStrategyId field.

func (*GetUmConditionalAllOrdersV1RespItem) SetOrderId

func (o *GetUmConditionalAllOrdersV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetUmConditionalAllOrdersV1RespItem) SetOrigQty

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetUmConditionalAllOrdersV1RespItem) SetPositionSide

func (o *GetUmConditionalAllOrdersV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmConditionalAllOrdersV1RespItem) SetPrice

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetUmConditionalAllOrdersV1RespItem) SetPriceMatch

func (o *GetUmConditionalAllOrdersV1RespItem) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*GetUmConditionalAllOrdersV1RespItem) SetPriceRate

func (o *GetUmConditionalAllOrdersV1RespItem) SetPriceRate(v string)

SetPriceRate gets a reference to the given string and assigns it to the PriceRate field.

func (*GetUmConditionalAllOrdersV1RespItem) SetReduceOnly

func (o *GetUmConditionalAllOrdersV1RespItem) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetUmConditionalAllOrdersV1RespItem) SetSelfTradePreventionMode

func (o *GetUmConditionalAllOrdersV1RespItem) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*GetUmConditionalAllOrdersV1RespItem) SetSide

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetUmConditionalAllOrdersV1RespItem) SetStatus

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetUmConditionalAllOrdersV1RespItem) SetStopPrice

func (o *GetUmConditionalAllOrdersV1RespItem) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*GetUmConditionalAllOrdersV1RespItem) SetStrategyId

func (o *GetUmConditionalAllOrdersV1RespItem) SetStrategyId(v int64)

SetStrategyId gets a reference to the given int64 and assigns it to the StrategyId field.

func (*GetUmConditionalAllOrdersV1RespItem) SetStrategyStatus

func (o *GetUmConditionalAllOrdersV1RespItem) SetStrategyStatus(v string)

SetStrategyStatus gets a reference to the given string and assigns it to the StrategyStatus field.

func (*GetUmConditionalAllOrdersV1RespItem) SetStrategyType

func (o *GetUmConditionalAllOrdersV1RespItem) SetStrategyType(v string)

SetStrategyType gets a reference to the given string and assigns it to the StrategyType field.

func (*GetUmConditionalAllOrdersV1RespItem) SetSymbol

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmConditionalAllOrdersV1RespItem) SetTimeInForce

func (o *GetUmConditionalAllOrdersV1RespItem) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetUmConditionalAllOrdersV1RespItem) SetTriggerTime

func (o *GetUmConditionalAllOrdersV1RespItem) SetTriggerTime(v int64)

SetTriggerTime gets a reference to the given int64 and assigns it to the TriggerTime field.

func (*GetUmConditionalAllOrdersV1RespItem) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetUmConditionalAllOrdersV1RespItem) SetUpdateTime

func (o *GetUmConditionalAllOrdersV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmConditionalAllOrdersV1RespItem) ToMap

func (o GetUmConditionalAllOrdersV1RespItem) ToMap() (map[string]interface{}, error)

type GetUmConditionalOpenOrderV1Resp

type GetUmConditionalOpenOrderV1Resp struct {
	ActivatePrice           *string `json:"activatePrice,omitempty"`
	BookTime                *int64  `json:"bookTime,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	NewClientStrategyId     *string `json:"newClientStrategyId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceMatch              *string `json:"priceMatch,omitempty"`
	PriceRate               *string `json:"priceRate,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	StopPrice               *string `json:"stopPrice,omitempty"`
	StrategyId              *int64  `json:"strategyId,omitempty"`
	StrategyStatus          *string `json:"strategyStatus,omitempty"`
	StrategyType            *string `json:"strategyType,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
}

GetUmConditionalOpenOrderV1Resp struct for GetUmConditionalOpenOrderV1Resp

func NewGetUmConditionalOpenOrderV1Resp

func NewGetUmConditionalOpenOrderV1Resp() *GetUmConditionalOpenOrderV1Resp

NewGetUmConditionalOpenOrderV1Resp instantiates a new GetUmConditionalOpenOrderV1Resp 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 NewGetUmConditionalOpenOrderV1RespWithDefaults

func NewGetUmConditionalOpenOrderV1RespWithDefaults() *GetUmConditionalOpenOrderV1Resp

NewGetUmConditionalOpenOrderV1RespWithDefaults instantiates a new GetUmConditionalOpenOrderV1Resp 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 (*GetUmConditionalOpenOrderV1Resp) GetActivatePrice

func (o *GetUmConditionalOpenOrderV1Resp) GetActivatePrice() string

GetActivatePrice returns the ActivatePrice field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetActivatePriceOk

func (o *GetUmConditionalOpenOrderV1Resp) GetActivatePriceOk() (*string, bool)

GetActivatePriceOk returns a tuple with the ActivatePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetBookTime

func (o *GetUmConditionalOpenOrderV1Resp) GetBookTime() int64

GetBookTime returns the BookTime field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetBookTimeOk

func (o *GetUmConditionalOpenOrderV1Resp) GetBookTimeOk() (*int64, bool)

GetBookTimeOk returns a tuple with the BookTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetGoodTillDate

func (o *GetUmConditionalOpenOrderV1Resp) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetGoodTillDateOk

func (o *GetUmConditionalOpenOrderV1Resp) GetGoodTillDateOk() (*int64, bool)

GetGoodTillDateOk returns a tuple with the GoodTillDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetNewClientStrategyId

func (o *GetUmConditionalOpenOrderV1Resp) GetNewClientStrategyId() string

GetNewClientStrategyId returns the NewClientStrategyId field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetNewClientStrategyIdOk

func (o *GetUmConditionalOpenOrderV1Resp) GetNewClientStrategyIdOk() (*string, bool)

GetNewClientStrategyIdOk returns a tuple with the NewClientStrategyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetOrigQty

func (o *GetUmConditionalOpenOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetOrigQtyOk

func (o *GetUmConditionalOpenOrderV1Resp) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetPositionSide

func (o *GetUmConditionalOpenOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetPositionSideOk

func (o *GetUmConditionalOpenOrderV1Resp) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetPriceMatch

func (o *GetUmConditionalOpenOrderV1Resp) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetPriceMatchOk

func (o *GetUmConditionalOpenOrderV1Resp) GetPriceMatchOk() (*string, bool)

GetPriceMatchOk returns a tuple with the PriceMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetPriceOk

func (o *GetUmConditionalOpenOrderV1Resp) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetPriceRate

func (o *GetUmConditionalOpenOrderV1Resp) GetPriceRate() string

GetPriceRate returns the PriceRate field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetPriceRateOk

func (o *GetUmConditionalOpenOrderV1Resp) GetPriceRateOk() (*string, bool)

GetPriceRateOk returns a tuple with the PriceRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetReduceOnly

func (o *GetUmConditionalOpenOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetReduceOnlyOk

func (o *GetUmConditionalOpenOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

GetReduceOnlyOk returns a tuple with the ReduceOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetSelfTradePreventionMode

func (o *GetUmConditionalOpenOrderV1Resp) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetSelfTradePreventionModeOk

func (o *GetUmConditionalOpenOrderV1Resp) GetSelfTradePreventionModeOk() (*string, bool)

GetSelfTradePreventionModeOk returns a tuple with the SelfTradePreventionMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetSideOk

func (o *GetUmConditionalOpenOrderV1Resp) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetStopPrice

func (o *GetUmConditionalOpenOrderV1Resp) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetStopPriceOk

func (o *GetUmConditionalOpenOrderV1Resp) GetStopPriceOk() (*string, bool)

GetStopPriceOk returns a tuple with the StopPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetStrategyId

func (o *GetUmConditionalOpenOrderV1Resp) GetStrategyId() int64

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetStrategyIdOk

func (o *GetUmConditionalOpenOrderV1Resp) GetStrategyIdOk() (*int64, bool)

GetStrategyIdOk returns a tuple with the StrategyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetStrategyStatus

func (o *GetUmConditionalOpenOrderV1Resp) GetStrategyStatus() string

GetStrategyStatus returns the StrategyStatus field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetStrategyStatusOk

func (o *GetUmConditionalOpenOrderV1Resp) GetStrategyStatusOk() (*string, bool)

GetStrategyStatusOk returns a tuple with the StrategyStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetStrategyType

func (o *GetUmConditionalOpenOrderV1Resp) GetStrategyType() string

GetStrategyType returns the StrategyType field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetStrategyTypeOk

func (o *GetUmConditionalOpenOrderV1Resp) GetStrategyTypeOk() (*string, bool)

GetStrategyTypeOk returns a tuple with the StrategyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetSymbol

func (o *GetUmConditionalOpenOrderV1Resp) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetSymbolOk

func (o *GetUmConditionalOpenOrderV1Resp) 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 (*GetUmConditionalOpenOrderV1Resp) GetTimeInForce

func (o *GetUmConditionalOpenOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetTimeInForceOk

func (o *GetUmConditionalOpenOrderV1Resp) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) GetUpdateTime

func (o *GetUmConditionalOpenOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrderV1Resp) GetUpdateTimeOk

func (o *GetUmConditionalOpenOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasActivatePrice

func (o *GetUmConditionalOpenOrderV1Resp) HasActivatePrice() bool

HasActivatePrice returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasBookTime

func (o *GetUmConditionalOpenOrderV1Resp) HasBookTime() bool

HasBookTime returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasGoodTillDate

func (o *GetUmConditionalOpenOrderV1Resp) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasNewClientStrategyId

func (o *GetUmConditionalOpenOrderV1Resp) HasNewClientStrategyId() bool

HasNewClientStrategyId returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasOrigQty

func (o *GetUmConditionalOpenOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasPositionSide

func (o *GetUmConditionalOpenOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasPrice

func (o *GetUmConditionalOpenOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasPriceMatch

func (o *GetUmConditionalOpenOrderV1Resp) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasPriceRate

func (o *GetUmConditionalOpenOrderV1Resp) HasPriceRate() bool

HasPriceRate returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasReduceOnly

func (o *GetUmConditionalOpenOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasSelfTradePreventionMode

func (o *GetUmConditionalOpenOrderV1Resp) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasSide

HasSide returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasStopPrice

func (o *GetUmConditionalOpenOrderV1Resp) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasStrategyId

func (o *GetUmConditionalOpenOrderV1Resp) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasStrategyStatus

func (o *GetUmConditionalOpenOrderV1Resp) HasStrategyStatus() bool

HasStrategyStatus returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasStrategyType

func (o *GetUmConditionalOpenOrderV1Resp) HasStrategyType() bool

HasStrategyType returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasSymbol

func (o *GetUmConditionalOpenOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasTimeInForce

func (o *GetUmConditionalOpenOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrderV1Resp) HasUpdateTime

func (o *GetUmConditionalOpenOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmConditionalOpenOrderV1Resp) MarshalJSON

func (o GetUmConditionalOpenOrderV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmConditionalOpenOrderV1Resp) SetActivatePrice

func (o *GetUmConditionalOpenOrderV1Resp) SetActivatePrice(v string)

SetActivatePrice gets a reference to the given string and assigns it to the ActivatePrice field.

func (*GetUmConditionalOpenOrderV1Resp) SetBookTime

func (o *GetUmConditionalOpenOrderV1Resp) SetBookTime(v int64)

SetBookTime gets a reference to the given int64 and assigns it to the BookTime field.

func (*GetUmConditionalOpenOrderV1Resp) SetGoodTillDate

func (o *GetUmConditionalOpenOrderV1Resp) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*GetUmConditionalOpenOrderV1Resp) SetNewClientStrategyId

func (o *GetUmConditionalOpenOrderV1Resp) SetNewClientStrategyId(v string)

SetNewClientStrategyId gets a reference to the given string and assigns it to the NewClientStrategyId field.

func (*GetUmConditionalOpenOrderV1Resp) SetOrigQty

func (o *GetUmConditionalOpenOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetUmConditionalOpenOrderV1Resp) SetPositionSide

func (o *GetUmConditionalOpenOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmConditionalOpenOrderV1Resp) SetPrice

func (o *GetUmConditionalOpenOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetUmConditionalOpenOrderV1Resp) SetPriceMatch

func (o *GetUmConditionalOpenOrderV1Resp) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*GetUmConditionalOpenOrderV1Resp) SetPriceRate

func (o *GetUmConditionalOpenOrderV1Resp) SetPriceRate(v string)

SetPriceRate gets a reference to the given string and assigns it to the PriceRate field.

func (*GetUmConditionalOpenOrderV1Resp) SetReduceOnly

func (o *GetUmConditionalOpenOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetUmConditionalOpenOrderV1Resp) SetSelfTradePreventionMode

func (o *GetUmConditionalOpenOrderV1Resp) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*GetUmConditionalOpenOrderV1Resp) SetSide

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetUmConditionalOpenOrderV1Resp) SetStopPrice

func (o *GetUmConditionalOpenOrderV1Resp) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*GetUmConditionalOpenOrderV1Resp) SetStrategyId

func (o *GetUmConditionalOpenOrderV1Resp) SetStrategyId(v int64)

SetStrategyId gets a reference to the given int64 and assigns it to the StrategyId field.

func (*GetUmConditionalOpenOrderV1Resp) SetStrategyStatus

func (o *GetUmConditionalOpenOrderV1Resp) SetStrategyStatus(v string)

SetStrategyStatus gets a reference to the given string and assigns it to the StrategyStatus field.

func (*GetUmConditionalOpenOrderV1Resp) SetStrategyType

func (o *GetUmConditionalOpenOrderV1Resp) SetStrategyType(v string)

SetStrategyType gets a reference to the given string and assigns it to the StrategyType field.

func (*GetUmConditionalOpenOrderV1Resp) SetSymbol

func (o *GetUmConditionalOpenOrderV1Resp) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmConditionalOpenOrderV1Resp) SetTimeInForce

func (o *GetUmConditionalOpenOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetUmConditionalOpenOrderV1Resp) SetUpdateTime

func (o *GetUmConditionalOpenOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmConditionalOpenOrderV1Resp) ToMap

func (o GetUmConditionalOpenOrderV1Resp) ToMap() (map[string]interface{}, error)

type GetUmConditionalOpenOrdersV1RespItem

type GetUmConditionalOpenOrdersV1RespItem struct {
	ActivatePrice           *string `json:"activatePrice,omitempty"`
	BookTime                *int64  `json:"bookTime,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	NewClientStrategyId     *string `json:"newClientStrategyId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceMatch              *string `json:"priceMatch,omitempty"`
	PriceRate               *string `json:"priceRate,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	StopPrice               *string `json:"stopPrice,omitempty"`
	StrategyId              *int64  `json:"strategyId,omitempty"`
	StrategyStatus          *string `json:"strategyStatus,omitempty"`
	StrategyType            *string `json:"strategyType,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
}

GetUmConditionalOpenOrdersV1RespItem struct for GetUmConditionalOpenOrdersV1RespItem

func NewGetUmConditionalOpenOrdersV1RespItem

func NewGetUmConditionalOpenOrdersV1RespItem() *GetUmConditionalOpenOrdersV1RespItem

NewGetUmConditionalOpenOrdersV1RespItem instantiates a new GetUmConditionalOpenOrdersV1RespItem 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 NewGetUmConditionalOpenOrdersV1RespItemWithDefaults

func NewGetUmConditionalOpenOrdersV1RespItemWithDefaults() *GetUmConditionalOpenOrdersV1RespItem

NewGetUmConditionalOpenOrdersV1RespItemWithDefaults instantiates a new GetUmConditionalOpenOrdersV1RespItem 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 (*GetUmConditionalOpenOrdersV1RespItem) GetActivatePrice

func (o *GetUmConditionalOpenOrdersV1RespItem) GetActivatePrice() string

GetActivatePrice returns the ActivatePrice field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetActivatePriceOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetActivatePriceOk() (*string, bool)

GetActivatePriceOk returns a tuple with the ActivatePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetBookTime

GetBookTime returns the BookTime field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetBookTimeOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetBookTimeOk() (*int64, bool)

GetBookTimeOk returns a tuple with the BookTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetGoodTillDate

func (o *GetUmConditionalOpenOrdersV1RespItem) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetGoodTillDateOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetGoodTillDateOk() (*int64, bool)

GetGoodTillDateOk returns a tuple with the GoodTillDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetNewClientStrategyId

func (o *GetUmConditionalOpenOrdersV1RespItem) GetNewClientStrategyId() string

GetNewClientStrategyId returns the NewClientStrategyId field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetNewClientStrategyIdOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetNewClientStrategyIdOk() (*string, bool)

GetNewClientStrategyIdOk returns a tuple with the NewClientStrategyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetOrigQty

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetOrigQtyOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetPositionSide

func (o *GetUmConditionalOpenOrdersV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetPositionSideOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetPriceMatch

func (o *GetUmConditionalOpenOrdersV1RespItem) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetPriceMatchOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetPriceMatchOk() (*string, bool)

GetPriceMatchOk returns a tuple with the PriceMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetPriceOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetPriceRate

func (o *GetUmConditionalOpenOrdersV1RespItem) GetPriceRate() string

GetPriceRate returns the PriceRate field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetPriceRateOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetPriceRateOk() (*string, bool)

GetPriceRateOk returns a tuple with the PriceRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetReduceOnly

func (o *GetUmConditionalOpenOrdersV1RespItem) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetReduceOnlyOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetReduceOnlyOk() (*bool, bool)

GetReduceOnlyOk returns a tuple with the ReduceOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetSelfTradePreventionMode

func (o *GetUmConditionalOpenOrdersV1RespItem) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetSelfTradePreventionModeOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetSelfTradePreventionModeOk() (*string, bool)

GetSelfTradePreventionModeOk returns a tuple with the SelfTradePreventionMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetSideOk

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetStopPrice

func (o *GetUmConditionalOpenOrdersV1RespItem) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetStopPriceOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetStopPriceOk() (*string, bool)

GetStopPriceOk returns a tuple with the StopPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetStrategyId

func (o *GetUmConditionalOpenOrdersV1RespItem) GetStrategyId() int64

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetStrategyIdOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetStrategyIdOk() (*int64, bool)

GetStrategyIdOk returns a tuple with the StrategyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetStrategyStatus

func (o *GetUmConditionalOpenOrdersV1RespItem) GetStrategyStatus() string

GetStrategyStatus returns the StrategyStatus field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetStrategyStatusOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetStrategyStatusOk() (*string, bool)

GetStrategyStatusOk returns a tuple with the StrategyStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetStrategyType

func (o *GetUmConditionalOpenOrdersV1RespItem) GetStrategyType() string

GetStrategyType returns the StrategyType field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetStrategyTypeOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetStrategyTypeOk() (*string, bool)

GetStrategyTypeOk returns a tuple with the StrategyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetSymbol

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetSymbolOk

func (o *GetUmConditionalOpenOrdersV1RespItem) 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 (*GetUmConditionalOpenOrdersV1RespItem) GetTimeInForce

func (o *GetUmConditionalOpenOrdersV1RespItem) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetTimeInForceOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) GetUpdateTime

func (o *GetUmConditionalOpenOrdersV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmConditionalOpenOrdersV1RespItem) GetUpdateTimeOk

func (o *GetUmConditionalOpenOrdersV1RespItem) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasActivatePrice

func (o *GetUmConditionalOpenOrdersV1RespItem) HasActivatePrice() bool

HasActivatePrice returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasBookTime

func (o *GetUmConditionalOpenOrdersV1RespItem) HasBookTime() bool

HasBookTime returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasGoodTillDate

func (o *GetUmConditionalOpenOrdersV1RespItem) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasNewClientStrategyId

func (o *GetUmConditionalOpenOrdersV1RespItem) HasNewClientStrategyId() bool

HasNewClientStrategyId returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasOrigQty

HasOrigQty returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasPositionSide

func (o *GetUmConditionalOpenOrdersV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasPrice

HasPrice returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasPriceMatch

func (o *GetUmConditionalOpenOrdersV1RespItem) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasPriceRate

func (o *GetUmConditionalOpenOrdersV1RespItem) HasPriceRate() bool

HasPriceRate returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasReduceOnly

func (o *GetUmConditionalOpenOrdersV1RespItem) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasSelfTradePreventionMode

func (o *GetUmConditionalOpenOrdersV1RespItem) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasSide

HasSide returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasStopPrice

func (o *GetUmConditionalOpenOrdersV1RespItem) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasStrategyId

func (o *GetUmConditionalOpenOrdersV1RespItem) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasStrategyStatus

func (o *GetUmConditionalOpenOrdersV1RespItem) HasStrategyStatus() bool

HasStrategyStatus returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasStrategyType

func (o *GetUmConditionalOpenOrdersV1RespItem) HasStrategyType() bool

HasStrategyType returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasTimeInForce

func (o *GetUmConditionalOpenOrdersV1RespItem) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetUmConditionalOpenOrdersV1RespItem) HasUpdateTime

func (o *GetUmConditionalOpenOrdersV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmConditionalOpenOrdersV1RespItem) MarshalJSON

func (o GetUmConditionalOpenOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*GetUmConditionalOpenOrdersV1RespItem) SetActivatePrice

func (o *GetUmConditionalOpenOrdersV1RespItem) SetActivatePrice(v string)

SetActivatePrice gets a reference to the given string and assigns it to the ActivatePrice field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetBookTime

func (o *GetUmConditionalOpenOrdersV1RespItem) SetBookTime(v int64)

SetBookTime gets a reference to the given int64 and assigns it to the BookTime field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetGoodTillDate

func (o *GetUmConditionalOpenOrdersV1RespItem) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetNewClientStrategyId

func (o *GetUmConditionalOpenOrdersV1RespItem) SetNewClientStrategyId(v string)

SetNewClientStrategyId gets a reference to the given string and assigns it to the NewClientStrategyId field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetOrigQty

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetPositionSide

func (o *GetUmConditionalOpenOrdersV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetPrice

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetPriceMatch

func (o *GetUmConditionalOpenOrdersV1RespItem) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetPriceRate

func (o *GetUmConditionalOpenOrdersV1RespItem) SetPriceRate(v string)

SetPriceRate gets a reference to the given string and assigns it to the PriceRate field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetReduceOnly

func (o *GetUmConditionalOpenOrdersV1RespItem) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetSelfTradePreventionMode

func (o *GetUmConditionalOpenOrdersV1RespItem) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetSide

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetStopPrice

func (o *GetUmConditionalOpenOrdersV1RespItem) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetStrategyId

func (o *GetUmConditionalOpenOrdersV1RespItem) SetStrategyId(v int64)

SetStrategyId gets a reference to the given int64 and assigns it to the StrategyId field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetStrategyStatus

func (o *GetUmConditionalOpenOrdersV1RespItem) SetStrategyStatus(v string)

SetStrategyStatus gets a reference to the given string and assigns it to the StrategyStatus field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetStrategyType

func (o *GetUmConditionalOpenOrdersV1RespItem) SetStrategyType(v string)

SetStrategyType gets a reference to the given string and assigns it to the StrategyType field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetSymbol

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetTimeInForce

func (o *GetUmConditionalOpenOrdersV1RespItem) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetUmConditionalOpenOrdersV1RespItem) SetUpdateTime

func (o *GetUmConditionalOpenOrdersV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmConditionalOpenOrdersV1RespItem) ToMap

func (o GetUmConditionalOpenOrdersV1RespItem) ToMap() (map[string]interface{}, error)

type GetUmConditionalOrderHistoryV1Resp

type GetUmConditionalOrderHistoryV1Resp struct {
	ActivatePrice           *string `json:"activatePrice,omitempty"`
	BookTime                *int64  `json:"bookTime,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	NewClientStrategyId     *string `json:"newClientStrategyId,omitempty"`
	OrderId                 *int64  `json:"orderId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceProtect            *bool   `json:"priceProtect,omitempty"`
	PriceRate               *string `json:"priceRate,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	Status                  *string `json:"status,omitempty"`
	StopPrice               *string `json:"stopPrice,omitempty"`
	StrategyId              *int64  `json:"strategyId,omitempty"`
	StrategyStatus          *string `json:"strategyStatus,omitempty"`
	StrategyType            *string `json:"strategyType,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	TriggerTime             *int64  `json:"triggerTime,omitempty"`
	Type                    *string `json:"type,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
	WorkingType             *string `json:"workingType,omitempty"`
}

GetUmConditionalOrderHistoryV1Resp struct for GetUmConditionalOrderHistoryV1Resp

func NewGetUmConditionalOrderHistoryV1Resp

func NewGetUmConditionalOrderHistoryV1Resp() *GetUmConditionalOrderHistoryV1Resp

NewGetUmConditionalOrderHistoryV1Resp instantiates a new GetUmConditionalOrderHistoryV1Resp 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 NewGetUmConditionalOrderHistoryV1RespWithDefaults

func NewGetUmConditionalOrderHistoryV1RespWithDefaults() *GetUmConditionalOrderHistoryV1Resp

NewGetUmConditionalOrderHistoryV1RespWithDefaults instantiates a new GetUmConditionalOrderHistoryV1Resp 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 (*GetUmConditionalOrderHistoryV1Resp) GetActivatePrice

func (o *GetUmConditionalOrderHistoryV1Resp) GetActivatePrice() string

GetActivatePrice returns the ActivatePrice field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetActivatePriceOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetActivatePriceOk() (*string, bool)

GetActivatePriceOk returns a tuple with the ActivatePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetBookTime

func (o *GetUmConditionalOrderHistoryV1Resp) GetBookTime() int64

GetBookTime returns the BookTime field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetBookTimeOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetBookTimeOk() (*int64, bool)

GetBookTimeOk returns a tuple with the BookTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetGoodTillDate

func (o *GetUmConditionalOrderHistoryV1Resp) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetGoodTillDateOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetGoodTillDateOk() (*int64, bool)

GetGoodTillDateOk returns a tuple with the GoodTillDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetNewClientStrategyId

func (o *GetUmConditionalOrderHistoryV1Resp) GetNewClientStrategyId() string

GetNewClientStrategyId returns the NewClientStrategyId field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetNewClientStrategyIdOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetNewClientStrategyIdOk() (*string, bool)

GetNewClientStrategyIdOk returns a tuple with the NewClientStrategyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetOrderId

func (o *GetUmConditionalOrderHistoryV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetOrderIdOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetOrigQty

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetOrigQtyOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetPositionSide

func (o *GetUmConditionalOrderHistoryV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetPositionSideOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetPriceOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetPriceProtect

func (o *GetUmConditionalOrderHistoryV1Resp) GetPriceProtect() bool

GetPriceProtect returns the PriceProtect field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetPriceProtectOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetPriceProtectOk() (*bool, bool)

GetPriceProtectOk returns a tuple with the PriceProtect field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetPriceRate

func (o *GetUmConditionalOrderHistoryV1Resp) GetPriceRate() string

GetPriceRate returns the PriceRate field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetPriceRateOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetPriceRateOk() (*string, bool)

GetPriceRateOk returns a tuple with the PriceRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetReduceOnly

func (o *GetUmConditionalOrderHistoryV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetReduceOnlyOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetReduceOnlyOk() (*bool, bool)

GetReduceOnlyOk returns a tuple with the ReduceOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetSelfTradePreventionMode

func (o *GetUmConditionalOrderHistoryV1Resp) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetSelfTradePreventionModeOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetSelfTradePreventionModeOk() (*string, bool)

GetSelfTradePreventionModeOk returns a tuple with the SelfTradePreventionMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetSideOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetStatusOk

func (o *GetUmConditionalOrderHistoryV1Resp) 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 (*GetUmConditionalOrderHistoryV1Resp) GetStopPrice

func (o *GetUmConditionalOrderHistoryV1Resp) GetStopPrice() string

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetStopPriceOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetStopPriceOk() (*string, bool)

GetStopPriceOk returns a tuple with the StopPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetStrategyId

func (o *GetUmConditionalOrderHistoryV1Resp) GetStrategyId() int64

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetStrategyIdOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetStrategyIdOk() (*int64, bool)

GetStrategyIdOk returns a tuple with the StrategyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetStrategyStatus

func (o *GetUmConditionalOrderHistoryV1Resp) GetStrategyStatus() string

GetStrategyStatus returns the StrategyStatus field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetStrategyStatusOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetStrategyStatusOk() (*string, bool)

GetStrategyStatusOk returns a tuple with the StrategyStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetStrategyType

func (o *GetUmConditionalOrderHistoryV1Resp) GetStrategyType() string

GetStrategyType returns the StrategyType field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetStrategyTypeOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetStrategyTypeOk() (*string, bool)

GetStrategyTypeOk returns a tuple with the StrategyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetSymbol

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetSymbolOk

func (o *GetUmConditionalOrderHistoryV1Resp) 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 (*GetUmConditionalOrderHistoryV1Resp) GetTimeInForce

func (o *GetUmConditionalOrderHistoryV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetTimeInForceOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetTriggerTime

func (o *GetUmConditionalOrderHistoryV1Resp) GetTriggerTime() int64

GetTriggerTime returns the TriggerTime field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetTriggerTimeOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetTriggerTimeOk() (*int64, bool)

GetTriggerTimeOk returns a tuple with the TriggerTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetTypeOk

func (o *GetUmConditionalOrderHistoryV1Resp) 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 (*GetUmConditionalOrderHistoryV1Resp) GetUpdateTime

func (o *GetUmConditionalOrderHistoryV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetUpdateTimeOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) GetWorkingType

func (o *GetUmConditionalOrderHistoryV1Resp) GetWorkingType() string

GetWorkingType returns the WorkingType field value if set, zero value otherwise.

func (*GetUmConditionalOrderHistoryV1Resp) GetWorkingTypeOk

func (o *GetUmConditionalOrderHistoryV1Resp) GetWorkingTypeOk() (*string, bool)

GetWorkingTypeOk returns a tuple with the WorkingType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasActivatePrice

func (o *GetUmConditionalOrderHistoryV1Resp) HasActivatePrice() bool

HasActivatePrice returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasBookTime

func (o *GetUmConditionalOrderHistoryV1Resp) HasBookTime() bool

HasBookTime returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasGoodTillDate

func (o *GetUmConditionalOrderHistoryV1Resp) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasNewClientStrategyId

func (o *GetUmConditionalOrderHistoryV1Resp) HasNewClientStrategyId() bool

HasNewClientStrategyId returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasOrderId

func (o *GetUmConditionalOrderHistoryV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasOrigQty

func (o *GetUmConditionalOrderHistoryV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasPositionSide

func (o *GetUmConditionalOrderHistoryV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasPrice

HasPrice returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasPriceProtect

func (o *GetUmConditionalOrderHistoryV1Resp) HasPriceProtect() bool

HasPriceProtect returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasPriceRate

func (o *GetUmConditionalOrderHistoryV1Resp) HasPriceRate() bool

HasPriceRate returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasReduceOnly

func (o *GetUmConditionalOrderHistoryV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasSelfTradePreventionMode

func (o *GetUmConditionalOrderHistoryV1Resp) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasSide

HasSide returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasStatus

HasStatus returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasStopPrice

func (o *GetUmConditionalOrderHistoryV1Resp) HasStopPrice() bool

HasStopPrice returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasStrategyId

func (o *GetUmConditionalOrderHistoryV1Resp) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasStrategyStatus

func (o *GetUmConditionalOrderHistoryV1Resp) HasStrategyStatus() bool

HasStrategyStatus returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasStrategyType

func (o *GetUmConditionalOrderHistoryV1Resp) HasStrategyType() bool

HasStrategyType returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasTimeInForce

func (o *GetUmConditionalOrderHistoryV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasTriggerTime

func (o *GetUmConditionalOrderHistoryV1Resp) HasTriggerTime() bool

HasTriggerTime returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasType

HasType returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasUpdateTime

func (o *GetUmConditionalOrderHistoryV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (*GetUmConditionalOrderHistoryV1Resp) HasWorkingType

func (o *GetUmConditionalOrderHistoryV1Resp) HasWorkingType() bool

HasWorkingType returns a boolean if a field has been set.

func (GetUmConditionalOrderHistoryV1Resp) MarshalJSON

func (o GetUmConditionalOrderHistoryV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmConditionalOrderHistoryV1Resp) SetActivatePrice

func (o *GetUmConditionalOrderHistoryV1Resp) SetActivatePrice(v string)

SetActivatePrice gets a reference to the given string and assigns it to the ActivatePrice field.

func (*GetUmConditionalOrderHistoryV1Resp) SetBookTime

func (o *GetUmConditionalOrderHistoryV1Resp) SetBookTime(v int64)

SetBookTime gets a reference to the given int64 and assigns it to the BookTime field.

func (*GetUmConditionalOrderHistoryV1Resp) SetGoodTillDate

func (o *GetUmConditionalOrderHistoryV1Resp) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*GetUmConditionalOrderHistoryV1Resp) SetNewClientStrategyId

func (o *GetUmConditionalOrderHistoryV1Resp) SetNewClientStrategyId(v string)

SetNewClientStrategyId gets a reference to the given string and assigns it to the NewClientStrategyId field.

func (*GetUmConditionalOrderHistoryV1Resp) SetOrderId

func (o *GetUmConditionalOrderHistoryV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetUmConditionalOrderHistoryV1Resp) SetOrigQty

func (o *GetUmConditionalOrderHistoryV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetUmConditionalOrderHistoryV1Resp) SetPositionSide

func (o *GetUmConditionalOrderHistoryV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmConditionalOrderHistoryV1Resp) SetPrice

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetUmConditionalOrderHistoryV1Resp) SetPriceProtect

func (o *GetUmConditionalOrderHistoryV1Resp) SetPriceProtect(v bool)

SetPriceProtect gets a reference to the given bool and assigns it to the PriceProtect field.

func (*GetUmConditionalOrderHistoryV1Resp) SetPriceRate

func (o *GetUmConditionalOrderHistoryV1Resp) SetPriceRate(v string)

SetPriceRate gets a reference to the given string and assigns it to the PriceRate field.

func (*GetUmConditionalOrderHistoryV1Resp) SetReduceOnly

func (o *GetUmConditionalOrderHistoryV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetUmConditionalOrderHistoryV1Resp) SetSelfTradePreventionMode

func (o *GetUmConditionalOrderHistoryV1Resp) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*GetUmConditionalOrderHistoryV1Resp) SetSide

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetUmConditionalOrderHistoryV1Resp) SetStatus

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetUmConditionalOrderHistoryV1Resp) SetStopPrice

func (o *GetUmConditionalOrderHistoryV1Resp) SetStopPrice(v string)

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*GetUmConditionalOrderHistoryV1Resp) SetStrategyId

func (o *GetUmConditionalOrderHistoryV1Resp) SetStrategyId(v int64)

SetStrategyId gets a reference to the given int64 and assigns it to the StrategyId field.

func (*GetUmConditionalOrderHistoryV1Resp) SetStrategyStatus

func (o *GetUmConditionalOrderHistoryV1Resp) SetStrategyStatus(v string)

SetStrategyStatus gets a reference to the given string and assigns it to the StrategyStatus field.

func (*GetUmConditionalOrderHistoryV1Resp) SetStrategyType

func (o *GetUmConditionalOrderHistoryV1Resp) SetStrategyType(v string)

SetStrategyType gets a reference to the given string and assigns it to the StrategyType field.

func (*GetUmConditionalOrderHistoryV1Resp) SetSymbol

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmConditionalOrderHistoryV1Resp) SetTimeInForce

func (o *GetUmConditionalOrderHistoryV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetUmConditionalOrderHistoryV1Resp) SetTriggerTime

func (o *GetUmConditionalOrderHistoryV1Resp) SetTriggerTime(v int64)

SetTriggerTime gets a reference to the given int64 and assigns it to the TriggerTime field.

func (*GetUmConditionalOrderHistoryV1Resp) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetUmConditionalOrderHistoryV1Resp) SetUpdateTime

func (o *GetUmConditionalOrderHistoryV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (*GetUmConditionalOrderHistoryV1Resp) SetWorkingType

func (o *GetUmConditionalOrderHistoryV1Resp) SetWorkingType(v string)

SetWorkingType gets a reference to the given string and assigns it to the WorkingType field.

func (GetUmConditionalOrderHistoryV1Resp) ToMap

func (o GetUmConditionalOrderHistoryV1Resp) ToMap() (map[string]interface{}, error)

type GetUmFeeBurnV1Resp

type GetUmFeeBurnV1Resp struct {
	FeeBurn *bool `json:"feeBurn,omitempty"`
}

GetUmFeeBurnV1Resp struct for GetUmFeeBurnV1Resp

func NewGetUmFeeBurnV1Resp

func NewGetUmFeeBurnV1Resp() *GetUmFeeBurnV1Resp

NewGetUmFeeBurnV1Resp instantiates a new GetUmFeeBurnV1Resp 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 NewGetUmFeeBurnV1RespWithDefaults

func NewGetUmFeeBurnV1RespWithDefaults() *GetUmFeeBurnV1Resp

NewGetUmFeeBurnV1RespWithDefaults instantiates a new GetUmFeeBurnV1Resp 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 (*GetUmFeeBurnV1Resp) GetFeeBurn

func (o *GetUmFeeBurnV1Resp) GetFeeBurn() bool

GetFeeBurn returns the FeeBurn field value if set, zero value otherwise.

func (*GetUmFeeBurnV1Resp) GetFeeBurnOk

func (o *GetUmFeeBurnV1Resp) GetFeeBurnOk() (*bool, bool)

GetFeeBurnOk returns a tuple with the FeeBurn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmFeeBurnV1Resp) HasFeeBurn

func (o *GetUmFeeBurnV1Resp) HasFeeBurn() bool

HasFeeBurn returns a boolean if a field has been set.

func (GetUmFeeBurnV1Resp) MarshalJSON

func (o GetUmFeeBurnV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmFeeBurnV1Resp) SetFeeBurn

func (o *GetUmFeeBurnV1Resp) SetFeeBurn(v bool)

SetFeeBurn gets a reference to the given bool and assigns it to the FeeBurn field.

func (GetUmFeeBurnV1Resp) ToMap

func (o GetUmFeeBurnV1Resp) ToMap() (map[string]interface{}, error)

type GetUmForceOrdersV1RespItem

type GetUmForceOrdersV1RespItem struct {
	AvgPrice      *string `json:"avgPrice,omitempty"`
	ClientOrderId *string `json:"clientOrderId,omitempty"`
	CumQuote      *string `json:"cumQuote,omitempty"`
	ExecutedQty   *string `json:"executedQty,omitempty"`
	OrderId       *int64  `json:"orderId,omitempty"`
	OrigQty       *string `json:"origQty,omitempty"`
	OrigType      *string `json:"origType,omitempty"`
	PositionSide  *string `json:"positionSide,omitempty"`
	Price         *string `json:"price,omitempty"`
	ReduceOnly    *bool   `json:"reduceOnly,omitempty"`
	Side          *string `json:"side,omitempty"`
	Status        *string `json:"status,omitempty"`
	Symbol        *string `json:"symbol,omitempty"`
	Time          *int64  `json:"time,omitempty"`
	TimeInForce   *string `json:"timeInForce,omitempty"`
	Type          *string `json:"type,omitempty"`
	UpdateTime    *int64  `json:"updateTime,omitempty"`
}

GetUmForceOrdersV1RespItem struct for GetUmForceOrdersV1RespItem

func NewGetUmForceOrdersV1RespItem

func NewGetUmForceOrdersV1RespItem() *GetUmForceOrdersV1RespItem

NewGetUmForceOrdersV1RespItem instantiates a new GetUmForceOrdersV1RespItem 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 NewGetUmForceOrdersV1RespItemWithDefaults

func NewGetUmForceOrdersV1RespItemWithDefaults() *GetUmForceOrdersV1RespItem

NewGetUmForceOrdersV1RespItemWithDefaults instantiates a new GetUmForceOrdersV1RespItem 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 (*GetUmForceOrdersV1RespItem) GetAvgPrice

func (o *GetUmForceOrdersV1RespItem) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetAvgPriceOk

func (o *GetUmForceOrdersV1RespItem) GetAvgPriceOk() (*string, bool)

GetAvgPriceOk returns a tuple with the AvgPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetClientOrderId

func (o *GetUmForceOrdersV1RespItem) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetClientOrderIdOk

func (o *GetUmForceOrdersV1RespItem) GetClientOrderIdOk() (*string, bool)

GetClientOrderIdOk returns a tuple with the ClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetCumQuote

func (o *GetUmForceOrdersV1RespItem) GetCumQuote() string

GetCumQuote returns the CumQuote field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetCumQuoteOk

func (o *GetUmForceOrdersV1RespItem) GetCumQuoteOk() (*string, bool)

GetCumQuoteOk returns a tuple with the CumQuote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetExecutedQty

func (o *GetUmForceOrdersV1RespItem) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetExecutedQtyOk

func (o *GetUmForceOrdersV1RespItem) GetExecutedQtyOk() (*string, bool)

GetExecutedQtyOk returns a tuple with the ExecutedQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetOrderId

func (o *GetUmForceOrdersV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetOrderIdOk

func (o *GetUmForceOrdersV1RespItem) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetOrigQty

func (o *GetUmForceOrdersV1RespItem) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetOrigQtyOk

func (o *GetUmForceOrdersV1RespItem) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetOrigType

func (o *GetUmForceOrdersV1RespItem) GetOrigType() string

GetOrigType returns the OrigType field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetOrigTypeOk

func (o *GetUmForceOrdersV1RespItem) GetOrigTypeOk() (*string, bool)

GetOrigTypeOk returns a tuple with the OrigType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetPositionSide

func (o *GetUmForceOrdersV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetPositionSideOk

func (o *GetUmForceOrdersV1RespItem) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetPrice

func (o *GetUmForceOrdersV1RespItem) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetPriceOk

func (o *GetUmForceOrdersV1RespItem) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetReduceOnly

func (o *GetUmForceOrdersV1RespItem) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetReduceOnlyOk

func (o *GetUmForceOrdersV1RespItem) GetReduceOnlyOk() (*bool, bool)

GetReduceOnlyOk returns a tuple with the ReduceOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetSide

func (o *GetUmForceOrdersV1RespItem) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetSideOk

func (o *GetUmForceOrdersV1RespItem) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetStatus

func (o *GetUmForceOrdersV1RespItem) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetStatusOk

func (o *GetUmForceOrdersV1RespItem) 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 (*GetUmForceOrdersV1RespItem) GetSymbol

func (o *GetUmForceOrdersV1RespItem) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetSymbolOk

func (o *GetUmForceOrdersV1RespItem) 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 (*GetUmForceOrdersV1RespItem) GetTime

func (o *GetUmForceOrdersV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetTimeInForce

func (o *GetUmForceOrdersV1RespItem) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetTimeInForceOk

func (o *GetUmForceOrdersV1RespItem) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetTimeOk

func (o *GetUmForceOrdersV1RespItem) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) GetType

func (o *GetUmForceOrdersV1RespItem) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetTypeOk

func (o *GetUmForceOrdersV1RespItem) 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 (*GetUmForceOrdersV1RespItem) GetUpdateTime

func (o *GetUmForceOrdersV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmForceOrdersV1RespItem) GetUpdateTimeOk

func (o *GetUmForceOrdersV1RespItem) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmForceOrdersV1RespItem) HasAvgPrice

func (o *GetUmForceOrdersV1RespItem) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasClientOrderId

func (o *GetUmForceOrdersV1RespItem) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasCumQuote

func (o *GetUmForceOrdersV1RespItem) HasCumQuote() bool

HasCumQuote returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasExecutedQty

func (o *GetUmForceOrdersV1RespItem) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasOrderId

func (o *GetUmForceOrdersV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasOrigQty

func (o *GetUmForceOrdersV1RespItem) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasOrigType

func (o *GetUmForceOrdersV1RespItem) HasOrigType() bool

HasOrigType returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasPositionSide

func (o *GetUmForceOrdersV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasPrice

func (o *GetUmForceOrdersV1RespItem) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasReduceOnly

func (o *GetUmForceOrdersV1RespItem) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasSide

func (o *GetUmForceOrdersV1RespItem) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasStatus

func (o *GetUmForceOrdersV1RespItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasSymbol

func (o *GetUmForceOrdersV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasTime

func (o *GetUmForceOrdersV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasTimeInForce

func (o *GetUmForceOrdersV1RespItem) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasType

func (o *GetUmForceOrdersV1RespItem) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetUmForceOrdersV1RespItem) HasUpdateTime

func (o *GetUmForceOrdersV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmForceOrdersV1RespItem) MarshalJSON

func (o GetUmForceOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*GetUmForceOrdersV1RespItem) SetAvgPrice

func (o *GetUmForceOrdersV1RespItem) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*GetUmForceOrdersV1RespItem) SetClientOrderId

func (o *GetUmForceOrdersV1RespItem) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetUmForceOrdersV1RespItem) SetCumQuote

func (o *GetUmForceOrdersV1RespItem) SetCumQuote(v string)

SetCumQuote gets a reference to the given string and assigns it to the CumQuote field.

func (*GetUmForceOrdersV1RespItem) SetExecutedQty

func (o *GetUmForceOrdersV1RespItem) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetUmForceOrdersV1RespItem) SetOrderId

func (o *GetUmForceOrdersV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetUmForceOrdersV1RespItem) SetOrigQty

func (o *GetUmForceOrdersV1RespItem) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetUmForceOrdersV1RespItem) SetOrigType

func (o *GetUmForceOrdersV1RespItem) SetOrigType(v string)

SetOrigType gets a reference to the given string and assigns it to the OrigType field.

func (*GetUmForceOrdersV1RespItem) SetPositionSide

func (o *GetUmForceOrdersV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmForceOrdersV1RespItem) SetPrice

func (o *GetUmForceOrdersV1RespItem) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetUmForceOrdersV1RespItem) SetReduceOnly

func (o *GetUmForceOrdersV1RespItem) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetUmForceOrdersV1RespItem) SetSide

func (o *GetUmForceOrdersV1RespItem) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetUmForceOrdersV1RespItem) SetStatus

func (o *GetUmForceOrdersV1RespItem) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetUmForceOrdersV1RespItem) SetSymbol

func (o *GetUmForceOrdersV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmForceOrdersV1RespItem) SetTime

func (o *GetUmForceOrdersV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetUmForceOrdersV1RespItem) SetTimeInForce

func (o *GetUmForceOrdersV1RespItem) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetUmForceOrdersV1RespItem) SetType

func (o *GetUmForceOrdersV1RespItem) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetUmForceOrdersV1RespItem) SetUpdateTime

func (o *GetUmForceOrdersV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmForceOrdersV1RespItem) ToMap

func (o GetUmForceOrdersV1RespItem) ToMap() (map[string]interface{}, error)

type GetUmIncomeAsynIdV1Resp

type GetUmIncomeAsynIdV1Resp struct {
	DownloadId          *string                `json:"downloadId,omitempty"`
	ExpirationTimestamp *int64                 `json:"expirationTimestamp,omitempty"`
	IsExpired           map[string]interface{} `json:"isExpired,omitempty"`
	Notified            *bool                  `json:"notified,omitempty"`
	S3Link              map[string]interface{} `json:"s3Link,omitempty"`
	Status              *string                `json:"status,omitempty"`
	Url                 *string                `json:"url,omitempty"`
}

GetUmIncomeAsynIdV1Resp struct for GetUmIncomeAsynIdV1Resp

func NewGetUmIncomeAsynIdV1Resp

func NewGetUmIncomeAsynIdV1Resp() *GetUmIncomeAsynIdV1Resp

NewGetUmIncomeAsynIdV1Resp instantiates a new GetUmIncomeAsynIdV1Resp 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 NewGetUmIncomeAsynIdV1RespWithDefaults

func NewGetUmIncomeAsynIdV1RespWithDefaults() *GetUmIncomeAsynIdV1Resp

NewGetUmIncomeAsynIdV1RespWithDefaults instantiates a new GetUmIncomeAsynIdV1Resp 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 (*GetUmIncomeAsynIdV1Resp) GetDownloadId

func (o *GetUmIncomeAsynIdV1Resp) GetDownloadId() string

GetDownloadId returns the DownloadId field value if set, zero value otherwise.

func (*GetUmIncomeAsynIdV1Resp) GetDownloadIdOk

func (o *GetUmIncomeAsynIdV1Resp) GetDownloadIdOk() (*string, bool)

GetDownloadIdOk returns a tuple with the DownloadId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmIncomeAsynIdV1Resp) GetExpirationTimestamp

func (o *GetUmIncomeAsynIdV1Resp) GetExpirationTimestamp() int64

GetExpirationTimestamp returns the ExpirationTimestamp field value if set, zero value otherwise.

func (*GetUmIncomeAsynIdV1Resp) GetExpirationTimestampOk

func (o *GetUmIncomeAsynIdV1Resp) GetExpirationTimestampOk() (*int64, bool)

GetExpirationTimestampOk returns a tuple with the ExpirationTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmIncomeAsynIdV1Resp) GetIsExpired

func (o *GetUmIncomeAsynIdV1Resp) GetIsExpired() map[string]interface{}

GetIsExpired returns the IsExpired field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GetUmIncomeAsynIdV1Resp) GetIsExpiredOk

func (o *GetUmIncomeAsynIdV1Resp) GetIsExpiredOk() (map[string]interface{}, bool)

GetIsExpiredOk returns a tuple with the IsExpired 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 (*GetUmIncomeAsynIdV1Resp) GetNotified

func (o *GetUmIncomeAsynIdV1Resp) GetNotified() bool

GetNotified returns the Notified field value if set, zero value otherwise.

func (*GetUmIncomeAsynIdV1Resp) GetNotifiedOk

func (o *GetUmIncomeAsynIdV1Resp) GetNotifiedOk() (*bool, bool)

GetNotifiedOk returns a tuple with the Notified field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *GetUmIncomeAsynIdV1Resp) GetS3Link() map[string]interface{}

GetS3Link returns the S3Link field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GetUmIncomeAsynIdV1Resp) GetS3LinkOk

func (o *GetUmIncomeAsynIdV1Resp) GetS3LinkOk() (map[string]interface{}, bool)

GetS3LinkOk returns a tuple with the S3Link 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 (*GetUmIncomeAsynIdV1Resp) GetStatus

func (o *GetUmIncomeAsynIdV1Resp) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetUmIncomeAsynIdV1Resp) GetStatusOk

func (o *GetUmIncomeAsynIdV1Resp) 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 (*GetUmIncomeAsynIdV1Resp) GetUrl

func (o *GetUmIncomeAsynIdV1Resp) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*GetUmIncomeAsynIdV1Resp) GetUrlOk

func (o *GetUmIncomeAsynIdV1Resp) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmIncomeAsynIdV1Resp) HasDownloadId

func (o *GetUmIncomeAsynIdV1Resp) HasDownloadId() bool

HasDownloadId returns a boolean if a field has been set.

func (*GetUmIncomeAsynIdV1Resp) HasExpirationTimestamp

func (o *GetUmIncomeAsynIdV1Resp) HasExpirationTimestamp() bool

HasExpirationTimestamp returns a boolean if a field has been set.

func (*GetUmIncomeAsynIdV1Resp) HasIsExpired

func (o *GetUmIncomeAsynIdV1Resp) HasIsExpired() bool

HasIsExpired returns a boolean if a field has been set.

func (*GetUmIncomeAsynIdV1Resp) HasNotified

func (o *GetUmIncomeAsynIdV1Resp) HasNotified() bool

HasNotified returns a boolean if a field has been set.

func (o *GetUmIncomeAsynIdV1Resp) HasS3Link() bool

HasS3Link returns a boolean if a field has been set.

func (*GetUmIncomeAsynIdV1Resp) HasStatus

func (o *GetUmIncomeAsynIdV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetUmIncomeAsynIdV1Resp) HasUrl

func (o *GetUmIncomeAsynIdV1Resp) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (GetUmIncomeAsynIdV1Resp) MarshalJSON

func (o GetUmIncomeAsynIdV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmIncomeAsynIdV1Resp) SetDownloadId

func (o *GetUmIncomeAsynIdV1Resp) SetDownloadId(v string)

SetDownloadId gets a reference to the given string and assigns it to the DownloadId field.

func (*GetUmIncomeAsynIdV1Resp) SetExpirationTimestamp

func (o *GetUmIncomeAsynIdV1Resp) SetExpirationTimestamp(v int64)

SetExpirationTimestamp gets a reference to the given int64 and assigns it to the ExpirationTimestamp field.

func (*GetUmIncomeAsynIdV1Resp) SetIsExpired

func (o *GetUmIncomeAsynIdV1Resp) SetIsExpired(v map[string]interface{})

SetIsExpired gets a reference to the given map[string]interface{} and assigns it to the IsExpired field.

func (*GetUmIncomeAsynIdV1Resp) SetNotified

func (o *GetUmIncomeAsynIdV1Resp) SetNotified(v bool)

SetNotified gets a reference to the given bool and assigns it to the Notified field.

func (o *GetUmIncomeAsynIdV1Resp) SetS3Link(v map[string]interface{})

SetS3Link gets a reference to the given map[string]interface{} and assigns it to the S3Link field.

func (*GetUmIncomeAsynIdV1Resp) SetStatus

func (o *GetUmIncomeAsynIdV1Resp) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetUmIncomeAsynIdV1Resp) SetUrl

func (o *GetUmIncomeAsynIdV1Resp) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (GetUmIncomeAsynIdV1Resp) ToMap

func (o GetUmIncomeAsynIdV1Resp) ToMap() (map[string]interface{}, error)

type GetUmIncomeAsynV1Resp

type GetUmIncomeAsynV1Resp struct {
	AvgCostTimestampOfLast30d *int32  `json:"avgCostTimestampOfLast30d,omitempty"`
	DownloadId                *string `json:"downloadId,omitempty"`
}

GetUmIncomeAsynV1Resp struct for GetUmIncomeAsynV1Resp

func NewGetUmIncomeAsynV1Resp

func NewGetUmIncomeAsynV1Resp() *GetUmIncomeAsynV1Resp

NewGetUmIncomeAsynV1Resp instantiates a new GetUmIncomeAsynV1Resp 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 NewGetUmIncomeAsynV1RespWithDefaults

func NewGetUmIncomeAsynV1RespWithDefaults() *GetUmIncomeAsynV1Resp

NewGetUmIncomeAsynV1RespWithDefaults instantiates a new GetUmIncomeAsynV1Resp 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 (*GetUmIncomeAsynV1Resp) GetAvgCostTimestampOfLast30d

func (o *GetUmIncomeAsynV1Resp) GetAvgCostTimestampOfLast30d() int32

GetAvgCostTimestampOfLast30d returns the AvgCostTimestampOfLast30d field value if set, zero value otherwise.

func (*GetUmIncomeAsynV1Resp) GetAvgCostTimestampOfLast30dOk

func (o *GetUmIncomeAsynV1Resp) GetAvgCostTimestampOfLast30dOk() (*int32, bool)

GetAvgCostTimestampOfLast30dOk returns a tuple with the AvgCostTimestampOfLast30d field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmIncomeAsynV1Resp) GetDownloadId

func (o *GetUmIncomeAsynV1Resp) GetDownloadId() string

GetDownloadId returns the DownloadId field value if set, zero value otherwise.

func (*GetUmIncomeAsynV1Resp) GetDownloadIdOk

func (o *GetUmIncomeAsynV1Resp) GetDownloadIdOk() (*string, bool)

GetDownloadIdOk returns a tuple with the DownloadId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmIncomeAsynV1Resp) HasAvgCostTimestampOfLast30d

func (o *GetUmIncomeAsynV1Resp) HasAvgCostTimestampOfLast30d() bool

HasAvgCostTimestampOfLast30d returns a boolean if a field has been set.

func (*GetUmIncomeAsynV1Resp) HasDownloadId

func (o *GetUmIncomeAsynV1Resp) HasDownloadId() bool

HasDownloadId returns a boolean if a field has been set.

func (GetUmIncomeAsynV1Resp) MarshalJSON

func (o GetUmIncomeAsynV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmIncomeAsynV1Resp) SetAvgCostTimestampOfLast30d

func (o *GetUmIncomeAsynV1Resp) SetAvgCostTimestampOfLast30d(v int32)

SetAvgCostTimestampOfLast30d gets a reference to the given int32 and assigns it to the AvgCostTimestampOfLast30d field.

func (*GetUmIncomeAsynV1Resp) SetDownloadId

func (o *GetUmIncomeAsynV1Resp) SetDownloadId(v string)

SetDownloadId gets a reference to the given string and assigns it to the DownloadId field.

func (GetUmIncomeAsynV1Resp) ToMap

func (o GetUmIncomeAsynV1Resp) ToMap() (map[string]interface{}, error)

type GetUmIncomeV1RespItem

type GetUmIncomeV1RespItem struct {
	Asset      *string `json:"asset,omitempty"`
	Income     *string `json:"income,omitempty"`
	IncomeType *string `json:"incomeType,omitempty"`
	Info       *string `json:"info,omitempty"`
	Symbol     *string `json:"symbol,omitempty"`
	Time       *int64  `json:"time,omitempty"`
	TradeId    *string `json:"tradeId,omitempty"`
	TranId     *string `json:"tranId,omitempty"`
}

GetUmIncomeV1RespItem struct for GetUmIncomeV1RespItem

func NewGetUmIncomeV1RespItem

func NewGetUmIncomeV1RespItem() *GetUmIncomeV1RespItem

NewGetUmIncomeV1RespItem instantiates a new GetUmIncomeV1RespItem 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 NewGetUmIncomeV1RespItemWithDefaults

func NewGetUmIncomeV1RespItemWithDefaults() *GetUmIncomeV1RespItem

NewGetUmIncomeV1RespItemWithDefaults instantiates a new GetUmIncomeV1RespItem 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 (*GetUmIncomeV1RespItem) GetAsset

func (o *GetUmIncomeV1RespItem) GetAsset() string

GetAsset returns the Asset field value if set, zero value otherwise.

func (*GetUmIncomeV1RespItem) GetAssetOk

func (o *GetUmIncomeV1RespItem) GetAssetOk() (*string, bool)

GetAssetOk returns a tuple with the Asset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmIncomeV1RespItem) GetIncome

func (o *GetUmIncomeV1RespItem) GetIncome() string

GetIncome returns the Income field value if set, zero value otherwise.

func (*GetUmIncomeV1RespItem) GetIncomeOk

func (o *GetUmIncomeV1RespItem) GetIncomeOk() (*string, bool)

GetIncomeOk returns a tuple with the Income field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmIncomeV1RespItem) GetIncomeType

func (o *GetUmIncomeV1RespItem) GetIncomeType() string

GetIncomeType returns the IncomeType field value if set, zero value otherwise.

func (*GetUmIncomeV1RespItem) GetIncomeTypeOk

func (o *GetUmIncomeV1RespItem) GetIncomeTypeOk() (*string, bool)

GetIncomeTypeOk returns a tuple with the IncomeType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmIncomeV1RespItem) GetInfo

func (o *GetUmIncomeV1RespItem) GetInfo() string

GetInfo returns the Info field value if set, zero value otherwise.

func (*GetUmIncomeV1RespItem) GetInfoOk

func (o *GetUmIncomeV1RespItem) GetInfoOk() (*string, bool)

GetInfoOk returns a tuple with the Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmIncomeV1RespItem) GetSymbol

func (o *GetUmIncomeV1RespItem) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmIncomeV1RespItem) GetSymbolOk

func (o *GetUmIncomeV1RespItem) 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 (*GetUmIncomeV1RespItem) GetTime

func (o *GetUmIncomeV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetUmIncomeV1RespItem) GetTimeOk

func (o *GetUmIncomeV1RespItem) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmIncomeV1RespItem) GetTradeId

func (o *GetUmIncomeV1RespItem) GetTradeId() string

GetTradeId returns the TradeId field value if set, zero value otherwise.

func (*GetUmIncomeV1RespItem) GetTradeIdOk

func (o *GetUmIncomeV1RespItem) GetTradeIdOk() (*string, bool)

GetTradeIdOk returns a tuple with the TradeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmIncomeV1RespItem) GetTranId

func (o *GetUmIncomeV1RespItem) GetTranId() string

GetTranId returns the TranId field value if set, zero value otherwise.

func (*GetUmIncomeV1RespItem) GetTranIdOk

func (o *GetUmIncomeV1RespItem) GetTranIdOk() (*string, bool)

GetTranIdOk returns a tuple with the TranId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmIncomeV1RespItem) HasAsset

func (o *GetUmIncomeV1RespItem) HasAsset() bool

HasAsset returns a boolean if a field has been set.

func (*GetUmIncomeV1RespItem) HasIncome

func (o *GetUmIncomeV1RespItem) HasIncome() bool

HasIncome returns a boolean if a field has been set.

func (*GetUmIncomeV1RespItem) HasIncomeType

func (o *GetUmIncomeV1RespItem) HasIncomeType() bool

HasIncomeType returns a boolean if a field has been set.

func (*GetUmIncomeV1RespItem) HasInfo

func (o *GetUmIncomeV1RespItem) HasInfo() bool

HasInfo returns a boolean if a field has been set.

func (*GetUmIncomeV1RespItem) HasSymbol

func (o *GetUmIncomeV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmIncomeV1RespItem) HasTime

func (o *GetUmIncomeV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetUmIncomeV1RespItem) HasTradeId

func (o *GetUmIncomeV1RespItem) HasTradeId() bool

HasTradeId returns a boolean if a field has been set.

func (*GetUmIncomeV1RespItem) HasTranId

func (o *GetUmIncomeV1RespItem) HasTranId() bool

HasTranId returns a boolean if a field has been set.

func (GetUmIncomeV1RespItem) MarshalJSON

func (o GetUmIncomeV1RespItem) MarshalJSON() ([]byte, error)

func (*GetUmIncomeV1RespItem) SetAsset

func (o *GetUmIncomeV1RespItem) SetAsset(v string)

SetAsset gets a reference to the given string and assigns it to the Asset field.

func (*GetUmIncomeV1RespItem) SetIncome

func (o *GetUmIncomeV1RespItem) SetIncome(v string)

SetIncome gets a reference to the given string and assigns it to the Income field.

func (*GetUmIncomeV1RespItem) SetIncomeType

func (o *GetUmIncomeV1RespItem) SetIncomeType(v string)

SetIncomeType gets a reference to the given string and assigns it to the IncomeType field.

func (*GetUmIncomeV1RespItem) SetInfo

func (o *GetUmIncomeV1RespItem) SetInfo(v string)

SetInfo gets a reference to the given string and assigns it to the Info field.

func (*GetUmIncomeV1RespItem) SetSymbol

func (o *GetUmIncomeV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmIncomeV1RespItem) SetTime

func (o *GetUmIncomeV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetUmIncomeV1RespItem) SetTradeId

func (o *GetUmIncomeV1RespItem) SetTradeId(v string)

SetTradeId gets a reference to the given string and assigns it to the TradeId field.

func (*GetUmIncomeV1RespItem) SetTranId

func (o *GetUmIncomeV1RespItem) SetTranId(v string)

SetTranId gets a reference to the given string and assigns it to the TranId field.

func (GetUmIncomeV1RespItem) ToMap

func (o GetUmIncomeV1RespItem) ToMap() (map[string]interface{}, error)

type GetUmLeverageBracketV1RespItem

type GetUmLeverageBracketV1RespItem struct {
	Brackets     []GetUmLeverageBracketV1RespItemBracketsInner `json:"brackets,omitempty"`
	NotionalCoef *string                                       `json:"notionalCoef,omitempty"`
	Symbol       *string                                       `json:"symbol,omitempty"`
}

GetUmLeverageBracketV1RespItem struct for GetUmLeverageBracketV1RespItem

func NewGetUmLeverageBracketV1RespItem

func NewGetUmLeverageBracketV1RespItem() *GetUmLeverageBracketV1RespItem

NewGetUmLeverageBracketV1RespItem instantiates a new GetUmLeverageBracketV1RespItem 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 NewGetUmLeverageBracketV1RespItemWithDefaults

func NewGetUmLeverageBracketV1RespItemWithDefaults() *GetUmLeverageBracketV1RespItem

NewGetUmLeverageBracketV1RespItemWithDefaults instantiates a new GetUmLeverageBracketV1RespItem 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 (*GetUmLeverageBracketV1RespItem) GetBrackets

GetBrackets returns the Brackets field value if set, zero value otherwise.

func (*GetUmLeverageBracketV1RespItem) GetBracketsOk

GetBracketsOk returns a tuple with the Brackets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmLeverageBracketV1RespItem) GetNotionalCoef

func (o *GetUmLeverageBracketV1RespItem) GetNotionalCoef() string

GetNotionalCoef returns the NotionalCoef field value if set, zero value otherwise.

func (*GetUmLeverageBracketV1RespItem) GetNotionalCoefOk

func (o *GetUmLeverageBracketV1RespItem) GetNotionalCoefOk() (*string, bool)

GetNotionalCoefOk returns a tuple with the NotionalCoef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmLeverageBracketV1RespItem) GetSymbol

func (o *GetUmLeverageBracketV1RespItem) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmLeverageBracketV1RespItem) GetSymbolOk

func (o *GetUmLeverageBracketV1RespItem) 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 (*GetUmLeverageBracketV1RespItem) HasBrackets

func (o *GetUmLeverageBracketV1RespItem) HasBrackets() bool

HasBrackets returns a boolean if a field has been set.

func (*GetUmLeverageBracketV1RespItem) HasNotionalCoef

func (o *GetUmLeverageBracketV1RespItem) HasNotionalCoef() bool

HasNotionalCoef returns a boolean if a field has been set.

func (*GetUmLeverageBracketV1RespItem) HasSymbol

func (o *GetUmLeverageBracketV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (GetUmLeverageBracketV1RespItem) MarshalJSON

func (o GetUmLeverageBracketV1RespItem) MarshalJSON() ([]byte, error)

func (*GetUmLeverageBracketV1RespItem) SetBrackets

SetBrackets gets a reference to the given []GetUmLeverageBracketV1RespItemBracketsInner and assigns it to the Brackets field.

func (*GetUmLeverageBracketV1RespItem) SetNotionalCoef

func (o *GetUmLeverageBracketV1RespItem) SetNotionalCoef(v string)

SetNotionalCoef gets a reference to the given string and assigns it to the NotionalCoef field.

func (*GetUmLeverageBracketV1RespItem) SetSymbol

func (o *GetUmLeverageBracketV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (GetUmLeverageBracketV1RespItem) ToMap

func (o GetUmLeverageBracketV1RespItem) ToMap() (map[string]interface{}, error)

type GetUmLeverageBracketV1RespItemBracketsInner

type GetUmLeverageBracketV1RespItemBracketsInner struct {
	Bracket          *int32   `json:"bracket,omitempty"`
	Cum              *int32   `json:"cum,omitempty"`
	InitialLeverage  *int32   `json:"initialLeverage,omitempty"`
	MaintMarginRatio *float32 `json:"maintMarginRatio,omitempty"`
	NotionalCap      *int32   `json:"notionalCap,omitempty"`
	NotionalFloor    *int32   `json:"notionalFloor,omitempty"`
}

GetUmLeverageBracketV1RespItemBracketsInner struct for GetUmLeverageBracketV1RespItemBracketsInner

func NewGetUmLeverageBracketV1RespItemBracketsInner

func NewGetUmLeverageBracketV1RespItemBracketsInner() *GetUmLeverageBracketV1RespItemBracketsInner

NewGetUmLeverageBracketV1RespItemBracketsInner instantiates a new GetUmLeverageBracketV1RespItemBracketsInner 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 NewGetUmLeverageBracketV1RespItemBracketsInnerWithDefaults

func NewGetUmLeverageBracketV1RespItemBracketsInnerWithDefaults() *GetUmLeverageBracketV1RespItemBracketsInner

NewGetUmLeverageBracketV1RespItemBracketsInnerWithDefaults instantiates a new GetUmLeverageBracketV1RespItemBracketsInner 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 (*GetUmLeverageBracketV1RespItemBracketsInner) GetBracket

GetBracket returns the Bracket field value if set, zero value otherwise.

func (*GetUmLeverageBracketV1RespItemBracketsInner) GetBracketOk

GetBracketOk returns a tuple with the Bracket field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmLeverageBracketV1RespItemBracketsInner) GetCum

GetCum returns the Cum field value if set, zero value otherwise.

func (*GetUmLeverageBracketV1RespItemBracketsInner) GetCumOk

GetCumOk returns a tuple with the Cum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmLeverageBracketV1RespItemBracketsInner) GetInitialLeverage

func (o *GetUmLeverageBracketV1RespItemBracketsInner) GetInitialLeverage() int32

GetInitialLeverage returns the InitialLeverage field value if set, zero value otherwise.

func (*GetUmLeverageBracketV1RespItemBracketsInner) GetInitialLeverageOk

func (o *GetUmLeverageBracketV1RespItemBracketsInner) GetInitialLeverageOk() (*int32, bool)

GetInitialLeverageOk returns a tuple with the InitialLeverage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmLeverageBracketV1RespItemBracketsInner) GetMaintMarginRatio

func (o *GetUmLeverageBracketV1RespItemBracketsInner) GetMaintMarginRatio() float32

GetMaintMarginRatio returns the MaintMarginRatio field value if set, zero value otherwise.

func (*GetUmLeverageBracketV1RespItemBracketsInner) GetMaintMarginRatioOk

func (o *GetUmLeverageBracketV1RespItemBracketsInner) GetMaintMarginRatioOk() (*float32, bool)

GetMaintMarginRatioOk returns a tuple with the MaintMarginRatio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmLeverageBracketV1RespItemBracketsInner) GetNotionalCap

GetNotionalCap returns the NotionalCap field value if set, zero value otherwise.

func (*GetUmLeverageBracketV1RespItemBracketsInner) GetNotionalCapOk

func (o *GetUmLeverageBracketV1RespItemBracketsInner) GetNotionalCapOk() (*int32, bool)

GetNotionalCapOk returns a tuple with the NotionalCap field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmLeverageBracketV1RespItemBracketsInner) GetNotionalFloor

func (o *GetUmLeverageBracketV1RespItemBracketsInner) GetNotionalFloor() int32

GetNotionalFloor returns the NotionalFloor field value if set, zero value otherwise.

func (*GetUmLeverageBracketV1RespItemBracketsInner) GetNotionalFloorOk

func (o *GetUmLeverageBracketV1RespItemBracketsInner) GetNotionalFloorOk() (*int32, bool)

GetNotionalFloorOk returns a tuple with the NotionalFloor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmLeverageBracketV1RespItemBracketsInner) HasBracket

HasBracket returns a boolean if a field has been set.

func (*GetUmLeverageBracketV1RespItemBracketsInner) HasCum

HasCum returns a boolean if a field has been set.

func (*GetUmLeverageBracketV1RespItemBracketsInner) HasInitialLeverage

func (o *GetUmLeverageBracketV1RespItemBracketsInner) HasInitialLeverage() bool

HasInitialLeverage returns a boolean if a field has been set.

func (*GetUmLeverageBracketV1RespItemBracketsInner) HasMaintMarginRatio

func (o *GetUmLeverageBracketV1RespItemBracketsInner) HasMaintMarginRatio() bool

HasMaintMarginRatio returns a boolean if a field has been set.

func (*GetUmLeverageBracketV1RespItemBracketsInner) HasNotionalCap

HasNotionalCap returns a boolean if a field has been set.

func (*GetUmLeverageBracketV1RespItemBracketsInner) HasNotionalFloor

func (o *GetUmLeverageBracketV1RespItemBracketsInner) HasNotionalFloor() bool

HasNotionalFloor returns a boolean if a field has been set.

func (GetUmLeverageBracketV1RespItemBracketsInner) MarshalJSON

func (*GetUmLeverageBracketV1RespItemBracketsInner) SetBracket

SetBracket gets a reference to the given int32 and assigns it to the Bracket field.

func (*GetUmLeverageBracketV1RespItemBracketsInner) SetCum

SetCum gets a reference to the given int32 and assigns it to the Cum field.

func (*GetUmLeverageBracketV1RespItemBracketsInner) SetInitialLeverage

func (o *GetUmLeverageBracketV1RespItemBracketsInner) SetInitialLeverage(v int32)

SetInitialLeverage gets a reference to the given int32 and assigns it to the InitialLeverage field.

func (*GetUmLeverageBracketV1RespItemBracketsInner) SetMaintMarginRatio

func (o *GetUmLeverageBracketV1RespItemBracketsInner) SetMaintMarginRatio(v float32)

SetMaintMarginRatio gets a reference to the given float32 and assigns it to the MaintMarginRatio field.

func (*GetUmLeverageBracketV1RespItemBracketsInner) SetNotionalCap

SetNotionalCap gets a reference to the given int32 and assigns it to the NotionalCap field.

func (*GetUmLeverageBracketV1RespItemBracketsInner) SetNotionalFloor

func (o *GetUmLeverageBracketV1RespItemBracketsInner) SetNotionalFloor(v int32)

SetNotionalFloor gets a reference to the given int32 and assigns it to the NotionalFloor field.

func (GetUmLeverageBracketV1RespItemBracketsInner) ToMap

func (o GetUmLeverageBracketV1RespItemBracketsInner) ToMap() (map[string]interface{}, error)

type GetUmOpenOrderV1Resp

type GetUmOpenOrderV1Resp struct {
	AvgPrice                *string `json:"avgPrice,omitempty"`
	ClientOrderId           *string `json:"clientOrderId,omitempty"`
	CumQuote                *string `json:"cumQuote,omitempty"`
	ExecutedQty             *string `json:"executedQty,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	OrderId                 *int64  `json:"orderId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	OrigType                *string `json:"origType,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceMatch              *string `json:"priceMatch,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	Status                  *string `json:"status,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	Time                    *int64  `json:"time,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	Type                    *string `json:"type,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
}

GetUmOpenOrderV1Resp struct for GetUmOpenOrderV1Resp

func NewGetUmOpenOrderV1Resp

func NewGetUmOpenOrderV1Resp() *GetUmOpenOrderV1Resp

NewGetUmOpenOrderV1Resp instantiates a new GetUmOpenOrderV1Resp 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 NewGetUmOpenOrderV1RespWithDefaults

func NewGetUmOpenOrderV1RespWithDefaults() *GetUmOpenOrderV1Resp

NewGetUmOpenOrderV1RespWithDefaults instantiates a new GetUmOpenOrderV1Resp 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 (*GetUmOpenOrderV1Resp) GetAvgPrice

func (o *GetUmOpenOrderV1Resp) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetAvgPriceOk

func (o *GetUmOpenOrderV1Resp) GetAvgPriceOk() (*string, bool)

GetAvgPriceOk returns a tuple with the AvgPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetClientOrderId

func (o *GetUmOpenOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetClientOrderIdOk

func (o *GetUmOpenOrderV1Resp) GetClientOrderIdOk() (*string, bool)

GetClientOrderIdOk returns a tuple with the ClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetCumQuote

func (o *GetUmOpenOrderV1Resp) GetCumQuote() string

GetCumQuote returns the CumQuote field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetCumQuoteOk

func (o *GetUmOpenOrderV1Resp) GetCumQuoteOk() (*string, bool)

GetCumQuoteOk returns a tuple with the CumQuote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetExecutedQty

func (o *GetUmOpenOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetExecutedQtyOk

func (o *GetUmOpenOrderV1Resp) GetExecutedQtyOk() (*string, bool)

GetExecutedQtyOk returns a tuple with the ExecutedQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetGoodTillDate

func (o *GetUmOpenOrderV1Resp) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetGoodTillDateOk

func (o *GetUmOpenOrderV1Resp) GetGoodTillDateOk() (*int64, bool)

GetGoodTillDateOk returns a tuple with the GoodTillDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetOrderId

func (o *GetUmOpenOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetOrderIdOk

func (o *GetUmOpenOrderV1Resp) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetOrigQty

func (o *GetUmOpenOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetOrigQtyOk

func (o *GetUmOpenOrderV1Resp) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetOrigType

func (o *GetUmOpenOrderV1Resp) GetOrigType() string

GetOrigType returns the OrigType field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetOrigTypeOk

func (o *GetUmOpenOrderV1Resp) GetOrigTypeOk() (*string, bool)

GetOrigTypeOk returns a tuple with the OrigType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetPositionSide

func (o *GetUmOpenOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetPositionSideOk

func (o *GetUmOpenOrderV1Resp) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetPrice

func (o *GetUmOpenOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetPriceMatch

func (o *GetUmOpenOrderV1Resp) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetPriceMatchOk

func (o *GetUmOpenOrderV1Resp) GetPriceMatchOk() (*string, bool)

GetPriceMatchOk returns a tuple with the PriceMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetPriceOk

func (o *GetUmOpenOrderV1Resp) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetReduceOnly

func (o *GetUmOpenOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetReduceOnlyOk

func (o *GetUmOpenOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

GetReduceOnlyOk returns a tuple with the ReduceOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetSelfTradePreventionMode

func (o *GetUmOpenOrderV1Resp) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetSelfTradePreventionModeOk

func (o *GetUmOpenOrderV1Resp) GetSelfTradePreventionModeOk() (*string, bool)

GetSelfTradePreventionModeOk returns a tuple with the SelfTradePreventionMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetSide

func (o *GetUmOpenOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetSideOk

func (o *GetUmOpenOrderV1Resp) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetStatus

func (o *GetUmOpenOrderV1Resp) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetStatusOk

func (o *GetUmOpenOrderV1Resp) 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 (*GetUmOpenOrderV1Resp) GetSymbol

func (o *GetUmOpenOrderV1Resp) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetSymbolOk

func (o *GetUmOpenOrderV1Resp) 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 (*GetUmOpenOrderV1Resp) GetTime

func (o *GetUmOpenOrderV1Resp) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetTimeInForce

func (o *GetUmOpenOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetTimeInForceOk

func (o *GetUmOpenOrderV1Resp) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetTimeOk

func (o *GetUmOpenOrderV1Resp) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) GetType

func (o *GetUmOpenOrderV1Resp) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetTypeOk

func (o *GetUmOpenOrderV1Resp) 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 (*GetUmOpenOrderV1Resp) GetUpdateTime

func (o *GetUmOpenOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmOpenOrderV1Resp) GetUpdateTimeOk

func (o *GetUmOpenOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrderV1Resp) HasAvgPrice

func (o *GetUmOpenOrderV1Resp) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasClientOrderId

func (o *GetUmOpenOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasCumQuote

func (o *GetUmOpenOrderV1Resp) HasCumQuote() bool

HasCumQuote returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasExecutedQty

func (o *GetUmOpenOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasGoodTillDate

func (o *GetUmOpenOrderV1Resp) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasOrderId

func (o *GetUmOpenOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasOrigQty

func (o *GetUmOpenOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasOrigType

func (o *GetUmOpenOrderV1Resp) HasOrigType() bool

HasOrigType returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasPositionSide

func (o *GetUmOpenOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasPrice

func (o *GetUmOpenOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasPriceMatch

func (o *GetUmOpenOrderV1Resp) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasReduceOnly

func (o *GetUmOpenOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasSelfTradePreventionMode

func (o *GetUmOpenOrderV1Resp) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasSide

func (o *GetUmOpenOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasStatus

func (o *GetUmOpenOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasSymbol

func (o *GetUmOpenOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasTime

func (o *GetUmOpenOrderV1Resp) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasTimeInForce

func (o *GetUmOpenOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasType

func (o *GetUmOpenOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetUmOpenOrderV1Resp) HasUpdateTime

func (o *GetUmOpenOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmOpenOrderV1Resp) MarshalJSON

func (o GetUmOpenOrderV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmOpenOrderV1Resp) SetAvgPrice

func (o *GetUmOpenOrderV1Resp) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*GetUmOpenOrderV1Resp) SetClientOrderId

func (o *GetUmOpenOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetUmOpenOrderV1Resp) SetCumQuote

func (o *GetUmOpenOrderV1Resp) SetCumQuote(v string)

SetCumQuote gets a reference to the given string and assigns it to the CumQuote field.

func (*GetUmOpenOrderV1Resp) SetExecutedQty

func (o *GetUmOpenOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetUmOpenOrderV1Resp) SetGoodTillDate

func (o *GetUmOpenOrderV1Resp) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*GetUmOpenOrderV1Resp) SetOrderId

func (o *GetUmOpenOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetUmOpenOrderV1Resp) SetOrigQty

func (o *GetUmOpenOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetUmOpenOrderV1Resp) SetOrigType

func (o *GetUmOpenOrderV1Resp) SetOrigType(v string)

SetOrigType gets a reference to the given string and assigns it to the OrigType field.

func (*GetUmOpenOrderV1Resp) SetPositionSide

func (o *GetUmOpenOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmOpenOrderV1Resp) SetPrice

func (o *GetUmOpenOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetUmOpenOrderV1Resp) SetPriceMatch

func (o *GetUmOpenOrderV1Resp) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*GetUmOpenOrderV1Resp) SetReduceOnly

func (o *GetUmOpenOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetUmOpenOrderV1Resp) SetSelfTradePreventionMode

func (o *GetUmOpenOrderV1Resp) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*GetUmOpenOrderV1Resp) SetSide

func (o *GetUmOpenOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetUmOpenOrderV1Resp) SetStatus

func (o *GetUmOpenOrderV1Resp) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetUmOpenOrderV1Resp) SetSymbol

func (o *GetUmOpenOrderV1Resp) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmOpenOrderV1Resp) SetTime

func (o *GetUmOpenOrderV1Resp) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetUmOpenOrderV1Resp) SetTimeInForce

func (o *GetUmOpenOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetUmOpenOrderV1Resp) SetType

func (o *GetUmOpenOrderV1Resp) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetUmOpenOrderV1Resp) SetUpdateTime

func (o *GetUmOpenOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmOpenOrderV1Resp) ToMap

func (o GetUmOpenOrderV1Resp) ToMap() (map[string]interface{}, error)

type GetUmOpenOrdersV1RespItem

type GetUmOpenOrdersV1RespItem struct {
	AvgPrice                *string `json:"avgPrice,omitempty"`
	ClientOrderId           *string `json:"clientOrderId,omitempty"`
	CumQuote                *string `json:"cumQuote,omitempty"`
	ExecutedQty             *string `json:"executedQty,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	OrderId                 *int64  `json:"orderId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	OrigType                *string `json:"origType,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceMatch              *string `json:"priceMatch,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	Status                  *string `json:"status,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	Time                    *int64  `json:"time,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	Type                    *string `json:"type,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
}

GetUmOpenOrdersV1RespItem struct for GetUmOpenOrdersV1RespItem

func NewGetUmOpenOrdersV1RespItem

func NewGetUmOpenOrdersV1RespItem() *GetUmOpenOrdersV1RespItem

NewGetUmOpenOrdersV1RespItem instantiates a new GetUmOpenOrdersV1RespItem 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 NewGetUmOpenOrdersV1RespItemWithDefaults

func NewGetUmOpenOrdersV1RespItemWithDefaults() *GetUmOpenOrdersV1RespItem

NewGetUmOpenOrdersV1RespItemWithDefaults instantiates a new GetUmOpenOrdersV1RespItem 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 (*GetUmOpenOrdersV1RespItem) GetAvgPrice

func (o *GetUmOpenOrdersV1RespItem) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetAvgPriceOk

func (o *GetUmOpenOrdersV1RespItem) GetAvgPriceOk() (*string, bool)

GetAvgPriceOk returns a tuple with the AvgPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetClientOrderId

func (o *GetUmOpenOrdersV1RespItem) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetClientOrderIdOk

func (o *GetUmOpenOrdersV1RespItem) GetClientOrderIdOk() (*string, bool)

GetClientOrderIdOk returns a tuple with the ClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetCumQuote

func (o *GetUmOpenOrdersV1RespItem) GetCumQuote() string

GetCumQuote returns the CumQuote field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetCumQuoteOk

func (o *GetUmOpenOrdersV1RespItem) GetCumQuoteOk() (*string, bool)

GetCumQuoteOk returns a tuple with the CumQuote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetExecutedQty

func (o *GetUmOpenOrdersV1RespItem) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetExecutedQtyOk

func (o *GetUmOpenOrdersV1RespItem) GetExecutedQtyOk() (*string, bool)

GetExecutedQtyOk returns a tuple with the ExecutedQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetGoodTillDate

func (o *GetUmOpenOrdersV1RespItem) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetGoodTillDateOk

func (o *GetUmOpenOrdersV1RespItem) GetGoodTillDateOk() (*int64, bool)

GetGoodTillDateOk returns a tuple with the GoodTillDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetOrderId

func (o *GetUmOpenOrdersV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetOrderIdOk

func (o *GetUmOpenOrdersV1RespItem) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetOrigQty

func (o *GetUmOpenOrdersV1RespItem) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetOrigQtyOk

func (o *GetUmOpenOrdersV1RespItem) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetOrigType

func (o *GetUmOpenOrdersV1RespItem) GetOrigType() string

GetOrigType returns the OrigType field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetOrigTypeOk

func (o *GetUmOpenOrdersV1RespItem) GetOrigTypeOk() (*string, bool)

GetOrigTypeOk returns a tuple with the OrigType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetPositionSide

func (o *GetUmOpenOrdersV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetPositionSideOk

func (o *GetUmOpenOrdersV1RespItem) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetPrice

func (o *GetUmOpenOrdersV1RespItem) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetPriceMatch

func (o *GetUmOpenOrdersV1RespItem) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetPriceMatchOk

func (o *GetUmOpenOrdersV1RespItem) GetPriceMatchOk() (*string, bool)

GetPriceMatchOk returns a tuple with the PriceMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetPriceOk

func (o *GetUmOpenOrdersV1RespItem) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetReduceOnly

func (o *GetUmOpenOrdersV1RespItem) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetReduceOnlyOk

func (o *GetUmOpenOrdersV1RespItem) GetReduceOnlyOk() (*bool, bool)

GetReduceOnlyOk returns a tuple with the ReduceOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetSelfTradePreventionMode

func (o *GetUmOpenOrdersV1RespItem) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetSelfTradePreventionModeOk

func (o *GetUmOpenOrdersV1RespItem) GetSelfTradePreventionModeOk() (*string, bool)

GetSelfTradePreventionModeOk returns a tuple with the SelfTradePreventionMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetSide

func (o *GetUmOpenOrdersV1RespItem) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetSideOk

func (o *GetUmOpenOrdersV1RespItem) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetStatus

func (o *GetUmOpenOrdersV1RespItem) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetStatusOk

func (o *GetUmOpenOrdersV1RespItem) 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 (*GetUmOpenOrdersV1RespItem) GetSymbol

func (o *GetUmOpenOrdersV1RespItem) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetSymbolOk

func (o *GetUmOpenOrdersV1RespItem) 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 (*GetUmOpenOrdersV1RespItem) GetTime

func (o *GetUmOpenOrdersV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetTimeInForce

func (o *GetUmOpenOrdersV1RespItem) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetTimeInForceOk

func (o *GetUmOpenOrdersV1RespItem) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetTimeOk

func (o *GetUmOpenOrdersV1RespItem) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) GetType

func (o *GetUmOpenOrdersV1RespItem) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetTypeOk

func (o *GetUmOpenOrdersV1RespItem) 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 (*GetUmOpenOrdersV1RespItem) GetUpdateTime

func (o *GetUmOpenOrdersV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmOpenOrdersV1RespItem) GetUpdateTimeOk

func (o *GetUmOpenOrdersV1RespItem) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOpenOrdersV1RespItem) HasAvgPrice

func (o *GetUmOpenOrdersV1RespItem) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasClientOrderId

func (o *GetUmOpenOrdersV1RespItem) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasCumQuote

func (o *GetUmOpenOrdersV1RespItem) HasCumQuote() bool

HasCumQuote returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasExecutedQty

func (o *GetUmOpenOrdersV1RespItem) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasGoodTillDate

func (o *GetUmOpenOrdersV1RespItem) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasOrderId

func (o *GetUmOpenOrdersV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasOrigQty

func (o *GetUmOpenOrdersV1RespItem) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasOrigType

func (o *GetUmOpenOrdersV1RespItem) HasOrigType() bool

HasOrigType returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasPositionSide

func (o *GetUmOpenOrdersV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasPrice

func (o *GetUmOpenOrdersV1RespItem) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasPriceMatch

func (o *GetUmOpenOrdersV1RespItem) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasReduceOnly

func (o *GetUmOpenOrdersV1RespItem) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasSelfTradePreventionMode

func (o *GetUmOpenOrdersV1RespItem) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasSide

func (o *GetUmOpenOrdersV1RespItem) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasStatus

func (o *GetUmOpenOrdersV1RespItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasSymbol

func (o *GetUmOpenOrdersV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasTime

func (o *GetUmOpenOrdersV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasTimeInForce

func (o *GetUmOpenOrdersV1RespItem) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasType

func (o *GetUmOpenOrdersV1RespItem) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetUmOpenOrdersV1RespItem) HasUpdateTime

func (o *GetUmOpenOrdersV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmOpenOrdersV1RespItem) MarshalJSON

func (o GetUmOpenOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*GetUmOpenOrdersV1RespItem) SetAvgPrice

func (o *GetUmOpenOrdersV1RespItem) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*GetUmOpenOrdersV1RespItem) SetClientOrderId

func (o *GetUmOpenOrdersV1RespItem) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetUmOpenOrdersV1RespItem) SetCumQuote

func (o *GetUmOpenOrdersV1RespItem) SetCumQuote(v string)

SetCumQuote gets a reference to the given string and assigns it to the CumQuote field.

func (*GetUmOpenOrdersV1RespItem) SetExecutedQty

func (o *GetUmOpenOrdersV1RespItem) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetUmOpenOrdersV1RespItem) SetGoodTillDate

func (o *GetUmOpenOrdersV1RespItem) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*GetUmOpenOrdersV1RespItem) SetOrderId

func (o *GetUmOpenOrdersV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetUmOpenOrdersV1RespItem) SetOrigQty

func (o *GetUmOpenOrdersV1RespItem) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetUmOpenOrdersV1RespItem) SetOrigType

func (o *GetUmOpenOrdersV1RespItem) SetOrigType(v string)

SetOrigType gets a reference to the given string and assigns it to the OrigType field.

func (*GetUmOpenOrdersV1RespItem) SetPositionSide

func (o *GetUmOpenOrdersV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmOpenOrdersV1RespItem) SetPrice

func (o *GetUmOpenOrdersV1RespItem) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetUmOpenOrdersV1RespItem) SetPriceMatch

func (o *GetUmOpenOrdersV1RespItem) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*GetUmOpenOrdersV1RespItem) SetReduceOnly

func (o *GetUmOpenOrdersV1RespItem) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetUmOpenOrdersV1RespItem) SetSelfTradePreventionMode

func (o *GetUmOpenOrdersV1RespItem) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*GetUmOpenOrdersV1RespItem) SetSide

func (o *GetUmOpenOrdersV1RespItem) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetUmOpenOrdersV1RespItem) SetStatus

func (o *GetUmOpenOrdersV1RespItem) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetUmOpenOrdersV1RespItem) SetSymbol

func (o *GetUmOpenOrdersV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmOpenOrdersV1RespItem) SetTime

func (o *GetUmOpenOrdersV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetUmOpenOrdersV1RespItem) SetTimeInForce

func (o *GetUmOpenOrdersV1RespItem) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetUmOpenOrdersV1RespItem) SetType

func (o *GetUmOpenOrdersV1RespItem) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetUmOpenOrdersV1RespItem) SetUpdateTime

func (o *GetUmOpenOrdersV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmOpenOrdersV1RespItem) ToMap

func (o GetUmOpenOrdersV1RespItem) ToMap() (map[string]interface{}, error)

type GetUmOrderAmendmentV1RespItem

type GetUmOrderAmendmentV1RespItem struct {
	Amendment     *GetCmOrderAmendmentV1RespItemAmendment `json:"amendment,omitempty"`
	AmendmentId   *int64                                  `json:"amendmentId,omitempty"`
	ClientOrderId *string                                 `json:"clientOrderId,omitempty"`
	OrderId       *int64                                  `json:"orderId,omitempty"`
	Pair          *string                                 `json:"pair,omitempty"`
	PriceMatch    *string                                 `json:"priceMatch,omitempty"`
	Symbol        *string                                 `json:"symbol,omitempty"`
	Time          *int64                                  `json:"time,omitempty"`
}

GetUmOrderAmendmentV1RespItem struct for GetUmOrderAmendmentV1RespItem

func NewGetUmOrderAmendmentV1RespItem

func NewGetUmOrderAmendmentV1RespItem() *GetUmOrderAmendmentV1RespItem

NewGetUmOrderAmendmentV1RespItem instantiates a new GetUmOrderAmendmentV1RespItem 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 NewGetUmOrderAmendmentV1RespItemWithDefaults

func NewGetUmOrderAmendmentV1RespItemWithDefaults() *GetUmOrderAmendmentV1RespItem

NewGetUmOrderAmendmentV1RespItemWithDefaults instantiates a new GetUmOrderAmendmentV1RespItem 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 (*GetUmOrderAmendmentV1RespItem) GetAmendment

GetAmendment returns the Amendment field value if set, zero value otherwise.

func (*GetUmOrderAmendmentV1RespItem) GetAmendmentId

func (o *GetUmOrderAmendmentV1RespItem) GetAmendmentId() int64

GetAmendmentId returns the AmendmentId field value if set, zero value otherwise.

func (*GetUmOrderAmendmentV1RespItem) GetAmendmentIdOk

func (o *GetUmOrderAmendmentV1RespItem) GetAmendmentIdOk() (*int64, bool)

GetAmendmentIdOk returns a tuple with the AmendmentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderAmendmentV1RespItem) GetAmendmentOk

GetAmendmentOk returns a tuple with the Amendment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderAmendmentV1RespItem) GetClientOrderId

func (o *GetUmOrderAmendmentV1RespItem) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetUmOrderAmendmentV1RespItem) GetClientOrderIdOk

func (o *GetUmOrderAmendmentV1RespItem) GetClientOrderIdOk() (*string, bool)

GetClientOrderIdOk returns a tuple with the ClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderAmendmentV1RespItem) GetOrderId

func (o *GetUmOrderAmendmentV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetUmOrderAmendmentV1RespItem) GetOrderIdOk

func (o *GetUmOrderAmendmentV1RespItem) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderAmendmentV1RespItem) GetPair

GetPair returns the Pair field value if set, zero value otherwise.

func (*GetUmOrderAmendmentV1RespItem) GetPairOk

func (o *GetUmOrderAmendmentV1RespItem) GetPairOk() (*string, bool)

GetPairOk returns a tuple with the Pair field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderAmendmentV1RespItem) GetPriceMatch

func (o *GetUmOrderAmendmentV1RespItem) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*GetUmOrderAmendmentV1RespItem) GetPriceMatchOk

func (o *GetUmOrderAmendmentV1RespItem) GetPriceMatchOk() (*string, bool)

GetPriceMatchOk returns a tuple with the PriceMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderAmendmentV1RespItem) GetSymbol

func (o *GetUmOrderAmendmentV1RespItem) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmOrderAmendmentV1RespItem) GetSymbolOk

func (o *GetUmOrderAmendmentV1RespItem) 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 (*GetUmOrderAmendmentV1RespItem) GetTime

func (o *GetUmOrderAmendmentV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetUmOrderAmendmentV1RespItem) GetTimeOk

func (o *GetUmOrderAmendmentV1RespItem) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderAmendmentV1RespItem) HasAmendment

func (o *GetUmOrderAmendmentV1RespItem) HasAmendment() bool

HasAmendment returns a boolean if a field has been set.

func (*GetUmOrderAmendmentV1RespItem) HasAmendmentId

func (o *GetUmOrderAmendmentV1RespItem) HasAmendmentId() bool

HasAmendmentId returns a boolean if a field has been set.

func (*GetUmOrderAmendmentV1RespItem) HasClientOrderId

func (o *GetUmOrderAmendmentV1RespItem) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetUmOrderAmendmentV1RespItem) HasOrderId

func (o *GetUmOrderAmendmentV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetUmOrderAmendmentV1RespItem) HasPair

func (o *GetUmOrderAmendmentV1RespItem) HasPair() bool

HasPair returns a boolean if a field has been set.

func (*GetUmOrderAmendmentV1RespItem) HasPriceMatch

func (o *GetUmOrderAmendmentV1RespItem) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*GetUmOrderAmendmentV1RespItem) HasSymbol

func (o *GetUmOrderAmendmentV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmOrderAmendmentV1RespItem) HasTime

func (o *GetUmOrderAmendmentV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (GetUmOrderAmendmentV1RespItem) MarshalJSON

func (o GetUmOrderAmendmentV1RespItem) MarshalJSON() ([]byte, error)

func (*GetUmOrderAmendmentV1RespItem) SetAmendment

SetAmendment gets a reference to the given GetCmOrderAmendmentV1RespItemAmendment and assigns it to the Amendment field.

func (*GetUmOrderAmendmentV1RespItem) SetAmendmentId

func (o *GetUmOrderAmendmentV1RespItem) SetAmendmentId(v int64)

SetAmendmentId gets a reference to the given int64 and assigns it to the AmendmentId field.

func (*GetUmOrderAmendmentV1RespItem) SetClientOrderId

func (o *GetUmOrderAmendmentV1RespItem) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetUmOrderAmendmentV1RespItem) SetOrderId

func (o *GetUmOrderAmendmentV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetUmOrderAmendmentV1RespItem) SetPair

func (o *GetUmOrderAmendmentV1RespItem) SetPair(v string)

SetPair gets a reference to the given string and assigns it to the Pair field.

func (*GetUmOrderAmendmentV1RespItem) SetPriceMatch

func (o *GetUmOrderAmendmentV1RespItem) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*GetUmOrderAmendmentV1RespItem) SetSymbol

func (o *GetUmOrderAmendmentV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmOrderAmendmentV1RespItem) SetTime

func (o *GetUmOrderAmendmentV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (GetUmOrderAmendmentV1RespItem) ToMap

func (o GetUmOrderAmendmentV1RespItem) ToMap() (map[string]interface{}, error)

type GetUmOrderAsynIdV1Resp

type GetUmOrderAsynIdV1Resp struct {
	DownloadId          *string                `json:"downloadId,omitempty"`
	ExpirationTimestamp *int64                 `json:"expirationTimestamp,omitempty"`
	IsExpired           map[string]interface{} `json:"isExpired,omitempty"`
	Notified            *bool                  `json:"notified,omitempty"`
	S3Link              map[string]interface{} `json:"s3Link,omitempty"`
	Status              *string                `json:"status,omitempty"`
	Url                 *string                `json:"url,omitempty"`
}

GetUmOrderAsynIdV1Resp struct for GetUmOrderAsynIdV1Resp

func NewGetUmOrderAsynIdV1Resp

func NewGetUmOrderAsynIdV1Resp() *GetUmOrderAsynIdV1Resp

NewGetUmOrderAsynIdV1Resp instantiates a new GetUmOrderAsynIdV1Resp 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 NewGetUmOrderAsynIdV1RespWithDefaults

func NewGetUmOrderAsynIdV1RespWithDefaults() *GetUmOrderAsynIdV1Resp

NewGetUmOrderAsynIdV1RespWithDefaults instantiates a new GetUmOrderAsynIdV1Resp 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 (*GetUmOrderAsynIdV1Resp) GetDownloadId

func (o *GetUmOrderAsynIdV1Resp) GetDownloadId() string

GetDownloadId returns the DownloadId field value if set, zero value otherwise.

func (*GetUmOrderAsynIdV1Resp) GetDownloadIdOk

func (o *GetUmOrderAsynIdV1Resp) GetDownloadIdOk() (*string, bool)

GetDownloadIdOk returns a tuple with the DownloadId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderAsynIdV1Resp) GetExpirationTimestamp

func (o *GetUmOrderAsynIdV1Resp) GetExpirationTimestamp() int64

GetExpirationTimestamp returns the ExpirationTimestamp field value if set, zero value otherwise.

func (*GetUmOrderAsynIdV1Resp) GetExpirationTimestampOk

func (o *GetUmOrderAsynIdV1Resp) GetExpirationTimestampOk() (*int64, bool)

GetExpirationTimestampOk returns a tuple with the ExpirationTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderAsynIdV1Resp) GetIsExpired

func (o *GetUmOrderAsynIdV1Resp) GetIsExpired() map[string]interface{}

GetIsExpired returns the IsExpired field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GetUmOrderAsynIdV1Resp) GetIsExpiredOk

func (o *GetUmOrderAsynIdV1Resp) GetIsExpiredOk() (map[string]interface{}, bool)

GetIsExpiredOk returns a tuple with the IsExpired 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 (*GetUmOrderAsynIdV1Resp) GetNotified

func (o *GetUmOrderAsynIdV1Resp) GetNotified() bool

GetNotified returns the Notified field value if set, zero value otherwise.

func (*GetUmOrderAsynIdV1Resp) GetNotifiedOk

func (o *GetUmOrderAsynIdV1Resp) GetNotifiedOk() (*bool, bool)

GetNotifiedOk returns a tuple with the Notified field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *GetUmOrderAsynIdV1Resp) GetS3Link() map[string]interface{}

GetS3Link returns the S3Link field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GetUmOrderAsynIdV1Resp) GetS3LinkOk

func (o *GetUmOrderAsynIdV1Resp) GetS3LinkOk() (map[string]interface{}, bool)

GetS3LinkOk returns a tuple with the S3Link 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 (*GetUmOrderAsynIdV1Resp) GetStatus

func (o *GetUmOrderAsynIdV1Resp) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetUmOrderAsynIdV1Resp) GetStatusOk

func (o *GetUmOrderAsynIdV1Resp) 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 (*GetUmOrderAsynIdV1Resp) GetUrl

func (o *GetUmOrderAsynIdV1Resp) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*GetUmOrderAsynIdV1Resp) GetUrlOk

func (o *GetUmOrderAsynIdV1Resp) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderAsynIdV1Resp) HasDownloadId

func (o *GetUmOrderAsynIdV1Resp) HasDownloadId() bool

HasDownloadId returns a boolean if a field has been set.

func (*GetUmOrderAsynIdV1Resp) HasExpirationTimestamp

func (o *GetUmOrderAsynIdV1Resp) HasExpirationTimestamp() bool

HasExpirationTimestamp returns a boolean if a field has been set.

func (*GetUmOrderAsynIdV1Resp) HasIsExpired

func (o *GetUmOrderAsynIdV1Resp) HasIsExpired() bool

HasIsExpired returns a boolean if a field has been set.

func (*GetUmOrderAsynIdV1Resp) HasNotified

func (o *GetUmOrderAsynIdV1Resp) HasNotified() bool

HasNotified returns a boolean if a field has been set.

func (o *GetUmOrderAsynIdV1Resp) HasS3Link() bool

HasS3Link returns a boolean if a field has been set.

func (*GetUmOrderAsynIdV1Resp) HasStatus

func (o *GetUmOrderAsynIdV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetUmOrderAsynIdV1Resp) HasUrl

func (o *GetUmOrderAsynIdV1Resp) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (GetUmOrderAsynIdV1Resp) MarshalJSON

func (o GetUmOrderAsynIdV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmOrderAsynIdV1Resp) SetDownloadId

func (o *GetUmOrderAsynIdV1Resp) SetDownloadId(v string)

SetDownloadId gets a reference to the given string and assigns it to the DownloadId field.

func (*GetUmOrderAsynIdV1Resp) SetExpirationTimestamp

func (o *GetUmOrderAsynIdV1Resp) SetExpirationTimestamp(v int64)

SetExpirationTimestamp gets a reference to the given int64 and assigns it to the ExpirationTimestamp field.

func (*GetUmOrderAsynIdV1Resp) SetIsExpired

func (o *GetUmOrderAsynIdV1Resp) SetIsExpired(v map[string]interface{})

SetIsExpired gets a reference to the given map[string]interface{} and assigns it to the IsExpired field.

func (*GetUmOrderAsynIdV1Resp) SetNotified

func (o *GetUmOrderAsynIdV1Resp) SetNotified(v bool)

SetNotified gets a reference to the given bool and assigns it to the Notified field.

func (o *GetUmOrderAsynIdV1Resp) SetS3Link(v map[string]interface{})

SetS3Link gets a reference to the given map[string]interface{} and assigns it to the S3Link field.

func (*GetUmOrderAsynIdV1Resp) SetStatus

func (o *GetUmOrderAsynIdV1Resp) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetUmOrderAsynIdV1Resp) SetUrl

func (o *GetUmOrderAsynIdV1Resp) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (GetUmOrderAsynIdV1Resp) ToMap

func (o GetUmOrderAsynIdV1Resp) ToMap() (map[string]interface{}, error)

type GetUmOrderAsynV1Resp

type GetUmOrderAsynV1Resp struct {
	AvgCostTimestampOfLast30d *int32  `json:"avgCostTimestampOfLast30d,omitempty"`
	DownloadId                *string `json:"downloadId,omitempty"`
}

GetUmOrderAsynV1Resp struct for GetUmOrderAsynV1Resp

func NewGetUmOrderAsynV1Resp

func NewGetUmOrderAsynV1Resp() *GetUmOrderAsynV1Resp

NewGetUmOrderAsynV1Resp instantiates a new GetUmOrderAsynV1Resp 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 NewGetUmOrderAsynV1RespWithDefaults

func NewGetUmOrderAsynV1RespWithDefaults() *GetUmOrderAsynV1Resp

NewGetUmOrderAsynV1RespWithDefaults instantiates a new GetUmOrderAsynV1Resp 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 (*GetUmOrderAsynV1Resp) GetAvgCostTimestampOfLast30d

func (o *GetUmOrderAsynV1Resp) GetAvgCostTimestampOfLast30d() int32

GetAvgCostTimestampOfLast30d returns the AvgCostTimestampOfLast30d field value if set, zero value otherwise.

func (*GetUmOrderAsynV1Resp) GetAvgCostTimestampOfLast30dOk

func (o *GetUmOrderAsynV1Resp) GetAvgCostTimestampOfLast30dOk() (*int32, bool)

GetAvgCostTimestampOfLast30dOk returns a tuple with the AvgCostTimestampOfLast30d field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderAsynV1Resp) GetDownloadId

func (o *GetUmOrderAsynV1Resp) GetDownloadId() string

GetDownloadId returns the DownloadId field value if set, zero value otherwise.

func (*GetUmOrderAsynV1Resp) GetDownloadIdOk

func (o *GetUmOrderAsynV1Resp) GetDownloadIdOk() (*string, bool)

GetDownloadIdOk returns a tuple with the DownloadId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderAsynV1Resp) HasAvgCostTimestampOfLast30d

func (o *GetUmOrderAsynV1Resp) HasAvgCostTimestampOfLast30d() bool

HasAvgCostTimestampOfLast30d returns a boolean if a field has been set.

func (*GetUmOrderAsynV1Resp) HasDownloadId

func (o *GetUmOrderAsynV1Resp) HasDownloadId() bool

HasDownloadId returns a boolean if a field has been set.

func (GetUmOrderAsynV1Resp) MarshalJSON

func (o GetUmOrderAsynV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmOrderAsynV1Resp) SetAvgCostTimestampOfLast30d

func (o *GetUmOrderAsynV1Resp) SetAvgCostTimestampOfLast30d(v int32)

SetAvgCostTimestampOfLast30d gets a reference to the given int32 and assigns it to the AvgCostTimestampOfLast30d field.

func (*GetUmOrderAsynV1Resp) SetDownloadId

func (o *GetUmOrderAsynV1Resp) SetDownloadId(v string)

SetDownloadId gets a reference to the given string and assigns it to the DownloadId field.

func (GetUmOrderAsynV1Resp) ToMap

func (o GetUmOrderAsynV1Resp) ToMap() (map[string]interface{}, error)

type GetUmOrderV1Resp

type GetUmOrderV1Resp struct {
	AvgPrice                *string `json:"avgPrice,omitempty"`
	ClientOrderId           *string `json:"clientOrderId,omitempty"`
	CumQuote                *string `json:"cumQuote,omitempty"`
	ExecutedQty             *string `json:"executedQty,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	OrderId                 *int64  `json:"orderId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	OrigType                *string `json:"origType,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceMatch              *string `json:"priceMatch,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	Status                  *string `json:"status,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	Time                    *int64  `json:"time,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	Type                    *string `json:"type,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
}

GetUmOrderV1Resp struct for GetUmOrderV1Resp

func NewGetUmOrderV1Resp

func NewGetUmOrderV1Resp() *GetUmOrderV1Resp

NewGetUmOrderV1Resp instantiates a new GetUmOrderV1Resp 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 NewGetUmOrderV1RespWithDefaults

func NewGetUmOrderV1RespWithDefaults() *GetUmOrderV1Resp

NewGetUmOrderV1RespWithDefaults instantiates a new GetUmOrderV1Resp 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 (*GetUmOrderV1Resp) GetAvgPrice

func (o *GetUmOrderV1Resp) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetAvgPriceOk

func (o *GetUmOrderV1Resp) GetAvgPriceOk() (*string, bool)

GetAvgPriceOk returns a tuple with the AvgPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetClientOrderId

func (o *GetUmOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetClientOrderIdOk

func (o *GetUmOrderV1Resp) GetClientOrderIdOk() (*string, bool)

GetClientOrderIdOk returns a tuple with the ClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetCumQuote

func (o *GetUmOrderV1Resp) GetCumQuote() string

GetCumQuote returns the CumQuote field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetCumQuoteOk

func (o *GetUmOrderV1Resp) GetCumQuoteOk() (*string, bool)

GetCumQuoteOk returns a tuple with the CumQuote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetExecutedQty

func (o *GetUmOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetExecutedQtyOk

func (o *GetUmOrderV1Resp) GetExecutedQtyOk() (*string, bool)

GetExecutedQtyOk returns a tuple with the ExecutedQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetGoodTillDate

func (o *GetUmOrderV1Resp) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetGoodTillDateOk

func (o *GetUmOrderV1Resp) GetGoodTillDateOk() (*int64, bool)

GetGoodTillDateOk returns a tuple with the GoodTillDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetOrderId

func (o *GetUmOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetOrderIdOk

func (o *GetUmOrderV1Resp) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetOrigQty

func (o *GetUmOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetOrigQtyOk

func (o *GetUmOrderV1Resp) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetOrigType

func (o *GetUmOrderV1Resp) GetOrigType() string

GetOrigType returns the OrigType field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetOrigTypeOk

func (o *GetUmOrderV1Resp) GetOrigTypeOk() (*string, bool)

GetOrigTypeOk returns a tuple with the OrigType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetPositionSide

func (o *GetUmOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetPositionSideOk

func (o *GetUmOrderV1Resp) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetPrice

func (o *GetUmOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetPriceMatch

func (o *GetUmOrderV1Resp) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetPriceMatchOk

func (o *GetUmOrderV1Resp) GetPriceMatchOk() (*string, bool)

GetPriceMatchOk returns a tuple with the PriceMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetPriceOk

func (o *GetUmOrderV1Resp) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetReduceOnly

func (o *GetUmOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetReduceOnlyOk

func (o *GetUmOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

GetReduceOnlyOk returns a tuple with the ReduceOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetSelfTradePreventionMode

func (o *GetUmOrderV1Resp) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetSelfTradePreventionModeOk

func (o *GetUmOrderV1Resp) GetSelfTradePreventionModeOk() (*string, bool)

GetSelfTradePreventionModeOk returns a tuple with the SelfTradePreventionMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetSide

func (o *GetUmOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetSideOk

func (o *GetUmOrderV1Resp) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetStatus

func (o *GetUmOrderV1Resp) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetStatusOk

func (o *GetUmOrderV1Resp) 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 (*GetUmOrderV1Resp) GetSymbol

func (o *GetUmOrderV1Resp) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetSymbolOk

func (o *GetUmOrderV1Resp) 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 (*GetUmOrderV1Resp) GetTime

func (o *GetUmOrderV1Resp) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetTimeInForce

func (o *GetUmOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetTimeInForceOk

func (o *GetUmOrderV1Resp) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetTimeOk

func (o *GetUmOrderV1Resp) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) GetType

func (o *GetUmOrderV1Resp) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetTypeOk

func (o *GetUmOrderV1Resp) 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 (*GetUmOrderV1Resp) GetUpdateTime

func (o *GetUmOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmOrderV1Resp) GetUpdateTimeOk

func (o *GetUmOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmOrderV1Resp) HasAvgPrice

func (o *GetUmOrderV1Resp) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasClientOrderId

func (o *GetUmOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasCumQuote

func (o *GetUmOrderV1Resp) HasCumQuote() bool

HasCumQuote returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasExecutedQty

func (o *GetUmOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasGoodTillDate

func (o *GetUmOrderV1Resp) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasOrderId

func (o *GetUmOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasOrigQty

func (o *GetUmOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasOrigType

func (o *GetUmOrderV1Resp) HasOrigType() bool

HasOrigType returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasPositionSide

func (o *GetUmOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasPrice

func (o *GetUmOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasPriceMatch

func (o *GetUmOrderV1Resp) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasReduceOnly

func (o *GetUmOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasSelfTradePreventionMode

func (o *GetUmOrderV1Resp) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasSide

func (o *GetUmOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasStatus

func (o *GetUmOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasSymbol

func (o *GetUmOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasTime

func (o *GetUmOrderV1Resp) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasTimeInForce

func (o *GetUmOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasType

func (o *GetUmOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (*GetUmOrderV1Resp) HasUpdateTime

func (o *GetUmOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmOrderV1Resp) MarshalJSON

func (o GetUmOrderV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmOrderV1Resp) SetAvgPrice

func (o *GetUmOrderV1Resp) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*GetUmOrderV1Resp) SetClientOrderId

func (o *GetUmOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*GetUmOrderV1Resp) SetCumQuote

func (o *GetUmOrderV1Resp) SetCumQuote(v string)

SetCumQuote gets a reference to the given string and assigns it to the CumQuote field.

func (*GetUmOrderV1Resp) SetExecutedQty

func (o *GetUmOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*GetUmOrderV1Resp) SetGoodTillDate

func (o *GetUmOrderV1Resp) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*GetUmOrderV1Resp) SetOrderId

func (o *GetUmOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetUmOrderV1Resp) SetOrigQty

func (o *GetUmOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*GetUmOrderV1Resp) SetOrigType

func (o *GetUmOrderV1Resp) SetOrigType(v string)

SetOrigType gets a reference to the given string and assigns it to the OrigType field.

func (*GetUmOrderV1Resp) SetPositionSide

func (o *GetUmOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmOrderV1Resp) SetPrice

func (o *GetUmOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetUmOrderV1Resp) SetPriceMatch

func (o *GetUmOrderV1Resp) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*GetUmOrderV1Resp) SetReduceOnly

func (o *GetUmOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*GetUmOrderV1Resp) SetSelfTradePreventionMode

func (o *GetUmOrderV1Resp) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*GetUmOrderV1Resp) SetSide

func (o *GetUmOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetUmOrderV1Resp) SetStatus

func (o *GetUmOrderV1Resp) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetUmOrderV1Resp) SetSymbol

func (o *GetUmOrderV1Resp) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmOrderV1Resp) SetTime

func (o *GetUmOrderV1Resp) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (*GetUmOrderV1Resp) SetTimeInForce

func (o *GetUmOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*GetUmOrderV1Resp) SetType

func (o *GetUmOrderV1Resp) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*GetUmOrderV1Resp) SetUpdateTime

func (o *GetUmOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmOrderV1Resp) ToMap

func (o GetUmOrderV1Resp) ToMap() (map[string]interface{}, error)

type GetUmPositionRiskV1RespItem

type GetUmPositionRiskV1RespItem struct {
	EntryPrice       *string `json:"entryPrice,omitempty"`
	Leverage         *string `json:"leverage,omitempty"`
	LiquidationPrice *string `json:"liquidationPrice,omitempty"`
	MarkPrice        *string `json:"markPrice,omitempty"`
	MaxNotionalValue *string `json:"maxNotionalValue,omitempty"`
	Notional         *string `json:"notional,omitempty"`
	PositionAmt      *string `json:"positionAmt,omitempty"`
	PositionSide     *string `json:"positionSide,omitempty"`
	Symbol           *string `json:"symbol,omitempty"`
	UnRealizedProfit *string `json:"unRealizedProfit,omitempty"`
	UpdateTime       *int64  `json:"updateTime,omitempty"`
}

GetUmPositionRiskV1RespItem struct for GetUmPositionRiskV1RespItem

func NewGetUmPositionRiskV1RespItem

func NewGetUmPositionRiskV1RespItem() *GetUmPositionRiskV1RespItem

NewGetUmPositionRiskV1RespItem instantiates a new GetUmPositionRiskV1RespItem 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 NewGetUmPositionRiskV1RespItemWithDefaults

func NewGetUmPositionRiskV1RespItemWithDefaults() *GetUmPositionRiskV1RespItem

NewGetUmPositionRiskV1RespItemWithDefaults instantiates a new GetUmPositionRiskV1RespItem 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 (*GetUmPositionRiskV1RespItem) GetEntryPrice

func (o *GetUmPositionRiskV1RespItem) GetEntryPrice() string

GetEntryPrice returns the EntryPrice field value if set, zero value otherwise.

func (*GetUmPositionRiskV1RespItem) GetEntryPriceOk

func (o *GetUmPositionRiskV1RespItem) GetEntryPriceOk() (*string, bool)

GetEntryPriceOk returns a tuple with the EntryPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmPositionRiskV1RespItem) GetLeverage

func (o *GetUmPositionRiskV1RespItem) GetLeverage() string

GetLeverage returns the Leverage field value if set, zero value otherwise.

func (*GetUmPositionRiskV1RespItem) GetLeverageOk

func (o *GetUmPositionRiskV1RespItem) GetLeverageOk() (*string, bool)

GetLeverageOk returns a tuple with the Leverage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmPositionRiskV1RespItem) GetLiquidationPrice

func (o *GetUmPositionRiskV1RespItem) GetLiquidationPrice() string

GetLiquidationPrice returns the LiquidationPrice field value if set, zero value otherwise.

func (*GetUmPositionRiskV1RespItem) GetLiquidationPriceOk

func (o *GetUmPositionRiskV1RespItem) GetLiquidationPriceOk() (*string, bool)

GetLiquidationPriceOk returns a tuple with the LiquidationPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmPositionRiskV1RespItem) GetMarkPrice

func (o *GetUmPositionRiskV1RespItem) GetMarkPrice() string

GetMarkPrice returns the MarkPrice field value if set, zero value otherwise.

func (*GetUmPositionRiskV1RespItem) GetMarkPriceOk

func (o *GetUmPositionRiskV1RespItem) GetMarkPriceOk() (*string, 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 (*GetUmPositionRiskV1RespItem) GetMaxNotionalValue

func (o *GetUmPositionRiskV1RespItem) GetMaxNotionalValue() string

GetMaxNotionalValue returns the MaxNotionalValue field value if set, zero value otherwise.

func (*GetUmPositionRiskV1RespItem) GetMaxNotionalValueOk

func (o *GetUmPositionRiskV1RespItem) GetMaxNotionalValueOk() (*string, bool)

GetMaxNotionalValueOk returns a tuple with the MaxNotionalValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmPositionRiskV1RespItem) GetNotional

func (o *GetUmPositionRiskV1RespItem) GetNotional() string

GetNotional returns the Notional field value if set, zero value otherwise.

func (*GetUmPositionRiskV1RespItem) GetNotionalOk

func (o *GetUmPositionRiskV1RespItem) GetNotionalOk() (*string, bool)

GetNotionalOk returns a tuple with the Notional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmPositionRiskV1RespItem) GetPositionAmt

func (o *GetUmPositionRiskV1RespItem) GetPositionAmt() string

GetPositionAmt returns the PositionAmt field value if set, zero value otherwise.

func (*GetUmPositionRiskV1RespItem) GetPositionAmtOk

func (o *GetUmPositionRiskV1RespItem) GetPositionAmtOk() (*string, bool)

GetPositionAmtOk returns a tuple with the PositionAmt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmPositionRiskV1RespItem) GetPositionSide

func (o *GetUmPositionRiskV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmPositionRiskV1RespItem) GetPositionSideOk

func (o *GetUmPositionRiskV1RespItem) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmPositionRiskV1RespItem) GetSymbol

func (o *GetUmPositionRiskV1RespItem) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmPositionRiskV1RespItem) GetSymbolOk

func (o *GetUmPositionRiskV1RespItem) 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 (*GetUmPositionRiskV1RespItem) GetUnRealizedProfit

func (o *GetUmPositionRiskV1RespItem) GetUnRealizedProfit() string

GetUnRealizedProfit returns the UnRealizedProfit field value if set, zero value otherwise.

func (*GetUmPositionRiskV1RespItem) GetUnRealizedProfitOk

func (o *GetUmPositionRiskV1RespItem) GetUnRealizedProfitOk() (*string, bool)

GetUnRealizedProfitOk returns a tuple with the UnRealizedProfit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmPositionRiskV1RespItem) GetUpdateTime

func (o *GetUmPositionRiskV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*GetUmPositionRiskV1RespItem) GetUpdateTimeOk

func (o *GetUmPositionRiskV1RespItem) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmPositionRiskV1RespItem) HasEntryPrice

func (o *GetUmPositionRiskV1RespItem) HasEntryPrice() bool

HasEntryPrice returns a boolean if a field has been set.

func (*GetUmPositionRiskV1RespItem) HasLeverage

func (o *GetUmPositionRiskV1RespItem) HasLeverage() bool

HasLeverage returns a boolean if a field has been set.

func (*GetUmPositionRiskV1RespItem) HasLiquidationPrice

func (o *GetUmPositionRiskV1RespItem) HasLiquidationPrice() bool

HasLiquidationPrice returns a boolean if a field has been set.

func (*GetUmPositionRiskV1RespItem) HasMarkPrice

func (o *GetUmPositionRiskV1RespItem) HasMarkPrice() bool

HasMarkPrice returns a boolean if a field has been set.

func (*GetUmPositionRiskV1RespItem) HasMaxNotionalValue

func (o *GetUmPositionRiskV1RespItem) HasMaxNotionalValue() bool

HasMaxNotionalValue returns a boolean if a field has been set.

func (*GetUmPositionRiskV1RespItem) HasNotional

func (o *GetUmPositionRiskV1RespItem) HasNotional() bool

HasNotional returns a boolean if a field has been set.

func (*GetUmPositionRiskV1RespItem) HasPositionAmt

func (o *GetUmPositionRiskV1RespItem) HasPositionAmt() bool

HasPositionAmt returns a boolean if a field has been set.

func (*GetUmPositionRiskV1RespItem) HasPositionSide

func (o *GetUmPositionRiskV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmPositionRiskV1RespItem) HasSymbol

func (o *GetUmPositionRiskV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmPositionRiskV1RespItem) HasUnRealizedProfit

func (o *GetUmPositionRiskV1RespItem) HasUnRealizedProfit() bool

HasUnRealizedProfit returns a boolean if a field has been set.

func (*GetUmPositionRiskV1RespItem) HasUpdateTime

func (o *GetUmPositionRiskV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (GetUmPositionRiskV1RespItem) MarshalJSON

func (o GetUmPositionRiskV1RespItem) MarshalJSON() ([]byte, error)

func (*GetUmPositionRiskV1RespItem) SetEntryPrice

func (o *GetUmPositionRiskV1RespItem) SetEntryPrice(v string)

SetEntryPrice gets a reference to the given string and assigns it to the EntryPrice field.

func (*GetUmPositionRiskV1RespItem) SetLeverage

func (o *GetUmPositionRiskV1RespItem) SetLeverage(v string)

SetLeverage gets a reference to the given string and assigns it to the Leverage field.

func (*GetUmPositionRiskV1RespItem) SetLiquidationPrice

func (o *GetUmPositionRiskV1RespItem) SetLiquidationPrice(v string)

SetLiquidationPrice gets a reference to the given string and assigns it to the LiquidationPrice field.

func (*GetUmPositionRiskV1RespItem) SetMarkPrice

func (o *GetUmPositionRiskV1RespItem) SetMarkPrice(v string)

SetMarkPrice gets a reference to the given string and assigns it to the MarkPrice field.

func (*GetUmPositionRiskV1RespItem) SetMaxNotionalValue

func (o *GetUmPositionRiskV1RespItem) SetMaxNotionalValue(v string)

SetMaxNotionalValue gets a reference to the given string and assigns it to the MaxNotionalValue field.

func (*GetUmPositionRiskV1RespItem) SetNotional

func (o *GetUmPositionRiskV1RespItem) SetNotional(v string)

SetNotional gets a reference to the given string and assigns it to the Notional field.

func (*GetUmPositionRiskV1RespItem) SetPositionAmt

func (o *GetUmPositionRiskV1RespItem) SetPositionAmt(v string)

SetPositionAmt gets a reference to the given string and assigns it to the PositionAmt field.

func (*GetUmPositionRiskV1RespItem) SetPositionSide

func (o *GetUmPositionRiskV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmPositionRiskV1RespItem) SetSymbol

func (o *GetUmPositionRiskV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmPositionRiskV1RespItem) SetUnRealizedProfit

func (o *GetUmPositionRiskV1RespItem) SetUnRealizedProfit(v string)

SetUnRealizedProfit gets a reference to the given string and assigns it to the UnRealizedProfit field.

func (*GetUmPositionRiskV1RespItem) SetUpdateTime

func (o *GetUmPositionRiskV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (GetUmPositionRiskV1RespItem) ToMap

func (o GetUmPositionRiskV1RespItem) ToMap() (map[string]interface{}, error)

type GetUmPositionSideDualV1Resp

type GetUmPositionSideDualV1Resp struct {
	DualSidePosition *bool `json:"dualSidePosition,omitempty"`
}

GetUmPositionSideDualV1Resp struct for GetUmPositionSideDualV1Resp

func NewGetUmPositionSideDualV1Resp

func NewGetUmPositionSideDualV1Resp() *GetUmPositionSideDualV1Resp

NewGetUmPositionSideDualV1Resp instantiates a new GetUmPositionSideDualV1Resp 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 NewGetUmPositionSideDualV1RespWithDefaults

func NewGetUmPositionSideDualV1RespWithDefaults() *GetUmPositionSideDualV1Resp

NewGetUmPositionSideDualV1RespWithDefaults instantiates a new GetUmPositionSideDualV1Resp 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 (*GetUmPositionSideDualV1Resp) GetDualSidePosition

func (o *GetUmPositionSideDualV1Resp) GetDualSidePosition() bool

GetDualSidePosition returns the DualSidePosition field value if set, zero value otherwise.

func (*GetUmPositionSideDualV1Resp) GetDualSidePositionOk

func (o *GetUmPositionSideDualV1Resp) GetDualSidePositionOk() (*bool, bool)

GetDualSidePositionOk returns a tuple with the DualSidePosition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmPositionSideDualV1Resp) HasDualSidePosition

func (o *GetUmPositionSideDualV1Resp) HasDualSidePosition() bool

HasDualSidePosition returns a boolean if a field has been set.

func (GetUmPositionSideDualV1Resp) MarshalJSON

func (o GetUmPositionSideDualV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmPositionSideDualV1Resp) SetDualSidePosition

func (o *GetUmPositionSideDualV1Resp) SetDualSidePosition(v bool)

SetDualSidePosition gets a reference to the given bool and assigns it to the DualSidePosition field.

func (GetUmPositionSideDualV1Resp) ToMap

func (o GetUmPositionSideDualV1Resp) ToMap() (map[string]interface{}, error)

type GetUmSymbolConfigV1RespItem

type GetUmSymbolConfigV1RespItem struct {
	IsAutoAddMargin  *string `json:"isAutoAddMargin,omitempty"`
	Leverage         *int32  `json:"leverage,omitempty"`
	MarginType       *string `json:"marginType,omitempty"`
	MaxNotionalValue *string `json:"maxNotionalValue,omitempty"`
	Symbol           *string `json:"symbol,omitempty"`
}

GetUmSymbolConfigV1RespItem struct for GetUmSymbolConfigV1RespItem

func NewGetUmSymbolConfigV1RespItem

func NewGetUmSymbolConfigV1RespItem() *GetUmSymbolConfigV1RespItem

NewGetUmSymbolConfigV1RespItem instantiates a new GetUmSymbolConfigV1RespItem 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 NewGetUmSymbolConfigV1RespItemWithDefaults

func NewGetUmSymbolConfigV1RespItemWithDefaults() *GetUmSymbolConfigV1RespItem

NewGetUmSymbolConfigV1RespItemWithDefaults instantiates a new GetUmSymbolConfigV1RespItem 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 (*GetUmSymbolConfigV1RespItem) GetIsAutoAddMargin

func (o *GetUmSymbolConfigV1RespItem) GetIsAutoAddMargin() string

GetIsAutoAddMargin returns the IsAutoAddMargin field value if set, zero value otherwise.

func (*GetUmSymbolConfigV1RespItem) GetIsAutoAddMarginOk

func (o *GetUmSymbolConfigV1RespItem) GetIsAutoAddMarginOk() (*string, bool)

GetIsAutoAddMarginOk returns a tuple with the IsAutoAddMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmSymbolConfigV1RespItem) GetLeverage

func (o *GetUmSymbolConfigV1RespItem) GetLeverage() int32

GetLeverage returns the Leverage field value if set, zero value otherwise.

func (*GetUmSymbolConfigV1RespItem) GetLeverageOk

func (o *GetUmSymbolConfigV1RespItem) GetLeverageOk() (*int32, bool)

GetLeverageOk returns a tuple with the Leverage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmSymbolConfigV1RespItem) GetMarginType

func (o *GetUmSymbolConfigV1RespItem) GetMarginType() string

GetMarginType returns the MarginType field value if set, zero value otherwise.

func (*GetUmSymbolConfigV1RespItem) GetMarginTypeOk

func (o *GetUmSymbolConfigV1RespItem) GetMarginTypeOk() (*string, bool)

GetMarginTypeOk returns a tuple with the MarginType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmSymbolConfigV1RespItem) GetMaxNotionalValue

func (o *GetUmSymbolConfigV1RespItem) GetMaxNotionalValue() string

GetMaxNotionalValue returns the MaxNotionalValue field value if set, zero value otherwise.

func (*GetUmSymbolConfigV1RespItem) GetMaxNotionalValueOk

func (o *GetUmSymbolConfigV1RespItem) GetMaxNotionalValueOk() (*string, bool)

GetMaxNotionalValueOk returns a tuple with the MaxNotionalValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmSymbolConfigV1RespItem) GetSymbol

func (o *GetUmSymbolConfigV1RespItem) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmSymbolConfigV1RespItem) GetSymbolOk

func (o *GetUmSymbolConfigV1RespItem) 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 (*GetUmSymbolConfigV1RespItem) HasIsAutoAddMargin

func (o *GetUmSymbolConfigV1RespItem) HasIsAutoAddMargin() bool

HasIsAutoAddMargin returns a boolean if a field has been set.

func (*GetUmSymbolConfigV1RespItem) HasLeverage

func (o *GetUmSymbolConfigV1RespItem) HasLeverage() bool

HasLeverage returns a boolean if a field has been set.

func (*GetUmSymbolConfigV1RespItem) HasMarginType

func (o *GetUmSymbolConfigV1RespItem) HasMarginType() bool

HasMarginType returns a boolean if a field has been set.

func (*GetUmSymbolConfigV1RespItem) HasMaxNotionalValue

func (o *GetUmSymbolConfigV1RespItem) HasMaxNotionalValue() bool

HasMaxNotionalValue returns a boolean if a field has been set.

func (*GetUmSymbolConfigV1RespItem) HasSymbol

func (o *GetUmSymbolConfigV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (GetUmSymbolConfigV1RespItem) MarshalJSON

func (o GetUmSymbolConfigV1RespItem) MarshalJSON() ([]byte, error)

func (*GetUmSymbolConfigV1RespItem) SetIsAutoAddMargin

func (o *GetUmSymbolConfigV1RespItem) SetIsAutoAddMargin(v string)

SetIsAutoAddMargin gets a reference to the given string and assigns it to the IsAutoAddMargin field.

func (*GetUmSymbolConfigV1RespItem) SetLeverage

func (o *GetUmSymbolConfigV1RespItem) SetLeverage(v int32)

SetLeverage gets a reference to the given int32 and assigns it to the Leverage field.

func (*GetUmSymbolConfigV1RespItem) SetMarginType

func (o *GetUmSymbolConfigV1RespItem) SetMarginType(v string)

SetMarginType gets a reference to the given string and assigns it to the MarginType field.

func (*GetUmSymbolConfigV1RespItem) SetMaxNotionalValue

func (o *GetUmSymbolConfigV1RespItem) SetMaxNotionalValue(v string)

SetMaxNotionalValue gets a reference to the given string and assigns it to the MaxNotionalValue field.

func (*GetUmSymbolConfigV1RespItem) SetSymbol

func (o *GetUmSymbolConfigV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (GetUmSymbolConfigV1RespItem) ToMap

func (o GetUmSymbolConfigV1RespItem) ToMap() (map[string]interface{}, error)

type GetUmTradeAsynIdV1Resp

type GetUmTradeAsynIdV1Resp struct {
	DownloadId          *string                `json:"downloadId,omitempty"`
	ExpirationTimestamp *int64                 `json:"expirationTimestamp,omitempty"`
	IsExpired           map[string]interface{} `json:"isExpired,omitempty"`
	Notified            *bool                  `json:"notified,omitempty"`
	S3Link              map[string]interface{} `json:"s3Link,omitempty"`
	Status              *string                `json:"status,omitempty"`
	Url                 *string                `json:"url,omitempty"`
}

GetUmTradeAsynIdV1Resp struct for GetUmTradeAsynIdV1Resp

func NewGetUmTradeAsynIdV1Resp

func NewGetUmTradeAsynIdV1Resp() *GetUmTradeAsynIdV1Resp

NewGetUmTradeAsynIdV1Resp instantiates a new GetUmTradeAsynIdV1Resp 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 NewGetUmTradeAsynIdV1RespWithDefaults

func NewGetUmTradeAsynIdV1RespWithDefaults() *GetUmTradeAsynIdV1Resp

NewGetUmTradeAsynIdV1RespWithDefaults instantiates a new GetUmTradeAsynIdV1Resp 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 (*GetUmTradeAsynIdV1Resp) GetDownloadId

func (o *GetUmTradeAsynIdV1Resp) GetDownloadId() string

GetDownloadId returns the DownloadId field value if set, zero value otherwise.

func (*GetUmTradeAsynIdV1Resp) GetDownloadIdOk

func (o *GetUmTradeAsynIdV1Resp) GetDownloadIdOk() (*string, bool)

GetDownloadIdOk returns a tuple with the DownloadId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmTradeAsynIdV1Resp) GetExpirationTimestamp

func (o *GetUmTradeAsynIdV1Resp) GetExpirationTimestamp() int64

GetExpirationTimestamp returns the ExpirationTimestamp field value if set, zero value otherwise.

func (*GetUmTradeAsynIdV1Resp) GetExpirationTimestampOk

func (o *GetUmTradeAsynIdV1Resp) GetExpirationTimestampOk() (*int64, bool)

GetExpirationTimestampOk returns a tuple with the ExpirationTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmTradeAsynIdV1Resp) GetIsExpired

func (o *GetUmTradeAsynIdV1Resp) GetIsExpired() map[string]interface{}

GetIsExpired returns the IsExpired field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GetUmTradeAsynIdV1Resp) GetIsExpiredOk

func (o *GetUmTradeAsynIdV1Resp) GetIsExpiredOk() (map[string]interface{}, bool)

GetIsExpiredOk returns a tuple with the IsExpired 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 (*GetUmTradeAsynIdV1Resp) GetNotified

func (o *GetUmTradeAsynIdV1Resp) GetNotified() bool

GetNotified returns the Notified field value if set, zero value otherwise.

func (*GetUmTradeAsynIdV1Resp) GetNotifiedOk

func (o *GetUmTradeAsynIdV1Resp) GetNotifiedOk() (*bool, bool)

GetNotifiedOk returns a tuple with the Notified field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *GetUmTradeAsynIdV1Resp) GetS3Link() map[string]interface{}

GetS3Link returns the S3Link field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GetUmTradeAsynIdV1Resp) GetS3LinkOk

func (o *GetUmTradeAsynIdV1Resp) GetS3LinkOk() (map[string]interface{}, bool)

GetS3LinkOk returns a tuple with the S3Link 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 (*GetUmTradeAsynIdV1Resp) GetStatus

func (o *GetUmTradeAsynIdV1Resp) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetUmTradeAsynIdV1Resp) GetStatusOk

func (o *GetUmTradeAsynIdV1Resp) 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 (*GetUmTradeAsynIdV1Resp) GetUrl

func (o *GetUmTradeAsynIdV1Resp) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*GetUmTradeAsynIdV1Resp) GetUrlOk

func (o *GetUmTradeAsynIdV1Resp) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmTradeAsynIdV1Resp) HasDownloadId

func (o *GetUmTradeAsynIdV1Resp) HasDownloadId() bool

HasDownloadId returns a boolean if a field has been set.

func (*GetUmTradeAsynIdV1Resp) HasExpirationTimestamp

func (o *GetUmTradeAsynIdV1Resp) HasExpirationTimestamp() bool

HasExpirationTimestamp returns a boolean if a field has been set.

func (*GetUmTradeAsynIdV1Resp) HasIsExpired

func (o *GetUmTradeAsynIdV1Resp) HasIsExpired() bool

HasIsExpired returns a boolean if a field has been set.

func (*GetUmTradeAsynIdV1Resp) HasNotified

func (o *GetUmTradeAsynIdV1Resp) HasNotified() bool

HasNotified returns a boolean if a field has been set.

func (o *GetUmTradeAsynIdV1Resp) HasS3Link() bool

HasS3Link returns a boolean if a field has been set.

func (*GetUmTradeAsynIdV1Resp) HasStatus

func (o *GetUmTradeAsynIdV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetUmTradeAsynIdV1Resp) HasUrl

func (o *GetUmTradeAsynIdV1Resp) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (GetUmTradeAsynIdV1Resp) MarshalJSON

func (o GetUmTradeAsynIdV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmTradeAsynIdV1Resp) SetDownloadId

func (o *GetUmTradeAsynIdV1Resp) SetDownloadId(v string)

SetDownloadId gets a reference to the given string and assigns it to the DownloadId field.

func (*GetUmTradeAsynIdV1Resp) SetExpirationTimestamp

func (o *GetUmTradeAsynIdV1Resp) SetExpirationTimestamp(v int64)

SetExpirationTimestamp gets a reference to the given int64 and assigns it to the ExpirationTimestamp field.

func (*GetUmTradeAsynIdV1Resp) SetIsExpired

func (o *GetUmTradeAsynIdV1Resp) SetIsExpired(v map[string]interface{})

SetIsExpired gets a reference to the given map[string]interface{} and assigns it to the IsExpired field.

func (*GetUmTradeAsynIdV1Resp) SetNotified

func (o *GetUmTradeAsynIdV1Resp) SetNotified(v bool)

SetNotified gets a reference to the given bool and assigns it to the Notified field.

func (o *GetUmTradeAsynIdV1Resp) SetS3Link(v map[string]interface{})

SetS3Link gets a reference to the given map[string]interface{} and assigns it to the S3Link field.

func (*GetUmTradeAsynIdV1Resp) SetStatus

func (o *GetUmTradeAsynIdV1Resp) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*GetUmTradeAsynIdV1Resp) SetUrl

func (o *GetUmTradeAsynIdV1Resp) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (GetUmTradeAsynIdV1Resp) ToMap

func (o GetUmTradeAsynIdV1Resp) ToMap() (map[string]interface{}, error)

type GetUmTradeAsynV1Resp

type GetUmTradeAsynV1Resp struct {
	AvgCostTimestampOfLast30d *int32  `json:"avgCostTimestampOfLast30d,omitempty"`
	DownloadId                *string `json:"downloadId,omitempty"`
}

GetUmTradeAsynV1Resp struct for GetUmTradeAsynV1Resp

func NewGetUmTradeAsynV1Resp

func NewGetUmTradeAsynV1Resp() *GetUmTradeAsynV1Resp

NewGetUmTradeAsynV1Resp instantiates a new GetUmTradeAsynV1Resp 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 NewGetUmTradeAsynV1RespWithDefaults

func NewGetUmTradeAsynV1RespWithDefaults() *GetUmTradeAsynV1Resp

NewGetUmTradeAsynV1RespWithDefaults instantiates a new GetUmTradeAsynV1Resp 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 (*GetUmTradeAsynV1Resp) GetAvgCostTimestampOfLast30d

func (o *GetUmTradeAsynV1Resp) GetAvgCostTimestampOfLast30d() int32

GetAvgCostTimestampOfLast30d returns the AvgCostTimestampOfLast30d field value if set, zero value otherwise.

func (*GetUmTradeAsynV1Resp) GetAvgCostTimestampOfLast30dOk

func (o *GetUmTradeAsynV1Resp) GetAvgCostTimestampOfLast30dOk() (*int32, bool)

GetAvgCostTimestampOfLast30dOk returns a tuple with the AvgCostTimestampOfLast30d field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmTradeAsynV1Resp) GetDownloadId

func (o *GetUmTradeAsynV1Resp) GetDownloadId() string

GetDownloadId returns the DownloadId field value if set, zero value otherwise.

func (*GetUmTradeAsynV1Resp) GetDownloadIdOk

func (o *GetUmTradeAsynV1Resp) GetDownloadIdOk() (*string, bool)

GetDownloadIdOk returns a tuple with the DownloadId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmTradeAsynV1Resp) HasAvgCostTimestampOfLast30d

func (o *GetUmTradeAsynV1Resp) HasAvgCostTimestampOfLast30d() bool

HasAvgCostTimestampOfLast30d returns a boolean if a field has been set.

func (*GetUmTradeAsynV1Resp) HasDownloadId

func (o *GetUmTradeAsynV1Resp) HasDownloadId() bool

HasDownloadId returns a boolean if a field has been set.

func (GetUmTradeAsynV1Resp) MarshalJSON

func (o GetUmTradeAsynV1Resp) MarshalJSON() ([]byte, error)

func (*GetUmTradeAsynV1Resp) SetAvgCostTimestampOfLast30d

func (o *GetUmTradeAsynV1Resp) SetAvgCostTimestampOfLast30d(v int32)

SetAvgCostTimestampOfLast30d gets a reference to the given int32 and assigns it to the AvgCostTimestampOfLast30d field.

func (*GetUmTradeAsynV1Resp) SetDownloadId

func (o *GetUmTradeAsynV1Resp) SetDownloadId(v string)

SetDownloadId gets a reference to the given string and assigns it to the DownloadId field.

func (GetUmTradeAsynV1Resp) ToMap

func (o GetUmTradeAsynV1Resp) ToMap() (map[string]interface{}, error)

type GetUmUserTradesV1RespItem

type GetUmUserTradesV1RespItem struct {
	Buyer           *bool   `json:"buyer,omitempty"`
	Commission      *string `json:"commission,omitempty"`
	CommissionAsset *string `json:"commissionAsset,omitempty"`
	Id              *int32  `json:"id,omitempty"`
	Maker           *bool   `json:"maker,omitempty"`
	OrderId         *int64  `json:"orderId,omitempty"`
	PositionSide    *string `json:"positionSide,omitempty"`
	Price           *string `json:"price,omitempty"`
	Qty             *string `json:"qty,omitempty"`
	QuoteQty        *string `json:"quoteQty,omitempty"`
	RealizedPnl     *string `json:"realizedPnl,omitempty"`
	Side            *string `json:"side,omitempty"`
	Symbol          *string `json:"symbol,omitempty"`
	Time            *int64  `json:"time,omitempty"`
}

GetUmUserTradesV1RespItem struct for GetUmUserTradesV1RespItem

func NewGetUmUserTradesV1RespItem

func NewGetUmUserTradesV1RespItem() *GetUmUserTradesV1RespItem

NewGetUmUserTradesV1RespItem instantiates a new GetUmUserTradesV1RespItem 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 NewGetUmUserTradesV1RespItemWithDefaults

func NewGetUmUserTradesV1RespItemWithDefaults() *GetUmUserTradesV1RespItem

NewGetUmUserTradesV1RespItemWithDefaults instantiates a new GetUmUserTradesV1RespItem 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 (*GetUmUserTradesV1RespItem) GetBuyer

func (o *GetUmUserTradesV1RespItem) GetBuyer() bool

GetBuyer returns the Buyer field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetBuyerOk

func (o *GetUmUserTradesV1RespItem) GetBuyerOk() (*bool, bool)

GetBuyerOk returns a tuple with the Buyer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmUserTradesV1RespItem) GetCommission

func (o *GetUmUserTradesV1RespItem) GetCommission() string

GetCommission returns the Commission field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetCommissionAsset

func (o *GetUmUserTradesV1RespItem) GetCommissionAsset() string

GetCommissionAsset returns the CommissionAsset field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetCommissionAssetOk

func (o *GetUmUserTradesV1RespItem) GetCommissionAssetOk() (*string, bool)

GetCommissionAssetOk returns a tuple with the CommissionAsset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmUserTradesV1RespItem) GetCommissionOk

func (o *GetUmUserTradesV1RespItem) GetCommissionOk() (*string, bool)

GetCommissionOk returns a tuple with the Commission field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmUserTradesV1RespItem) GetId

func (o *GetUmUserTradesV1RespItem) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetIdOk

func (o *GetUmUserTradesV1RespItem) GetIdOk() (*int32, 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 (*GetUmUserTradesV1RespItem) GetMaker

func (o *GetUmUserTradesV1RespItem) GetMaker() bool

GetMaker returns the Maker field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetMakerOk

func (o *GetUmUserTradesV1RespItem) GetMakerOk() (*bool, bool)

GetMakerOk returns a tuple with the Maker field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmUserTradesV1RespItem) GetOrderId

func (o *GetUmUserTradesV1RespItem) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetOrderIdOk

func (o *GetUmUserTradesV1RespItem) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmUserTradesV1RespItem) GetPositionSide

func (o *GetUmUserTradesV1RespItem) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetPositionSideOk

func (o *GetUmUserTradesV1RespItem) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmUserTradesV1RespItem) GetPrice

func (o *GetUmUserTradesV1RespItem) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetPriceOk

func (o *GetUmUserTradesV1RespItem) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmUserTradesV1RespItem) GetQty

func (o *GetUmUserTradesV1RespItem) GetQty() string

GetQty returns the Qty field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetQtyOk

func (o *GetUmUserTradesV1RespItem) GetQtyOk() (*string, bool)

GetQtyOk returns a tuple with the Qty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmUserTradesV1RespItem) GetQuoteQty

func (o *GetUmUserTradesV1RespItem) GetQuoteQty() string

GetQuoteQty returns the QuoteQty field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetQuoteQtyOk

func (o *GetUmUserTradesV1RespItem) GetQuoteQtyOk() (*string, bool)

GetQuoteQtyOk returns a tuple with the QuoteQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmUserTradesV1RespItem) GetRealizedPnl

func (o *GetUmUserTradesV1RespItem) GetRealizedPnl() string

GetRealizedPnl returns the RealizedPnl field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetRealizedPnlOk

func (o *GetUmUserTradesV1RespItem) GetRealizedPnlOk() (*string, bool)

GetRealizedPnlOk returns a tuple with the RealizedPnl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmUserTradesV1RespItem) GetSide

func (o *GetUmUserTradesV1RespItem) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetSideOk

func (o *GetUmUserTradesV1RespItem) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmUserTradesV1RespItem) GetSymbol

func (o *GetUmUserTradesV1RespItem) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetSymbolOk

func (o *GetUmUserTradesV1RespItem) 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 (*GetUmUserTradesV1RespItem) GetTime

func (o *GetUmUserTradesV1RespItem) GetTime() int64

GetTime returns the Time field value if set, zero value otherwise.

func (*GetUmUserTradesV1RespItem) GetTimeOk

func (o *GetUmUserTradesV1RespItem) GetTimeOk() (*int64, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUmUserTradesV1RespItem) HasBuyer

func (o *GetUmUserTradesV1RespItem) HasBuyer() bool

HasBuyer returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasCommission

func (o *GetUmUserTradesV1RespItem) HasCommission() bool

HasCommission returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasCommissionAsset

func (o *GetUmUserTradesV1RespItem) HasCommissionAsset() bool

HasCommissionAsset returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasId

func (o *GetUmUserTradesV1RespItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasMaker

func (o *GetUmUserTradesV1RespItem) HasMaker() bool

HasMaker returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasOrderId

func (o *GetUmUserTradesV1RespItem) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasPositionSide

func (o *GetUmUserTradesV1RespItem) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasPrice

func (o *GetUmUserTradesV1RespItem) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasQty

func (o *GetUmUserTradesV1RespItem) HasQty() bool

HasQty returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasQuoteQty

func (o *GetUmUserTradesV1RespItem) HasQuoteQty() bool

HasQuoteQty returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasRealizedPnl

func (o *GetUmUserTradesV1RespItem) HasRealizedPnl() bool

HasRealizedPnl returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasSide

func (o *GetUmUserTradesV1RespItem) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasSymbol

func (o *GetUmUserTradesV1RespItem) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*GetUmUserTradesV1RespItem) HasTime

func (o *GetUmUserTradesV1RespItem) HasTime() bool

HasTime returns a boolean if a field has been set.

func (GetUmUserTradesV1RespItem) MarshalJSON

func (o GetUmUserTradesV1RespItem) MarshalJSON() ([]byte, error)

func (*GetUmUserTradesV1RespItem) SetBuyer

func (o *GetUmUserTradesV1RespItem) SetBuyer(v bool)

SetBuyer gets a reference to the given bool and assigns it to the Buyer field.

func (*GetUmUserTradesV1RespItem) SetCommission

func (o *GetUmUserTradesV1RespItem) SetCommission(v string)

SetCommission gets a reference to the given string and assigns it to the Commission field.

func (*GetUmUserTradesV1RespItem) SetCommissionAsset

func (o *GetUmUserTradesV1RespItem) SetCommissionAsset(v string)

SetCommissionAsset gets a reference to the given string and assigns it to the CommissionAsset field.

func (*GetUmUserTradesV1RespItem) SetId

func (o *GetUmUserTradesV1RespItem) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*GetUmUserTradesV1RespItem) SetMaker

func (o *GetUmUserTradesV1RespItem) SetMaker(v bool)

SetMaker gets a reference to the given bool and assigns it to the Maker field.

func (*GetUmUserTradesV1RespItem) SetOrderId

func (o *GetUmUserTradesV1RespItem) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*GetUmUserTradesV1RespItem) SetPositionSide

func (o *GetUmUserTradesV1RespItem) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*GetUmUserTradesV1RespItem) SetPrice

func (o *GetUmUserTradesV1RespItem) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*GetUmUserTradesV1RespItem) SetQty

func (o *GetUmUserTradesV1RespItem) SetQty(v string)

SetQty gets a reference to the given string and assigns it to the Qty field.

func (*GetUmUserTradesV1RespItem) SetQuoteQty

func (o *GetUmUserTradesV1RespItem) SetQuoteQty(v string)

SetQuoteQty gets a reference to the given string and assigns it to the QuoteQty field.

func (*GetUmUserTradesV1RespItem) SetRealizedPnl

func (o *GetUmUserTradesV1RespItem) SetRealizedPnl(v string)

SetRealizedPnl gets a reference to the given string and assigns it to the RealizedPnl field.

func (*GetUmUserTradesV1RespItem) SetSide

func (o *GetUmUserTradesV1RespItem) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*GetUmUserTradesV1RespItem) SetSymbol

func (o *GetUmUserTradesV1RespItem) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*GetUmUserTradesV1RespItem) SetTime

func (o *GetUmUserTradesV1RespItem) SetTime(v int64)

SetTime gets a reference to the given int64 and assigns it to the Time field.

func (GetUmUserTradesV1RespItem) ToMap

func (o GetUmUserTradesV1RespItem) ToMap() (map[string]interface{}, error)

type KeyType

type KeyType string

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NullableAPIError

type NullableAPIError struct {
	// contains filtered or unexported fields
}

func NewNullableAPIError

func NewNullableAPIError(val *APIError) *NullableAPIError

func (NullableAPIError) Get

func (v NullableAPIError) Get() *APIError

func (NullableAPIError) IsSet

func (v NullableAPIError) IsSet() bool

func (NullableAPIError) MarshalJSON

func (v NullableAPIError) MarshalJSON() ([]byte, error)

func (*NullableAPIError) Set

func (v *NullableAPIError) Set(val *APIError)

func (*NullableAPIError) UnmarshalJSON

func (v *NullableAPIError) UnmarshalJSON(src []byte) error

func (*NullableAPIError) Unset

func (v *NullableAPIError) 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 NullableCreateAssetCollectionV1Resp

type NullableCreateAssetCollectionV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateAssetCollectionV1Resp) Get

func (NullableCreateAssetCollectionV1Resp) IsSet

func (NullableCreateAssetCollectionV1Resp) MarshalJSON

func (v NullableCreateAssetCollectionV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateAssetCollectionV1Resp) Set

func (*NullableCreateAssetCollectionV1Resp) UnmarshalJSON

func (v *NullableCreateAssetCollectionV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateAssetCollectionV1Resp) Unset

type NullableCreateAutoCollectionV1Resp

type NullableCreateAutoCollectionV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateAutoCollectionV1Resp) Get

func (NullableCreateAutoCollectionV1Resp) IsSet

func (NullableCreateAutoCollectionV1Resp) MarshalJSON

func (v NullableCreateAutoCollectionV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateAutoCollectionV1Resp) Set

func (*NullableCreateAutoCollectionV1Resp) UnmarshalJSON

func (v *NullableCreateAutoCollectionV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateAutoCollectionV1Resp) Unset

type NullableCreateBnbTransferV1Resp

type NullableCreateBnbTransferV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateBnbTransferV1Resp) Get

func (NullableCreateBnbTransferV1Resp) IsSet

func (NullableCreateBnbTransferV1Resp) MarshalJSON

func (v NullableCreateBnbTransferV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateBnbTransferV1Resp) Set

func (*NullableCreateBnbTransferV1Resp) UnmarshalJSON

func (v *NullableCreateBnbTransferV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateBnbTransferV1Resp) Unset

type NullableCreateCmConditionalOrderV1Resp

type NullableCreateCmConditionalOrderV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateCmConditionalOrderV1Resp) Get

func (NullableCreateCmConditionalOrderV1Resp) IsSet

func (NullableCreateCmConditionalOrderV1Resp) MarshalJSON

func (v NullableCreateCmConditionalOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateCmConditionalOrderV1Resp) Set

func (*NullableCreateCmConditionalOrderV1Resp) UnmarshalJSON

func (v *NullableCreateCmConditionalOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateCmConditionalOrderV1Resp) Unset

type NullableCreateCmLeverageV1Resp

type NullableCreateCmLeverageV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateCmLeverageV1Resp) Get

func (NullableCreateCmLeverageV1Resp) IsSet

func (NullableCreateCmLeverageV1Resp) MarshalJSON

func (v NullableCreateCmLeverageV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateCmLeverageV1Resp) Set

func (*NullableCreateCmLeverageV1Resp) UnmarshalJSON

func (v *NullableCreateCmLeverageV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateCmLeverageV1Resp) Unset

func (v *NullableCreateCmLeverageV1Resp) Unset()

type NullableCreateCmOrderV1Resp

type NullableCreateCmOrderV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableCreateCmOrderV1Resp

func NewNullableCreateCmOrderV1Resp(val *CreateCmOrderV1Resp) *NullableCreateCmOrderV1Resp

func (NullableCreateCmOrderV1Resp) Get

func (NullableCreateCmOrderV1Resp) IsSet

func (NullableCreateCmOrderV1Resp) MarshalJSON

func (v NullableCreateCmOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateCmOrderV1Resp) Set

func (*NullableCreateCmOrderV1Resp) UnmarshalJSON

func (v *NullableCreateCmOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateCmOrderV1Resp) Unset

func (v *NullableCreateCmOrderV1Resp) Unset()

type NullableCreateCmPositionSideDualV1Resp

type NullableCreateCmPositionSideDualV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateCmPositionSideDualV1Resp) Get

func (NullableCreateCmPositionSideDualV1Resp) IsSet

func (NullableCreateCmPositionSideDualV1Resp) MarshalJSON

func (v NullableCreateCmPositionSideDualV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateCmPositionSideDualV1Resp) Set

func (*NullableCreateCmPositionSideDualV1Resp) UnmarshalJSON

func (v *NullableCreateCmPositionSideDualV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateCmPositionSideDualV1Resp) Unset

type NullableCreateListenKeyV1Resp

type NullableCreateListenKeyV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateListenKeyV1Resp) Get

func (NullableCreateListenKeyV1Resp) IsSet

func (NullableCreateListenKeyV1Resp) MarshalJSON

func (v NullableCreateListenKeyV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateListenKeyV1Resp) Set

func (*NullableCreateListenKeyV1Resp) UnmarshalJSON

func (v *NullableCreateListenKeyV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateListenKeyV1Resp) Unset

func (v *NullableCreateListenKeyV1Resp) Unset()

type NullableCreateMarginLoanV1Resp

type NullableCreateMarginLoanV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateMarginLoanV1Resp) Get

func (NullableCreateMarginLoanV1Resp) IsSet

func (NullableCreateMarginLoanV1Resp) MarshalJSON

func (v NullableCreateMarginLoanV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateMarginLoanV1Resp) Set

func (*NullableCreateMarginLoanV1Resp) UnmarshalJSON

func (v *NullableCreateMarginLoanV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateMarginLoanV1Resp) Unset

func (v *NullableCreateMarginLoanV1Resp) Unset()

type NullableCreateMarginOrderOcoV1Resp

type NullableCreateMarginOrderOcoV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateMarginOrderOcoV1Resp) Get

func (NullableCreateMarginOrderOcoV1Resp) IsSet

func (NullableCreateMarginOrderOcoV1Resp) MarshalJSON

func (v NullableCreateMarginOrderOcoV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateMarginOrderOcoV1Resp) Set

func (*NullableCreateMarginOrderOcoV1Resp) UnmarshalJSON

func (v *NullableCreateMarginOrderOcoV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateMarginOrderOcoV1Resp) Unset

type NullableCreateMarginOrderOcoV1RespOrderReportsInner

type NullableCreateMarginOrderOcoV1RespOrderReportsInner struct {
	// contains filtered or unexported fields
}

func (NullableCreateMarginOrderOcoV1RespOrderReportsInner) Get

func (NullableCreateMarginOrderOcoV1RespOrderReportsInner) IsSet

func (NullableCreateMarginOrderOcoV1RespOrderReportsInner) MarshalJSON

func (*NullableCreateMarginOrderOcoV1RespOrderReportsInner) Set

func (*NullableCreateMarginOrderOcoV1RespOrderReportsInner) UnmarshalJSON

func (*NullableCreateMarginOrderOcoV1RespOrderReportsInner) Unset

type NullableCreateMarginOrderOcoV1RespOrdersInner

type NullableCreateMarginOrderOcoV1RespOrdersInner struct {
	// contains filtered or unexported fields
}

func (NullableCreateMarginOrderOcoV1RespOrdersInner) Get

func (NullableCreateMarginOrderOcoV1RespOrdersInner) IsSet

func (NullableCreateMarginOrderOcoV1RespOrdersInner) MarshalJSON

func (*NullableCreateMarginOrderOcoV1RespOrdersInner) Set

func (*NullableCreateMarginOrderOcoV1RespOrdersInner) UnmarshalJSON

func (*NullableCreateMarginOrderOcoV1RespOrdersInner) Unset

type NullableCreateMarginOrderV1Resp

type NullableCreateMarginOrderV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateMarginOrderV1Resp) Get

func (NullableCreateMarginOrderV1Resp) IsSet

func (NullableCreateMarginOrderV1Resp) MarshalJSON

func (v NullableCreateMarginOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateMarginOrderV1Resp) Set

func (*NullableCreateMarginOrderV1Resp) UnmarshalJSON

func (v *NullableCreateMarginOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateMarginOrderV1Resp) Unset

type NullableCreateMarginOrderV1RespFillsInner

type NullableCreateMarginOrderV1RespFillsInner struct {
	// contains filtered or unexported fields
}

func (NullableCreateMarginOrderV1RespFillsInner) Get

func (NullableCreateMarginOrderV1RespFillsInner) IsSet

func (NullableCreateMarginOrderV1RespFillsInner) MarshalJSON

func (*NullableCreateMarginOrderV1RespFillsInner) Set

func (*NullableCreateMarginOrderV1RespFillsInner) UnmarshalJSON

func (v *NullableCreateMarginOrderV1RespFillsInner) UnmarshalJSON(src []byte) error

func (*NullableCreateMarginOrderV1RespFillsInner) Unset

type NullableCreateMarginRepayDebtV1Resp

type NullableCreateMarginRepayDebtV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateMarginRepayDebtV1Resp) Get

func (NullableCreateMarginRepayDebtV1Resp) IsSet

func (NullableCreateMarginRepayDebtV1Resp) MarshalJSON

func (v NullableCreateMarginRepayDebtV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateMarginRepayDebtV1Resp) Set

func (*NullableCreateMarginRepayDebtV1Resp) UnmarshalJSON

func (v *NullableCreateMarginRepayDebtV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateMarginRepayDebtV1Resp) Unset

type NullableCreateRepayFuturesNegativeBalanceV1Resp

type NullableCreateRepayFuturesNegativeBalanceV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateRepayFuturesNegativeBalanceV1Resp) Get

func (NullableCreateRepayFuturesNegativeBalanceV1Resp) IsSet

func (NullableCreateRepayFuturesNegativeBalanceV1Resp) MarshalJSON

func (*NullableCreateRepayFuturesNegativeBalanceV1Resp) Set

func (*NullableCreateRepayFuturesNegativeBalanceV1Resp) UnmarshalJSON

func (*NullableCreateRepayFuturesNegativeBalanceV1Resp) Unset

type NullableCreateRepayFuturesSwitchV1Resp

type NullableCreateRepayFuturesSwitchV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateRepayFuturesSwitchV1Resp) Get

func (NullableCreateRepayFuturesSwitchV1Resp) IsSet

func (NullableCreateRepayFuturesSwitchV1Resp) MarshalJSON

func (v NullableCreateRepayFuturesSwitchV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateRepayFuturesSwitchV1Resp) Set

func (*NullableCreateRepayFuturesSwitchV1Resp) UnmarshalJSON

func (v *NullableCreateRepayFuturesSwitchV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateRepayFuturesSwitchV1Resp) Unset

type NullableCreateRepayLoanV1Resp

type NullableCreateRepayLoanV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateRepayLoanV1Resp) Get

func (NullableCreateRepayLoanV1Resp) IsSet

func (NullableCreateRepayLoanV1Resp) MarshalJSON

func (v NullableCreateRepayLoanV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateRepayLoanV1Resp) Set

func (*NullableCreateRepayLoanV1Resp) UnmarshalJSON

func (v *NullableCreateRepayLoanV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateRepayLoanV1Resp) Unset

func (v *NullableCreateRepayLoanV1Resp) Unset()

type NullableCreateUmConditionalOrderV1Resp

type NullableCreateUmConditionalOrderV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateUmConditionalOrderV1Resp) Get

func (NullableCreateUmConditionalOrderV1Resp) IsSet

func (NullableCreateUmConditionalOrderV1Resp) MarshalJSON

func (v NullableCreateUmConditionalOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateUmConditionalOrderV1Resp) Set

func (*NullableCreateUmConditionalOrderV1Resp) UnmarshalJSON

func (v *NullableCreateUmConditionalOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateUmConditionalOrderV1Resp) Unset

type NullableCreateUmFeeBurnV1Resp

type NullableCreateUmFeeBurnV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateUmFeeBurnV1Resp) Get

func (NullableCreateUmFeeBurnV1Resp) IsSet

func (NullableCreateUmFeeBurnV1Resp) MarshalJSON

func (v NullableCreateUmFeeBurnV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateUmFeeBurnV1Resp) Set

func (*NullableCreateUmFeeBurnV1Resp) UnmarshalJSON

func (v *NullableCreateUmFeeBurnV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateUmFeeBurnV1Resp) Unset

func (v *NullableCreateUmFeeBurnV1Resp) Unset()

type NullableCreateUmLeverageV1Resp

type NullableCreateUmLeverageV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateUmLeverageV1Resp) Get

func (NullableCreateUmLeverageV1Resp) IsSet

func (NullableCreateUmLeverageV1Resp) MarshalJSON

func (v NullableCreateUmLeverageV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateUmLeverageV1Resp) Set

func (*NullableCreateUmLeverageV1Resp) UnmarshalJSON

func (v *NullableCreateUmLeverageV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateUmLeverageV1Resp) Unset

func (v *NullableCreateUmLeverageV1Resp) Unset()

type NullableCreateUmOrderV1Resp

type NullableCreateUmOrderV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableCreateUmOrderV1Resp

func NewNullableCreateUmOrderV1Resp(val *CreateUmOrderV1Resp) *NullableCreateUmOrderV1Resp

func (NullableCreateUmOrderV1Resp) Get

func (NullableCreateUmOrderV1Resp) IsSet

func (NullableCreateUmOrderV1Resp) MarshalJSON

func (v NullableCreateUmOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateUmOrderV1Resp) Set

func (*NullableCreateUmOrderV1Resp) UnmarshalJSON

func (v *NullableCreateUmOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateUmOrderV1Resp) Unset

func (v *NullableCreateUmOrderV1Resp) Unset()

type NullableCreateUmPositionSideDualV1Resp

type NullableCreateUmPositionSideDualV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableCreateUmPositionSideDualV1Resp) Get

func (NullableCreateUmPositionSideDualV1Resp) IsSet

func (NullableCreateUmPositionSideDualV1Resp) MarshalJSON

func (v NullableCreateUmPositionSideDualV1Resp) MarshalJSON() ([]byte, error)

func (*NullableCreateUmPositionSideDualV1Resp) Set

func (*NullableCreateUmPositionSideDualV1Resp) UnmarshalJSON

func (v *NullableCreateUmPositionSideDualV1Resp) UnmarshalJSON(src []byte) error

func (*NullableCreateUmPositionSideDualV1Resp) Unset

type NullableDeleteCmAllOpenOrdersV1Resp

type NullableDeleteCmAllOpenOrdersV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableDeleteCmAllOpenOrdersV1Resp) Get

func (NullableDeleteCmAllOpenOrdersV1Resp) IsSet

func (NullableDeleteCmAllOpenOrdersV1Resp) MarshalJSON

func (v NullableDeleteCmAllOpenOrdersV1Resp) MarshalJSON() ([]byte, error)

func (*NullableDeleteCmAllOpenOrdersV1Resp) Set

func (*NullableDeleteCmAllOpenOrdersV1Resp) UnmarshalJSON

func (v *NullableDeleteCmAllOpenOrdersV1Resp) UnmarshalJSON(src []byte) error

func (*NullableDeleteCmAllOpenOrdersV1Resp) Unset

type NullableDeleteCmConditionalAllOpenOrdersV1Resp

type NullableDeleteCmConditionalAllOpenOrdersV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableDeleteCmConditionalAllOpenOrdersV1Resp) Get

func (NullableDeleteCmConditionalAllOpenOrdersV1Resp) IsSet

func (NullableDeleteCmConditionalAllOpenOrdersV1Resp) MarshalJSON

func (*NullableDeleteCmConditionalAllOpenOrdersV1Resp) Set

func (*NullableDeleteCmConditionalAllOpenOrdersV1Resp) UnmarshalJSON

func (*NullableDeleteCmConditionalAllOpenOrdersV1Resp) Unset

type NullableDeleteCmConditionalOrderV1Resp

type NullableDeleteCmConditionalOrderV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableDeleteCmConditionalOrderV1Resp) Get

func (NullableDeleteCmConditionalOrderV1Resp) IsSet

func (NullableDeleteCmConditionalOrderV1Resp) MarshalJSON

func (v NullableDeleteCmConditionalOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableDeleteCmConditionalOrderV1Resp) Set

func (*NullableDeleteCmConditionalOrderV1Resp) UnmarshalJSON

func (v *NullableDeleteCmConditionalOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableDeleteCmConditionalOrderV1Resp) Unset

type NullableDeleteCmOrderV1Resp

type NullableDeleteCmOrderV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteCmOrderV1Resp

func NewNullableDeleteCmOrderV1Resp(val *DeleteCmOrderV1Resp) *NullableDeleteCmOrderV1Resp

func (NullableDeleteCmOrderV1Resp) Get

func (NullableDeleteCmOrderV1Resp) IsSet

func (NullableDeleteCmOrderV1Resp) MarshalJSON

func (v NullableDeleteCmOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableDeleteCmOrderV1Resp) Set

func (*NullableDeleteCmOrderV1Resp) UnmarshalJSON

func (v *NullableDeleteCmOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableDeleteCmOrderV1Resp) Unset

func (v *NullableDeleteCmOrderV1Resp) Unset()

type NullableDeleteMarginOrderListV1Resp

type NullableDeleteMarginOrderListV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableDeleteMarginOrderListV1Resp) Get

func (NullableDeleteMarginOrderListV1Resp) IsSet

func (NullableDeleteMarginOrderListV1Resp) MarshalJSON

func (v NullableDeleteMarginOrderListV1Resp) MarshalJSON() ([]byte, error)

func (*NullableDeleteMarginOrderListV1Resp) Set

func (*NullableDeleteMarginOrderListV1Resp) UnmarshalJSON

func (v *NullableDeleteMarginOrderListV1Resp) UnmarshalJSON(src []byte) error

func (*NullableDeleteMarginOrderListV1Resp) Unset

type NullableDeleteMarginOrderListV1RespOrderReportsInner

type NullableDeleteMarginOrderListV1RespOrderReportsInner struct {
	// contains filtered or unexported fields
}

func (NullableDeleteMarginOrderListV1RespOrderReportsInner) Get

func (NullableDeleteMarginOrderListV1RespOrderReportsInner) IsSet

func (NullableDeleteMarginOrderListV1RespOrderReportsInner) MarshalJSON

func (*NullableDeleteMarginOrderListV1RespOrderReportsInner) Set

func (*NullableDeleteMarginOrderListV1RespOrderReportsInner) UnmarshalJSON

func (*NullableDeleteMarginOrderListV1RespOrderReportsInner) Unset

type NullableDeleteMarginOrderV1Resp

type NullableDeleteMarginOrderV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableDeleteMarginOrderV1Resp) Get

func (NullableDeleteMarginOrderV1Resp) IsSet

func (NullableDeleteMarginOrderV1Resp) MarshalJSON

func (v NullableDeleteMarginOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableDeleteMarginOrderV1Resp) Set

func (*NullableDeleteMarginOrderV1Resp) UnmarshalJSON

func (v *NullableDeleteMarginOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableDeleteMarginOrderV1Resp) Unset

type NullableDeleteUmAllOpenOrdersV1Resp

type NullableDeleteUmAllOpenOrdersV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableDeleteUmAllOpenOrdersV1Resp) Get

func (NullableDeleteUmAllOpenOrdersV1Resp) IsSet

func (NullableDeleteUmAllOpenOrdersV1Resp) MarshalJSON

func (v NullableDeleteUmAllOpenOrdersV1Resp) MarshalJSON() ([]byte, error)

func (*NullableDeleteUmAllOpenOrdersV1Resp) Set

func (*NullableDeleteUmAllOpenOrdersV1Resp) UnmarshalJSON

func (v *NullableDeleteUmAllOpenOrdersV1Resp) UnmarshalJSON(src []byte) error

func (*NullableDeleteUmAllOpenOrdersV1Resp) Unset

type NullableDeleteUmConditionalAllOpenOrdersV1Resp

type NullableDeleteUmConditionalAllOpenOrdersV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableDeleteUmConditionalAllOpenOrdersV1Resp) Get

func (NullableDeleteUmConditionalAllOpenOrdersV1Resp) IsSet

func (NullableDeleteUmConditionalAllOpenOrdersV1Resp) MarshalJSON

func (*NullableDeleteUmConditionalAllOpenOrdersV1Resp) Set

func (*NullableDeleteUmConditionalAllOpenOrdersV1Resp) UnmarshalJSON

func (*NullableDeleteUmConditionalAllOpenOrdersV1Resp) Unset

type NullableDeleteUmConditionalOrderV1Resp

type NullableDeleteUmConditionalOrderV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableDeleteUmConditionalOrderV1Resp) Get

func (NullableDeleteUmConditionalOrderV1Resp) IsSet

func (NullableDeleteUmConditionalOrderV1Resp) MarshalJSON

func (v NullableDeleteUmConditionalOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableDeleteUmConditionalOrderV1Resp) Set

func (*NullableDeleteUmConditionalOrderV1Resp) UnmarshalJSON

func (v *NullableDeleteUmConditionalOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableDeleteUmConditionalOrderV1Resp) Unset

type NullableDeleteUmOrderV1Resp

type NullableDeleteUmOrderV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteUmOrderV1Resp

func NewNullableDeleteUmOrderV1Resp(val *DeleteUmOrderV1Resp) *NullableDeleteUmOrderV1Resp

func (NullableDeleteUmOrderV1Resp) Get

func (NullableDeleteUmOrderV1Resp) IsSet

func (NullableDeleteUmOrderV1Resp) MarshalJSON

func (v NullableDeleteUmOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableDeleteUmOrderV1Resp) Set

func (*NullableDeleteUmOrderV1Resp) UnmarshalJSON

func (v *NullableDeleteUmOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableDeleteUmOrderV1Resp) Unset

func (v *NullableDeleteUmOrderV1Resp) 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 NullableGetAccountV1Resp

type NullableGetAccountV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableGetAccountV1Resp

func NewNullableGetAccountV1Resp(val *GetAccountV1Resp) *NullableGetAccountV1Resp

func (NullableGetAccountV1Resp) Get

func (NullableGetAccountV1Resp) IsSet

func (v NullableGetAccountV1Resp) IsSet() bool

func (NullableGetAccountV1Resp) MarshalJSON

func (v NullableGetAccountV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetAccountV1Resp) Set

func (*NullableGetAccountV1Resp) UnmarshalJSON

func (v *NullableGetAccountV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetAccountV1Resp) Unset

func (v *NullableGetAccountV1Resp) Unset()

type NullableGetCmAccountV1Resp

type NullableGetCmAccountV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableGetCmAccountV1Resp

func NewNullableGetCmAccountV1Resp(val *GetCmAccountV1Resp) *NullableGetCmAccountV1Resp

func (NullableGetCmAccountV1Resp) Get

func (NullableGetCmAccountV1Resp) IsSet

func (v NullableGetCmAccountV1Resp) IsSet() bool

func (NullableGetCmAccountV1Resp) MarshalJSON

func (v NullableGetCmAccountV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetCmAccountV1Resp) Set

func (*NullableGetCmAccountV1Resp) UnmarshalJSON

func (v *NullableGetCmAccountV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetCmAccountV1Resp) Unset

func (v *NullableGetCmAccountV1Resp) Unset()

type NullableGetCmAccountV1RespAssetsInner

type NullableGetCmAccountV1RespAssetsInner struct {
	// contains filtered or unexported fields
}

func (NullableGetCmAccountV1RespAssetsInner) Get

func (NullableGetCmAccountV1RespAssetsInner) IsSet

func (NullableGetCmAccountV1RespAssetsInner) MarshalJSON

func (v NullableGetCmAccountV1RespAssetsInner) MarshalJSON() ([]byte, error)

func (*NullableGetCmAccountV1RespAssetsInner) Set

func (*NullableGetCmAccountV1RespAssetsInner) UnmarshalJSON

func (v *NullableGetCmAccountV1RespAssetsInner) UnmarshalJSON(src []byte) error

func (*NullableGetCmAccountV1RespAssetsInner) Unset

type NullableGetCmAccountV1RespPositionsInner

type NullableGetCmAccountV1RespPositionsInner struct {
	// contains filtered or unexported fields
}

func (NullableGetCmAccountV1RespPositionsInner) Get

func (NullableGetCmAccountV1RespPositionsInner) IsSet

func (NullableGetCmAccountV1RespPositionsInner) MarshalJSON

func (*NullableGetCmAccountV1RespPositionsInner) Set

func (*NullableGetCmAccountV1RespPositionsInner) UnmarshalJSON

func (v *NullableGetCmAccountV1RespPositionsInner) UnmarshalJSON(src []byte) error

func (*NullableGetCmAccountV1RespPositionsInner) Unset

type NullableGetCmAdlQuantileV1RespItem

type NullableGetCmAdlQuantileV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetCmAdlQuantileV1RespItem) Get

func (NullableGetCmAdlQuantileV1RespItem) IsSet

func (NullableGetCmAdlQuantileV1RespItem) MarshalJSON

func (v NullableGetCmAdlQuantileV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetCmAdlQuantileV1RespItem) Set

func (*NullableGetCmAdlQuantileV1RespItem) UnmarshalJSON

func (v *NullableGetCmAdlQuantileV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetCmAdlQuantileV1RespItem) Unset

type NullableGetCmAdlQuantileV1RespItemAdlQuantile

type NullableGetCmAdlQuantileV1RespItemAdlQuantile struct {
	// contains filtered or unexported fields
}

func (NullableGetCmAdlQuantileV1RespItemAdlQuantile) Get

func (NullableGetCmAdlQuantileV1RespItemAdlQuantile) IsSet

func (NullableGetCmAdlQuantileV1RespItemAdlQuantile) MarshalJSON

func (*NullableGetCmAdlQuantileV1RespItemAdlQuantile) Set

func (*NullableGetCmAdlQuantileV1RespItemAdlQuantile) UnmarshalJSON

func (*NullableGetCmAdlQuantileV1RespItemAdlQuantile) Unset

type NullableGetCmAllOrdersV1RespItem

type NullableGetCmAllOrdersV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetCmAllOrdersV1RespItem) Get

func (NullableGetCmAllOrdersV1RespItem) IsSet

func (NullableGetCmAllOrdersV1RespItem) MarshalJSON

func (v NullableGetCmAllOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetCmAllOrdersV1RespItem) Set

func (*NullableGetCmAllOrdersV1RespItem) UnmarshalJSON

func (v *NullableGetCmAllOrdersV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetCmAllOrdersV1RespItem) Unset

type NullableGetCmCommissionRateV1Resp

type NullableGetCmCommissionRateV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetCmCommissionRateV1Resp) Get

func (NullableGetCmCommissionRateV1Resp) IsSet

func (NullableGetCmCommissionRateV1Resp) MarshalJSON

func (v NullableGetCmCommissionRateV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetCmCommissionRateV1Resp) Set

func (*NullableGetCmCommissionRateV1Resp) UnmarshalJSON

func (v *NullableGetCmCommissionRateV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetCmCommissionRateV1Resp) Unset

type NullableGetCmConditionalAllOrdersV1RespItem

type NullableGetCmConditionalAllOrdersV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetCmConditionalAllOrdersV1RespItem) Get

func (NullableGetCmConditionalAllOrdersV1RespItem) IsSet

func (NullableGetCmConditionalAllOrdersV1RespItem) MarshalJSON

func (*NullableGetCmConditionalAllOrdersV1RespItem) Set

func (*NullableGetCmConditionalAllOrdersV1RespItem) UnmarshalJSON

func (v *NullableGetCmConditionalAllOrdersV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetCmConditionalAllOrdersV1RespItem) Unset

type NullableGetCmConditionalOpenOrderV1Resp

type NullableGetCmConditionalOpenOrderV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetCmConditionalOpenOrderV1Resp) Get

func (NullableGetCmConditionalOpenOrderV1Resp) IsSet

func (NullableGetCmConditionalOpenOrderV1Resp) MarshalJSON

func (v NullableGetCmConditionalOpenOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetCmConditionalOpenOrderV1Resp) Set

func (*NullableGetCmConditionalOpenOrderV1Resp) UnmarshalJSON

func (v *NullableGetCmConditionalOpenOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetCmConditionalOpenOrderV1Resp) Unset

type NullableGetCmConditionalOpenOrdersV1RespItem

type NullableGetCmConditionalOpenOrdersV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetCmConditionalOpenOrdersV1RespItem) Get

func (NullableGetCmConditionalOpenOrdersV1RespItem) IsSet

func (NullableGetCmConditionalOpenOrdersV1RespItem) MarshalJSON

func (*NullableGetCmConditionalOpenOrdersV1RespItem) Set

func (*NullableGetCmConditionalOpenOrdersV1RespItem) UnmarshalJSON

func (*NullableGetCmConditionalOpenOrdersV1RespItem) Unset

type NullableGetCmConditionalOrderHistoryV1Resp

type NullableGetCmConditionalOrderHistoryV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetCmConditionalOrderHistoryV1Resp) Get

func (NullableGetCmConditionalOrderHistoryV1Resp) IsSet

func (NullableGetCmConditionalOrderHistoryV1Resp) MarshalJSON

func (*NullableGetCmConditionalOrderHistoryV1Resp) Set

func (*NullableGetCmConditionalOrderHistoryV1Resp) UnmarshalJSON

func (v *NullableGetCmConditionalOrderHistoryV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetCmConditionalOrderHistoryV1Resp) Unset

type NullableGetCmForceOrdersV1RespItem

type NullableGetCmForceOrdersV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetCmForceOrdersV1RespItem) Get

func (NullableGetCmForceOrdersV1RespItem) IsSet

func (NullableGetCmForceOrdersV1RespItem) MarshalJSON

func (v NullableGetCmForceOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetCmForceOrdersV1RespItem) Set

func (*NullableGetCmForceOrdersV1RespItem) UnmarshalJSON

func (v *NullableGetCmForceOrdersV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetCmForceOrdersV1RespItem) Unset

type NullableGetCmIncomeV1RespItem

type NullableGetCmIncomeV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetCmIncomeV1RespItem) Get

func (NullableGetCmIncomeV1RespItem) IsSet

func (NullableGetCmIncomeV1RespItem) MarshalJSON

func (v NullableGetCmIncomeV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetCmIncomeV1RespItem) Set

func (*NullableGetCmIncomeV1RespItem) UnmarshalJSON

func (v *NullableGetCmIncomeV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetCmIncomeV1RespItem) Unset

func (v *NullableGetCmIncomeV1RespItem) Unset()

type NullableGetCmLeverageBracketV1RespItem

type NullableGetCmLeverageBracketV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetCmLeverageBracketV1RespItem) Get

func (NullableGetCmLeverageBracketV1RespItem) IsSet

func (NullableGetCmLeverageBracketV1RespItem) MarshalJSON

func (v NullableGetCmLeverageBracketV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetCmLeverageBracketV1RespItem) Set

func (*NullableGetCmLeverageBracketV1RespItem) UnmarshalJSON

func (v *NullableGetCmLeverageBracketV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetCmLeverageBracketV1RespItem) Unset

type NullableGetCmLeverageBracketV1RespItemBracketsInner

type NullableGetCmLeverageBracketV1RespItemBracketsInner struct {
	// contains filtered or unexported fields
}

func (NullableGetCmLeverageBracketV1RespItemBracketsInner) Get

func (NullableGetCmLeverageBracketV1RespItemBracketsInner) IsSet

func (NullableGetCmLeverageBracketV1RespItemBracketsInner) MarshalJSON

func (*NullableGetCmLeverageBracketV1RespItemBracketsInner) Set

func (*NullableGetCmLeverageBracketV1RespItemBracketsInner) UnmarshalJSON

func (*NullableGetCmLeverageBracketV1RespItemBracketsInner) Unset

type NullableGetCmOpenOrderV1Resp

type NullableGetCmOpenOrderV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableGetCmOpenOrderV1Resp

func NewNullableGetCmOpenOrderV1Resp(val *GetCmOpenOrderV1Resp) *NullableGetCmOpenOrderV1Resp

func (NullableGetCmOpenOrderV1Resp) Get

func (NullableGetCmOpenOrderV1Resp) IsSet

func (NullableGetCmOpenOrderV1Resp) MarshalJSON

func (v NullableGetCmOpenOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetCmOpenOrderV1Resp) Set

func (*NullableGetCmOpenOrderV1Resp) UnmarshalJSON

func (v *NullableGetCmOpenOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetCmOpenOrderV1Resp) Unset

func (v *NullableGetCmOpenOrderV1Resp) Unset()

type NullableGetCmOpenOrdersV1RespItem

type NullableGetCmOpenOrdersV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetCmOpenOrdersV1RespItem) Get

func (NullableGetCmOpenOrdersV1RespItem) IsSet

func (NullableGetCmOpenOrdersV1RespItem) MarshalJSON

func (v NullableGetCmOpenOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetCmOpenOrdersV1RespItem) Set

func (*NullableGetCmOpenOrdersV1RespItem) UnmarshalJSON

func (v *NullableGetCmOpenOrdersV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetCmOpenOrdersV1RespItem) Unset

type NullableGetCmOrderAmendmentV1RespItem

type NullableGetCmOrderAmendmentV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetCmOrderAmendmentV1RespItem) Get

func (NullableGetCmOrderAmendmentV1RespItem) IsSet

func (NullableGetCmOrderAmendmentV1RespItem) MarshalJSON

func (v NullableGetCmOrderAmendmentV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetCmOrderAmendmentV1RespItem) Set

func (*NullableGetCmOrderAmendmentV1RespItem) UnmarshalJSON

func (v *NullableGetCmOrderAmendmentV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetCmOrderAmendmentV1RespItem) Unset

type NullableGetCmOrderAmendmentV1RespItemAmendment

type NullableGetCmOrderAmendmentV1RespItemAmendment struct {
	// contains filtered or unexported fields
}

func (NullableGetCmOrderAmendmentV1RespItemAmendment) Get

func (NullableGetCmOrderAmendmentV1RespItemAmendment) IsSet

func (NullableGetCmOrderAmendmentV1RespItemAmendment) MarshalJSON

func (*NullableGetCmOrderAmendmentV1RespItemAmendment) Set

func (*NullableGetCmOrderAmendmentV1RespItemAmendment) UnmarshalJSON

func (*NullableGetCmOrderAmendmentV1RespItemAmendment) Unset

type NullableGetCmOrderAmendmentV1RespItemAmendmentOrigQty

type NullableGetCmOrderAmendmentV1RespItemAmendmentOrigQty struct {
	// contains filtered or unexported fields
}

func (NullableGetCmOrderAmendmentV1RespItemAmendmentOrigQty) Get

func (NullableGetCmOrderAmendmentV1RespItemAmendmentOrigQty) IsSet

func (NullableGetCmOrderAmendmentV1RespItemAmendmentOrigQty) MarshalJSON

func (*NullableGetCmOrderAmendmentV1RespItemAmendmentOrigQty) Set

func (*NullableGetCmOrderAmendmentV1RespItemAmendmentOrigQty) UnmarshalJSON

func (*NullableGetCmOrderAmendmentV1RespItemAmendmentOrigQty) Unset

type NullableGetCmOrderV1Resp

type NullableGetCmOrderV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableGetCmOrderV1Resp

func NewNullableGetCmOrderV1Resp(val *GetCmOrderV1Resp) *NullableGetCmOrderV1Resp

func (NullableGetCmOrderV1Resp) Get

func (NullableGetCmOrderV1Resp) IsSet

func (v NullableGetCmOrderV1Resp) IsSet() bool

func (NullableGetCmOrderV1Resp) MarshalJSON

func (v NullableGetCmOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetCmOrderV1Resp) Set

func (*NullableGetCmOrderV1Resp) UnmarshalJSON

func (v *NullableGetCmOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetCmOrderV1Resp) Unset

func (v *NullableGetCmOrderV1Resp) Unset()

type NullableGetCmPositionRiskV1RespItem

type NullableGetCmPositionRiskV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetCmPositionRiskV1RespItem) Get

func (NullableGetCmPositionRiskV1RespItem) IsSet

func (NullableGetCmPositionRiskV1RespItem) MarshalJSON

func (v NullableGetCmPositionRiskV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetCmPositionRiskV1RespItem) Set

func (*NullableGetCmPositionRiskV1RespItem) UnmarshalJSON

func (v *NullableGetCmPositionRiskV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetCmPositionRiskV1RespItem) Unset

type NullableGetCmPositionSideDualV1Resp

type NullableGetCmPositionSideDualV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetCmPositionSideDualV1Resp) Get

func (NullableGetCmPositionSideDualV1Resp) IsSet

func (NullableGetCmPositionSideDualV1Resp) MarshalJSON

func (v NullableGetCmPositionSideDualV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetCmPositionSideDualV1Resp) Set

func (*NullableGetCmPositionSideDualV1Resp) UnmarshalJSON

func (v *NullableGetCmPositionSideDualV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetCmPositionSideDualV1Resp) Unset

type NullableGetCmUserTradesV1RespItem

type NullableGetCmUserTradesV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetCmUserTradesV1RespItem) Get

func (NullableGetCmUserTradesV1RespItem) IsSet

func (NullableGetCmUserTradesV1RespItem) MarshalJSON

func (v NullableGetCmUserTradesV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetCmUserTradesV1RespItem) Set

func (*NullableGetCmUserTradesV1RespItem) UnmarshalJSON

func (v *NullableGetCmUserTradesV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetCmUserTradesV1RespItem) Unset

type NullableGetMarginAllOrderListV1RespItem

type NullableGetMarginAllOrderListV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginAllOrderListV1RespItem) Get

func (NullableGetMarginAllOrderListV1RespItem) IsSet

func (NullableGetMarginAllOrderListV1RespItem) MarshalJSON

func (v NullableGetMarginAllOrderListV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetMarginAllOrderListV1RespItem) Set

func (*NullableGetMarginAllOrderListV1RespItem) UnmarshalJSON

func (v *NullableGetMarginAllOrderListV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetMarginAllOrderListV1RespItem) Unset

type NullableGetMarginAllOrdersV1RespItem

type NullableGetMarginAllOrdersV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginAllOrdersV1RespItem) Get

func (NullableGetMarginAllOrdersV1RespItem) IsSet

func (NullableGetMarginAllOrdersV1RespItem) MarshalJSON

func (v NullableGetMarginAllOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetMarginAllOrdersV1RespItem) Set

func (*NullableGetMarginAllOrdersV1RespItem) UnmarshalJSON

func (v *NullableGetMarginAllOrdersV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetMarginAllOrdersV1RespItem) Unset

type NullableGetMarginForceOrdersV1Resp

type NullableGetMarginForceOrdersV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginForceOrdersV1Resp) Get

func (NullableGetMarginForceOrdersV1Resp) IsSet

func (NullableGetMarginForceOrdersV1Resp) MarshalJSON

func (v NullableGetMarginForceOrdersV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetMarginForceOrdersV1Resp) Set

func (*NullableGetMarginForceOrdersV1Resp) UnmarshalJSON

func (v *NullableGetMarginForceOrdersV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetMarginForceOrdersV1Resp) Unset

type NullableGetMarginForceOrdersV1RespRowsInner

type NullableGetMarginForceOrdersV1RespRowsInner struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginForceOrdersV1RespRowsInner) Get

func (NullableGetMarginForceOrdersV1RespRowsInner) IsSet

func (NullableGetMarginForceOrdersV1RespRowsInner) MarshalJSON

func (*NullableGetMarginForceOrdersV1RespRowsInner) Set

func (*NullableGetMarginForceOrdersV1RespRowsInner) UnmarshalJSON

func (v *NullableGetMarginForceOrdersV1RespRowsInner) UnmarshalJSON(src []byte) error

func (*NullableGetMarginForceOrdersV1RespRowsInner) Unset

type NullableGetMarginMarginInterestHistoryV1Resp

type NullableGetMarginMarginInterestHistoryV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginMarginInterestHistoryV1Resp) Get

func (NullableGetMarginMarginInterestHistoryV1Resp) IsSet

func (NullableGetMarginMarginInterestHistoryV1Resp) MarshalJSON

func (*NullableGetMarginMarginInterestHistoryV1Resp) Set

func (*NullableGetMarginMarginInterestHistoryV1Resp) UnmarshalJSON

func (*NullableGetMarginMarginInterestHistoryV1Resp) Unset

type NullableGetMarginMarginInterestHistoryV1RespRowsInner

type NullableGetMarginMarginInterestHistoryV1RespRowsInner struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginMarginInterestHistoryV1RespRowsInner) Get

func (NullableGetMarginMarginInterestHistoryV1RespRowsInner) IsSet

func (NullableGetMarginMarginInterestHistoryV1RespRowsInner) MarshalJSON

func (*NullableGetMarginMarginInterestHistoryV1RespRowsInner) Set

func (*NullableGetMarginMarginInterestHistoryV1RespRowsInner) UnmarshalJSON

func (*NullableGetMarginMarginInterestHistoryV1RespRowsInner) Unset

type NullableGetMarginMarginLoanV1Resp

type NullableGetMarginMarginLoanV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginMarginLoanV1Resp) Get

func (NullableGetMarginMarginLoanV1Resp) IsSet

func (NullableGetMarginMarginLoanV1Resp) MarshalJSON

func (v NullableGetMarginMarginLoanV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetMarginMarginLoanV1Resp) Set

func (*NullableGetMarginMarginLoanV1Resp) UnmarshalJSON

func (v *NullableGetMarginMarginLoanV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetMarginMarginLoanV1Resp) Unset

type NullableGetMarginMarginLoanV1RespRowsInner

type NullableGetMarginMarginLoanV1RespRowsInner struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginMarginLoanV1RespRowsInner) Get

func (NullableGetMarginMarginLoanV1RespRowsInner) IsSet

func (NullableGetMarginMarginLoanV1RespRowsInner) MarshalJSON

func (*NullableGetMarginMarginLoanV1RespRowsInner) Set

func (*NullableGetMarginMarginLoanV1RespRowsInner) UnmarshalJSON

func (v *NullableGetMarginMarginLoanV1RespRowsInner) UnmarshalJSON(src []byte) error

func (*NullableGetMarginMarginLoanV1RespRowsInner) Unset

type NullableGetMarginMaxBorrowableV1Resp

type NullableGetMarginMaxBorrowableV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginMaxBorrowableV1Resp) Get

func (NullableGetMarginMaxBorrowableV1Resp) IsSet

func (NullableGetMarginMaxBorrowableV1Resp) MarshalJSON

func (v NullableGetMarginMaxBorrowableV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetMarginMaxBorrowableV1Resp) Set

func (*NullableGetMarginMaxBorrowableV1Resp) UnmarshalJSON

func (v *NullableGetMarginMaxBorrowableV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetMarginMaxBorrowableV1Resp) Unset

type NullableGetMarginMaxWithdrawV1Resp

type NullableGetMarginMaxWithdrawV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginMaxWithdrawV1Resp) Get

func (NullableGetMarginMaxWithdrawV1Resp) IsSet

func (NullableGetMarginMaxWithdrawV1Resp) MarshalJSON

func (v NullableGetMarginMaxWithdrawV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetMarginMaxWithdrawV1Resp) Set

func (*NullableGetMarginMaxWithdrawV1Resp) UnmarshalJSON

func (v *NullableGetMarginMaxWithdrawV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetMarginMaxWithdrawV1Resp) Unset

type NullableGetMarginMyTradesV1RespItem

type NullableGetMarginMyTradesV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginMyTradesV1RespItem) Get

func (NullableGetMarginMyTradesV1RespItem) IsSet

func (NullableGetMarginMyTradesV1RespItem) MarshalJSON

func (v NullableGetMarginMyTradesV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetMarginMyTradesV1RespItem) Set

func (*NullableGetMarginMyTradesV1RespItem) UnmarshalJSON

func (v *NullableGetMarginMyTradesV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetMarginMyTradesV1RespItem) Unset

type NullableGetMarginOpenOrderListV1RespItem

type NullableGetMarginOpenOrderListV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginOpenOrderListV1RespItem) Get

func (NullableGetMarginOpenOrderListV1RespItem) IsSet

func (NullableGetMarginOpenOrderListV1RespItem) MarshalJSON

func (*NullableGetMarginOpenOrderListV1RespItem) Set

func (*NullableGetMarginOpenOrderListV1RespItem) UnmarshalJSON

func (v *NullableGetMarginOpenOrderListV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetMarginOpenOrderListV1RespItem) Unset

type NullableGetMarginOpenOrdersV1RespItem

type NullableGetMarginOpenOrdersV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginOpenOrdersV1RespItem) Get

func (NullableGetMarginOpenOrdersV1RespItem) IsSet

func (NullableGetMarginOpenOrdersV1RespItem) MarshalJSON

func (v NullableGetMarginOpenOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetMarginOpenOrdersV1RespItem) Set

func (*NullableGetMarginOpenOrdersV1RespItem) UnmarshalJSON

func (v *NullableGetMarginOpenOrdersV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetMarginOpenOrdersV1RespItem) Unset

type NullableGetMarginOrderListV1Resp

type NullableGetMarginOrderListV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginOrderListV1Resp) Get

func (NullableGetMarginOrderListV1Resp) IsSet

func (NullableGetMarginOrderListV1Resp) MarshalJSON

func (v NullableGetMarginOrderListV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetMarginOrderListV1Resp) Set

func (*NullableGetMarginOrderListV1Resp) UnmarshalJSON

func (v *NullableGetMarginOrderListV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetMarginOrderListV1Resp) Unset

type NullableGetMarginOrderV1Resp

type NullableGetMarginOrderV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableGetMarginOrderV1Resp

func NewNullableGetMarginOrderV1Resp(val *GetMarginOrderV1Resp) *NullableGetMarginOrderV1Resp

func (NullableGetMarginOrderV1Resp) Get

func (NullableGetMarginOrderV1Resp) IsSet

func (NullableGetMarginOrderV1Resp) MarshalJSON

func (v NullableGetMarginOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetMarginOrderV1Resp) Set

func (*NullableGetMarginOrderV1Resp) UnmarshalJSON

func (v *NullableGetMarginOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetMarginOrderV1Resp) Unset

func (v *NullableGetMarginOrderV1Resp) Unset()

type NullableGetMarginRepayLoanV1Resp

type NullableGetMarginRepayLoanV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginRepayLoanV1Resp) Get

func (NullableGetMarginRepayLoanV1Resp) IsSet

func (NullableGetMarginRepayLoanV1Resp) MarshalJSON

func (v NullableGetMarginRepayLoanV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetMarginRepayLoanV1Resp) Set

func (*NullableGetMarginRepayLoanV1Resp) UnmarshalJSON

func (v *NullableGetMarginRepayLoanV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetMarginRepayLoanV1Resp) Unset

type NullableGetMarginRepayLoanV1RespRowsInner

type NullableGetMarginRepayLoanV1RespRowsInner struct {
	// contains filtered or unexported fields
}

func (NullableGetMarginRepayLoanV1RespRowsInner) Get

func (NullableGetMarginRepayLoanV1RespRowsInner) IsSet

func (NullableGetMarginRepayLoanV1RespRowsInner) MarshalJSON

func (*NullableGetMarginRepayLoanV1RespRowsInner) Set

func (*NullableGetMarginRepayLoanV1RespRowsInner) UnmarshalJSON

func (v *NullableGetMarginRepayLoanV1RespRowsInner) UnmarshalJSON(src []byte) error

func (*NullableGetMarginRepayLoanV1RespRowsInner) Unset

type NullableGetPortfolioInterestHistoryV1RespItem

type NullableGetPortfolioInterestHistoryV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetPortfolioInterestHistoryV1RespItem) Get

func (NullableGetPortfolioInterestHistoryV1RespItem) IsSet

func (NullableGetPortfolioInterestHistoryV1RespItem) MarshalJSON

func (*NullableGetPortfolioInterestHistoryV1RespItem) Set

func (*NullableGetPortfolioInterestHistoryV1RespItem) UnmarshalJSON

func (*NullableGetPortfolioInterestHistoryV1RespItem) Unset

type NullableGetPortfolioNegativeBalanceExchangeRecordV1Resp

type NullableGetPortfolioNegativeBalanceExchangeRecordV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetPortfolioNegativeBalanceExchangeRecordV1Resp) Get

func (NullableGetPortfolioNegativeBalanceExchangeRecordV1Resp) IsSet

func (NullableGetPortfolioNegativeBalanceExchangeRecordV1Resp) MarshalJSON

func (*NullableGetPortfolioNegativeBalanceExchangeRecordV1Resp) Set

func (*NullableGetPortfolioNegativeBalanceExchangeRecordV1Resp) UnmarshalJSON

func (*NullableGetPortfolioNegativeBalanceExchangeRecordV1Resp) Unset

type NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner

type NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner struct {
	// contains filtered or unexported fields
}

func (NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) Get

func (NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) IsSet

func (NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) MarshalJSON

func (*NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) Set

func (*NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) UnmarshalJSON

func (*NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInner) Unset

type NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner

type NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner struct {
	// contains filtered or unexported fields
}

func (NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) Get

func (NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) IsSet

func (NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) MarshalJSON

func (*NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) Set

func (*NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) UnmarshalJSON

func (*NullableGetPortfolioNegativeBalanceExchangeRecordV1RespRowsInnerDetailsInner) Unset

type NullableGetRateLimitOrderV1RespItem

type NullableGetRateLimitOrderV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetRateLimitOrderV1RespItem) Get

func (NullableGetRateLimitOrderV1RespItem) IsSet

func (NullableGetRateLimitOrderV1RespItem) MarshalJSON

func (v NullableGetRateLimitOrderV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetRateLimitOrderV1RespItem) Set

func (*NullableGetRateLimitOrderV1RespItem) UnmarshalJSON

func (v *NullableGetRateLimitOrderV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetRateLimitOrderV1RespItem) Unset

type NullableGetRepayFuturesSwitchV1Resp

type NullableGetRepayFuturesSwitchV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetRepayFuturesSwitchV1Resp) Get

func (NullableGetRepayFuturesSwitchV1Resp) IsSet

func (NullableGetRepayFuturesSwitchV1Resp) MarshalJSON

func (v NullableGetRepayFuturesSwitchV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetRepayFuturesSwitchV1Resp) Set

func (*NullableGetRepayFuturesSwitchV1Resp) UnmarshalJSON

func (v *NullableGetRepayFuturesSwitchV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetRepayFuturesSwitchV1Resp) Unset

type NullableGetUmAccountConfigV1Resp

type NullableGetUmAccountConfigV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetUmAccountConfigV1Resp) Get

func (NullableGetUmAccountConfigV1Resp) IsSet

func (NullableGetUmAccountConfigV1Resp) MarshalJSON

func (v NullableGetUmAccountConfigV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmAccountConfigV1Resp) Set

func (*NullableGetUmAccountConfigV1Resp) UnmarshalJSON

func (v *NullableGetUmAccountConfigV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmAccountConfigV1Resp) Unset

type NullableGetUmAccountV1Resp

type NullableGetUmAccountV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableGetUmAccountV1Resp

func NewNullableGetUmAccountV1Resp(val *GetUmAccountV1Resp) *NullableGetUmAccountV1Resp

func (NullableGetUmAccountV1Resp) Get

func (NullableGetUmAccountV1Resp) IsSet

func (v NullableGetUmAccountV1Resp) IsSet() bool

func (NullableGetUmAccountV1Resp) MarshalJSON

func (v NullableGetUmAccountV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmAccountV1Resp) Set

func (*NullableGetUmAccountV1Resp) UnmarshalJSON

func (v *NullableGetUmAccountV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmAccountV1Resp) Unset

func (v *NullableGetUmAccountV1Resp) Unset()

type NullableGetUmAccountV1RespPositionsInner

type NullableGetUmAccountV1RespPositionsInner struct {
	// contains filtered or unexported fields
}

func (NullableGetUmAccountV1RespPositionsInner) Get

func (NullableGetUmAccountV1RespPositionsInner) IsSet

func (NullableGetUmAccountV1RespPositionsInner) MarshalJSON

func (*NullableGetUmAccountV1RespPositionsInner) Set

func (*NullableGetUmAccountV1RespPositionsInner) UnmarshalJSON

func (v *NullableGetUmAccountV1RespPositionsInner) UnmarshalJSON(src []byte) error

func (*NullableGetUmAccountV1RespPositionsInner) Unset

type NullableGetUmAccountV2Resp

type NullableGetUmAccountV2Resp struct {
	// contains filtered or unexported fields
}

func NewNullableGetUmAccountV2Resp

func NewNullableGetUmAccountV2Resp(val *GetUmAccountV2Resp) *NullableGetUmAccountV2Resp

func (NullableGetUmAccountV2Resp) Get

func (NullableGetUmAccountV2Resp) IsSet

func (v NullableGetUmAccountV2Resp) IsSet() bool

func (NullableGetUmAccountV2Resp) MarshalJSON

func (v NullableGetUmAccountV2Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmAccountV2Resp) Set

func (*NullableGetUmAccountV2Resp) UnmarshalJSON

func (v *NullableGetUmAccountV2Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmAccountV2Resp) Unset

func (v *NullableGetUmAccountV2Resp) Unset()

type NullableGetUmAccountV2RespPositionsInner

type NullableGetUmAccountV2RespPositionsInner struct {
	// contains filtered or unexported fields
}

func (NullableGetUmAccountV2RespPositionsInner) Get

func (NullableGetUmAccountV2RespPositionsInner) IsSet

func (NullableGetUmAccountV2RespPositionsInner) MarshalJSON

func (*NullableGetUmAccountV2RespPositionsInner) Set

func (*NullableGetUmAccountV2RespPositionsInner) UnmarshalJSON

func (v *NullableGetUmAccountV2RespPositionsInner) UnmarshalJSON(src []byte) error

func (*NullableGetUmAccountV2RespPositionsInner) Unset

type NullableGetUmAdlQuantileV1RespItem

type NullableGetUmAdlQuantileV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetUmAdlQuantileV1RespItem) Get

func (NullableGetUmAdlQuantileV1RespItem) IsSet

func (NullableGetUmAdlQuantileV1RespItem) MarshalJSON

func (v NullableGetUmAdlQuantileV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetUmAdlQuantileV1RespItem) Set

func (*NullableGetUmAdlQuantileV1RespItem) UnmarshalJSON

func (v *NullableGetUmAdlQuantileV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetUmAdlQuantileV1RespItem) Unset

type NullableGetUmAllOrdersV1RespItem

type NullableGetUmAllOrdersV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetUmAllOrdersV1RespItem) Get

func (NullableGetUmAllOrdersV1RespItem) IsSet

func (NullableGetUmAllOrdersV1RespItem) MarshalJSON

func (v NullableGetUmAllOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetUmAllOrdersV1RespItem) Set

func (*NullableGetUmAllOrdersV1RespItem) UnmarshalJSON

func (v *NullableGetUmAllOrdersV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetUmAllOrdersV1RespItem) Unset

type NullableGetUmApiTradingStatusV1Resp

type NullableGetUmApiTradingStatusV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetUmApiTradingStatusV1Resp) Get

func (NullableGetUmApiTradingStatusV1Resp) IsSet

func (NullableGetUmApiTradingStatusV1Resp) MarshalJSON

func (v NullableGetUmApiTradingStatusV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmApiTradingStatusV1Resp) Set

func (*NullableGetUmApiTradingStatusV1Resp) UnmarshalJSON

func (v *NullableGetUmApiTradingStatusV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmApiTradingStatusV1Resp) Unset

type NullableGetUmApiTradingStatusV1RespIndicators

type NullableGetUmApiTradingStatusV1RespIndicators struct {
	// contains filtered or unexported fields
}

func (NullableGetUmApiTradingStatusV1RespIndicators) Get

func (NullableGetUmApiTradingStatusV1RespIndicators) IsSet

func (NullableGetUmApiTradingStatusV1RespIndicators) MarshalJSON

func (*NullableGetUmApiTradingStatusV1RespIndicators) Set

func (*NullableGetUmApiTradingStatusV1RespIndicators) UnmarshalJSON

func (*NullableGetUmApiTradingStatusV1RespIndicators) Unset

type NullableGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner

type NullableGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner struct {
	// contains filtered or unexported fields
}

func (NullableGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) Get

func (NullableGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) IsSet

func (NullableGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) MarshalJSON

func (*NullableGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) Set

func (*NullableGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) UnmarshalJSON

func (*NullableGetUmApiTradingStatusV1RespIndicatorsBTCUSDTInner) Unset

type NullableGetUmCommissionRateV1Resp

type NullableGetUmCommissionRateV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetUmCommissionRateV1Resp) Get

func (NullableGetUmCommissionRateV1Resp) IsSet

func (NullableGetUmCommissionRateV1Resp) MarshalJSON

func (v NullableGetUmCommissionRateV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmCommissionRateV1Resp) Set

func (*NullableGetUmCommissionRateV1Resp) UnmarshalJSON

func (v *NullableGetUmCommissionRateV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmCommissionRateV1Resp) Unset

type NullableGetUmConditionalAllOrdersV1RespItem

type NullableGetUmConditionalAllOrdersV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetUmConditionalAllOrdersV1RespItem) Get

func (NullableGetUmConditionalAllOrdersV1RespItem) IsSet

func (NullableGetUmConditionalAllOrdersV1RespItem) MarshalJSON

func (*NullableGetUmConditionalAllOrdersV1RespItem) Set

func (*NullableGetUmConditionalAllOrdersV1RespItem) UnmarshalJSON

func (v *NullableGetUmConditionalAllOrdersV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetUmConditionalAllOrdersV1RespItem) Unset

type NullableGetUmConditionalOpenOrderV1Resp

type NullableGetUmConditionalOpenOrderV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetUmConditionalOpenOrderV1Resp) Get

func (NullableGetUmConditionalOpenOrderV1Resp) IsSet

func (NullableGetUmConditionalOpenOrderV1Resp) MarshalJSON

func (v NullableGetUmConditionalOpenOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmConditionalOpenOrderV1Resp) Set

func (*NullableGetUmConditionalOpenOrderV1Resp) UnmarshalJSON

func (v *NullableGetUmConditionalOpenOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmConditionalOpenOrderV1Resp) Unset

type NullableGetUmConditionalOpenOrdersV1RespItem

type NullableGetUmConditionalOpenOrdersV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetUmConditionalOpenOrdersV1RespItem) Get

func (NullableGetUmConditionalOpenOrdersV1RespItem) IsSet

func (NullableGetUmConditionalOpenOrdersV1RespItem) MarshalJSON

func (*NullableGetUmConditionalOpenOrdersV1RespItem) Set

func (*NullableGetUmConditionalOpenOrdersV1RespItem) UnmarshalJSON

func (*NullableGetUmConditionalOpenOrdersV1RespItem) Unset

type NullableGetUmConditionalOrderHistoryV1Resp

type NullableGetUmConditionalOrderHistoryV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetUmConditionalOrderHistoryV1Resp) Get

func (NullableGetUmConditionalOrderHistoryV1Resp) IsSet

func (NullableGetUmConditionalOrderHistoryV1Resp) MarshalJSON

func (*NullableGetUmConditionalOrderHistoryV1Resp) Set

func (*NullableGetUmConditionalOrderHistoryV1Resp) UnmarshalJSON

func (v *NullableGetUmConditionalOrderHistoryV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmConditionalOrderHistoryV1Resp) Unset

type NullableGetUmFeeBurnV1Resp

type NullableGetUmFeeBurnV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableGetUmFeeBurnV1Resp

func NewNullableGetUmFeeBurnV1Resp(val *GetUmFeeBurnV1Resp) *NullableGetUmFeeBurnV1Resp

func (NullableGetUmFeeBurnV1Resp) Get

func (NullableGetUmFeeBurnV1Resp) IsSet

func (v NullableGetUmFeeBurnV1Resp) IsSet() bool

func (NullableGetUmFeeBurnV1Resp) MarshalJSON

func (v NullableGetUmFeeBurnV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmFeeBurnV1Resp) Set

func (*NullableGetUmFeeBurnV1Resp) UnmarshalJSON

func (v *NullableGetUmFeeBurnV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmFeeBurnV1Resp) Unset

func (v *NullableGetUmFeeBurnV1Resp) Unset()

type NullableGetUmForceOrdersV1RespItem

type NullableGetUmForceOrdersV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetUmForceOrdersV1RespItem) Get

func (NullableGetUmForceOrdersV1RespItem) IsSet

func (NullableGetUmForceOrdersV1RespItem) MarshalJSON

func (v NullableGetUmForceOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetUmForceOrdersV1RespItem) Set

func (*NullableGetUmForceOrdersV1RespItem) UnmarshalJSON

func (v *NullableGetUmForceOrdersV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetUmForceOrdersV1RespItem) Unset

type NullableGetUmIncomeAsynIdV1Resp

type NullableGetUmIncomeAsynIdV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetUmIncomeAsynIdV1Resp) Get

func (NullableGetUmIncomeAsynIdV1Resp) IsSet

func (NullableGetUmIncomeAsynIdV1Resp) MarshalJSON

func (v NullableGetUmIncomeAsynIdV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmIncomeAsynIdV1Resp) Set

func (*NullableGetUmIncomeAsynIdV1Resp) UnmarshalJSON

func (v *NullableGetUmIncomeAsynIdV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmIncomeAsynIdV1Resp) Unset

type NullableGetUmIncomeAsynV1Resp

type NullableGetUmIncomeAsynV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetUmIncomeAsynV1Resp) Get

func (NullableGetUmIncomeAsynV1Resp) IsSet

func (NullableGetUmIncomeAsynV1Resp) MarshalJSON

func (v NullableGetUmIncomeAsynV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmIncomeAsynV1Resp) Set

func (*NullableGetUmIncomeAsynV1Resp) UnmarshalJSON

func (v *NullableGetUmIncomeAsynV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmIncomeAsynV1Resp) Unset

func (v *NullableGetUmIncomeAsynV1Resp) Unset()

type NullableGetUmIncomeV1RespItem

type NullableGetUmIncomeV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetUmIncomeV1RespItem) Get

func (NullableGetUmIncomeV1RespItem) IsSet

func (NullableGetUmIncomeV1RespItem) MarshalJSON

func (v NullableGetUmIncomeV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetUmIncomeV1RespItem) Set

func (*NullableGetUmIncomeV1RespItem) UnmarshalJSON

func (v *NullableGetUmIncomeV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetUmIncomeV1RespItem) Unset

func (v *NullableGetUmIncomeV1RespItem) Unset()

type NullableGetUmLeverageBracketV1RespItem

type NullableGetUmLeverageBracketV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetUmLeverageBracketV1RespItem) Get

func (NullableGetUmLeverageBracketV1RespItem) IsSet

func (NullableGetUmLeverageBracketV1RespItem) MarshalJSON

func (v NullableGetUmLeverageBracketV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetUmLeverageBracketV1RespItem) Set

func (*NullableGetUmLeverageBracketV1RespItem) UnmarshalJSON

func (v *NullableGetUmLeverageBracketV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetUmLeverageBracketV1RespItem) Unset

type NullableGetUmLeverageBracketV1RespItemBracketsInner

type NullableGetUmLeverageBracketV1RespItemBracketsInner struct {
	// contains filtered or unexported fields
}

func (NullableGetUmLeverageBracketV1RespItemBracketsInner) Get

func (NullableGetUmLeverageBracketV1RespItemBracketsInner) IsSet

func (NullableGetUmLeverageBracketV1RespItemBracketsInner) MarshalJSON

func (*NullableGetUmLeverageBracketV1RespItemBracketsInner) Set

func (*NullableGetUmLeverageBracketV1RespItemBracketsInner) UnmarshalJSON

func (*NullableGetUmLeverageBracketV1RespItemBracketsInner) Unset

type NullableGetUmOpenOrderV1Resp

type NullableGetUmOpenOrderV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableGetUmOpenOrderV1Resp

func NewNullableGetUmOpenOrderV1Resp(val *GetUmOpenOrderV1Resp) *NullableGetUmOpenOrderV1Resp

func (NullableGetUmOpenOrderV1Resp) Get

func (NullableGetUmOpenOrderV1Resp) IsSet

func (NullableGetUmOpenOrderV1Resp) MarshalJSON

func (v NullableGetUmOpenOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmOpenOrderV1Resp) Set

func (*NullableGetUmOpenOrderV1Resp) UnmarshalJSON

func (v *NullableGetUmOpenOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmOpenOrderV1Resp) Unset

func (v *NullableGetUmOpenOrderV1Resp) Unset()

type NullableGetUmOpenOrdersV1RespItem

type NullableGetUmOpenOrdersV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetUmOpenOrdersV1RespItem) Get

func (NullableGetUmOpenOrdersV1RespItem) IsSet

func (NullableGetUmOpenOrdersV1RespItem) MarshalJSON

func (v NullableGetUmOpenOrdersV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetUmOpenOrdersV1RespItem) Set

func (*NullableGetUmOpenOrdersV1RespItem) UnmarshalJSON

func (v *NullableGetUmOpenOrdersV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetUmOpenOrdersV1RespItem) Unset

type NullableGetUmOrderAmendmentV1RespItem

type NullableGetUmOrderAmendmentV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetUmOrderAmendmentV1RespItem) Get

func (NullableGetUmOrderAmendmentV1RespItem) IsSet

func (NullableGetUmOrderAmendmentV1RespItem) MarshalJSON

func (v NullableGetUmOrderAmendmentV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetUmOrderAmendmentV1RespItem) Set

func (*NullableGetUmOrderAmendmentV1RespItem) UnmarshalJSON

func (v *NullableGetUmOrderAmendmentV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetUmOrderAmendmentV1RespItem) Unset

type NullableGetUmOrderAsynIdV1Resp

type NullableGetUmOrderAsynIdV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetUmOrderAsynIdV1Resp) Get

func (NullableGetUmOrderAsynIdV1Resp) IsSet

func (NullableGetUmOrderAsynIdV1Resp) MarshalJSON

func (v NullableGetUmOrderAsynIdV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmOrderAsynIdV1Resp) Set

func (*NullableGetUmOrderAsynIdV1Resp) UnmarshalJSON

func (v *NullableGetUmOrderAsynIdV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmOrderAsynIdV1Resp) Unset

func (v *NullableGetUmOrderAsynIdV1Resp) Unset()

type NullableGetUmOrderAsynV1Resp

type NullableGetUmOrderAsynV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableGetUmOrderAsynV1Resp

func NewNullableGetUmOrderAsynV1Resp(val *GetUmOrderAsynV1Resp) *NullableGetUmOrderAsynV1Resp

func (NullableGetUmOrderAsynV1Resp) Get

func (NullableGetUmOrderAsynV1Resp) IsSet

func (NullableGetUmOrderAsynV1Resp) MarshalJSON

func (v NullableGetUmOrderAsynV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmOrderAsynV1Resp) Set

func (*NullableGetUmOrderAsynV1Resp) UnmarshalJSON

func (v *NullableGetUmOrderAsynV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmOrderAsynV1Resp) Unset

func (v *NullableGetUmOrderAsynV1Resp) Unset()

type NullableGetUmOrderV1Resp

type NullableGetUmOrderV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableGetUmOrderV1Resp

func NewNullableGetUmOrderV1Resp(val *GetUmOrderV1Resp) *NullableGetUmOrderV1Resp

func (NullableGetUmOrderV1Resp) Get

func (NullableGetUmOrderV1Resp) IsSet

func (v NullableGetUmOrderV1Resp) IsSet() bool

func (NullableGetUmOrderV1Resp) MarshalJSON

func (v NullableGetUmOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmOrderV1Resp) Set

func (*NullableGetUmOrderV1Resp) UnmarshalJSON

func (v *NullableGetUmOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmOrderV1Resp) Unset

func (v *NullableGetUmOrderV1Resp) Unset()

type NullableGetUmPositionRiskV1RespItem

type NullableGetUmPositionRiskV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetUmPositionRiskV1RespItem) Get

func (NullableGetUmPositionRiskV1RespItem) IsSet

func (NullableGetUmPositionRiskV1RespItem) MarshalJSON

func (v NullableGetUmPositionRiskV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetUmPositionRiskV1RespItem) Set

func (*NullableGetUmPositionRiskV1RespItem) UnmarshalJSON

func (v *NullableGetUmPositionRiskV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetUmPositionRiskV1RespItem) Unset

type NullableGetUmPositionSideDualV1Resp

type NullableGetUmPositionSideDualV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetUmPositionSideDualV1Resp) Get

func (NullableGetUmPositionSideDualV1Resp) IsSet

func (NullableGetUmPositionSideDualV1Resp) MarshalJSON

func (v NullableGetUmPositionSideDualV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmPositionSideDualV1Resp) Set

func (*NullableGetUmPositionSideDualV1Resp) UnmarshalJSON

func (v *NullableGetUmPositionSideDualV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmPositionSideDualV1Resp) Unset

type NullableGetUmSymbolConfigV1RespItem

type NullableGetUmSymbolConfigV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetUmSymbolConfigV1RespItem) Get

func (NullableGetUmSymbolConfigV1RespItem) IsSet

func (NullableGetUmSymbolConfigV1RespItem) MarshalJSON

func (v NullableGetUmSymbolConfigV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetUmSymbolConfigV1RespItem) Set

func (*NullableGetUmSymbolConfigV1RespItem) UnmarshalJSON

func (v *NullableGetUmSymbolConfigV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetUmSymbolConfigV1RespItem) Unset

type NullableGetUmTradeAsynIdV1Resp

type NullableGetUmTradeAsynIdV1Resp struct {
	// contains filtered or unexported fields
}

func (NullableGetUmTradeAsynIdV1Resp) Get

func (NullableGetUmTradeAsynIdV1Resp) IsSet

func (NullableGetUmTradeAsynIdV1Resp) MarshalJSON

func (v NullableGetUmTradeAsynIdV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmTradeAsynIdV1Resp) Set

func (*NullableGetUmTradeAsynIdV1Resp) UnmarshalJSON

func (v *NullableGetUmTradeAsynIdV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmTradeAsynIdV1Resp) Unset

func (v *NullableGetUmTradeAsynIdV1Resp) Unset()

type NullableGetUmTradeAsynV1Resp

type NullableGetUmTradeAsynV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableGetUmTradeAsynV1Resp

func NewNullableGetUmTradeAsynV1Resp(val *GetUmTradeAsynV1Resp) *NullableGetUmTradeAsynV1Resp

func (NullableGetUmTradeAsynV1Resp) Get

func (NullableGetUmTradeAsynV1Resp) IsSet

func (NullableGetUmTradeAsynV1Resp) MarshalJSON

func (v NullableGetUmTradeAsynV1Resp) MarshalJSON() ([]byte, error)

func (*NullableGetUmTradeAsynV1Resp) Set

func (*NullableGetUmTradeAsynV1Resp) UnmarshalJSON

func (v *NullableGetUmTradeAsynV1Resp) UnmarshalJSON(src []byte) error

func (*NullableGetUmTradeAsynV1Resp) Unset

func (v *NullableGetUmTradeAsynV1Resp) Unset()

type NullableGetUmUserTradesV1RespItem

type NullableGetUmUserTradesV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullableGetUmUserTradesV1RespItem) Get

func (NullableGetUmUserTradesV1RespItem) IsSet

func (NullableGetUmUserTradesV1RespItem) MarshalJSON

func (v NullableGetUmUserTradesV1RespItem) MarshalJSON() ([]byte, error)

func (*NullableGetUmUserTradesV1RespItem) Set

func (*NullableGetUmUserTradesV1RespItem) UnmarshalJSON

func (v *NullableGetUmUserTradesV1RespItem) UnmarshalJSON(src []byte) error

func (*NullableGetUmUserTradesV1RespItem) 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 NullablePmarginDeleteMarginAllOpenOrdersV1RespInner

type NullablePmarginDeleteMarginAllOpenOrdersV1RespInner struct {
	// contains filtered or unexported fields
}

func (NullablePmarginDeleteMarginAllOpenOrdersV1RespInner) Get

func (NullablePmarginDeleteMarginAllOpenOrdersV1RespInner) IsSet

func (NullablePmarginDeleteMarginAllOpenOrdersV1RespInner) MarshalJSON

func (*NullablePmarginDeleteMarginAllOpenOrdersV1RespInner) Set

func (*NullablePmarginDeleteMarginAllOpenOrdersV1RespInner) UnmarshalJSON

func (*NullablePmarginDeleteMarginAllOpenOrdersV1RespInner) Unset

type NullablePmarginDeleteMarginAllOpenOrdersV1RespOrder

type NullablePmarginDeleteMarginAllOpenOrdersV1RespOrder struct {
	// contains filtered or unexported fields
}

func (NullablePmarginDeleteMarginAllOpenOrdersV1RespOrder) Get

func (NullablePmarginDeleteMarginAllOpenOrdersV1RespOrder) IsSet

func (NullablePmarginDeleteMarginAllOpenOrdersV1RespOrder) MarshalJSON

func (*NullablePmarginDeleteMarginAllOpenOrdersV1RespOrder) Set

func (*NullablePmarginDeleteMarginAllOpenOrdersV1RespOrder) UnmarshalJSON

func (*NullablePmarginDeleteMarginAllOpenOrdersV1RespOrder) Unset

type NullablePmarginDeleteMarginAllOpenOrdersV1RespOrderList

type NullablePmarginDeleteMarginAllOpenOrdersV1RespOrderList struct {
	// contains filtered or unexported fields
}

func (NullablePmarginDeleteMarginAllOpenOrdersV1RespOrderList) Get

func (NullablePmarginDeleteMarginAllOpenOrdersV1RespOrderList) IsSet

func (NullablePmarginDeleteMarginAllOpenOrdersV1RespOrderList) MarshalJSON

func (*NullablePmarginDeleteMarginAllOpenOrdersV1RespOrderList) Set

func (*NullablePmarginDeleteMarginAllOpenOrdersV1RespOrderList) UnmarshalJSON

func (*NullablePmarginDeleteMarginAllOpenOrdersV1RespOrderList) Unset

type NullablePmarginGetBalanceV1Resp

type NullablePmarginGetBalanceV1Resp struct {
	// contains filtered or unexported fields
}

func (NullablePmarginGetBalanceV1Resp) Get

func (NullablePmarginGetBalanceV1Resp) IsSet

func (NullablePmarginGetBalanceV1Resp) MarshalJSON

func (v NullablePmarginGetBalanceV1Resp) MarshalJSON() ([]byte, error)

func (*NullablePmarginGetBalanceV1Resp) Set

func (*NullablePmarginGetBalanceV1Resp) UnmarshalJSON

func (v *NullablePmarginGetBalanceV1Resp) UnmarshalJSON(src []byte) error

func (*NullablePmarginGetBalanceV1Resp) Unset

type NullablePmarginGetBalanceV1RespItem

type NullablePmarginGetBalanceV1RespItem struct {
	// contains filtered or unexported fields
}

func (NullablePmarginGetBalanceV1RespItem) Get

func (NullablePmarginGetBalanceV1RespItem) IsSet

func (NullablePmarginGetBalanceV1RespItem) MarshalJSON

func (v NullablePmarginGetBalanceV1RespItem) MarshalJSON() ([]byte, error)

func (*NullablePmarginGetBalanceV1RespItem) Set

func (*NullablePmarginGetBalanceV1RespItem) UnmarshalJSON

func (v *NullablePmarginGetBalanceV1RespItem) UnmarshalJSON(src []byte) error

func (*NullablePmarginGetBalanceV1RespItem) 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 NullableUpdateCmOrderV1Resp

type NullableUpdateCmOrderV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateCmOrderV1Resp

func NewNullableUpdateCmOrderV1Resp(val *UpdateCmOrderV1Resp) *NullableUpdateCmOrderV1Resp

func (NullableUpdateCmOrderV1Resp) Get

func (NullableUpdateCmOrderV1Resp) IsSet

func (NullableUpdateCmOrderV1Resp) MarshalJSON

func (v NullableUpdateCmOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableUpdateCmOrderV1Resp) Set

func (*NullableUpdateCmOrderV1Resp) UnmarshalJSON

func (v *NullableUpdateCmOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableUpdateCmOrderV1Resp) Unset

func (v *NullableUpdateCmOrderV1Resp) Unset()

type NullableUpdateUmOrderV1Resp

type NullableUpdateUmOrderV1Resp struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateUmOrderV1Resp

func NewNullableUpdateUmOrderV1Resp(val *UpdateUmOrderV1Resp) *NullableUpdateUmOrderV1Resp

func (NullableUpdateUmOrderV1Resp) Get

func (NullableUpdateUmOrderV1Resp) IsSet

func (NullableUpdateUmOrderV1Resp) MarshalJSON

func (v NullableUpdateUmOrderV1Resp) MarshalJSON() ([]byte, error)

func (*NullableUpdateUmOrderV1Resp) Set

func (*NullableUpdateUmOrderV1Resp) UnmarshalJSON

func (v *NullableUpdateUmOrderV1Resp) UnmarshalJSON(src []byte) error

func (*NullableUpdateUmOrderV1Resp) Unset

func (v *NullableUpdateUmOrderV1Resp) Unset()

type PmarginDeleteMarginAllOpenOrdersV1RespInner

type PmarginDeleteMarginAllOpenOrdersV1RespInner struct {
	PmarginDeleteMarginAllOpenOrdersV1RespOrder     *PmarginDeleteMarginAllOpenOrdersV1RespOrder
	PmarginDeleteMarginAllOpenOrdersV1RespOrderList *PmarginDeleteMarginAllOpenOrdersV1RespOrderList
}

PmarginDeleteMarginAllOpenOrdersV1RespInner - struct for PmarginDeleteMarginAllOpenOrdersV1RespInner

func PmarginDeleteMarginAllOpenOrdersV1RespOrderAsPmarginDeleteMarginAllOpenOrdersV1RespInner

func PmarginDeleteMarginAllOpenOrdersV1RespOrderAsPmarginDeleteMarginAllOpenOrdersV1RespInner(v *PmarginDeleteMarginAllOpenOrdersV1RespOrder) PmarginDeleteMarginAllOpenOrdersV1RespInner

PmarginDeleteMarginAllOpenOrdersV1RespOrderAsPmarginDeleteMarginAllOpenOrdersV1RespInner is a convenience function that returns PmarginDeleteMarginAllOpenOrdersV1RespOrder wrapped in PmarginDeleteMarginAllOpenOrdersV1RespInner

func PmarginDeleteMarginAllOpenOrdersV1RespOrderListAsPmarginDeleteMarginAllOpenOrdersV1RespInner

func PmarginDeleteMarginAllOpenOrdersV1RespOrderListAsPmarginDeleteMarginAllOpenOrdersV1RespInner(v *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) PmarginDeleteMarginAllOpenOrdersV1RespInner

PmarginDeleteMarginAllOpenOrdersV1RespOrderListAsPmarginDeleteMarginAllOpenOrdersV1RespInner is a convenience function that returns PmarginDeleteMarginAllOpenOrdersV1RespOrderList wrapped in PmarginDeleteMarginAllOpenOrdersV1RespInner

func (*PmarginDeleteMarginAllOpenOrdersV1RespInner) GetActualInstance

func (obj *PmarginDeleteMarginAllOpenOrdersV1RespInner) GetActualInstance() interface{}

Get the actual instance

func (PmarginDeleteMarginAllOpenOrdersV1RespInner) GetActualInstanceValue

func (obj PmarginDeleteMarginAllOpenOrdersV1RespInner) GetActualInstanceValue() interface{}

Get the actual instance value

func (PmarginDeleteMarginAllOpenOrdersV1RespInner) MarshalJSON

Marshal data from the first non-nil pointers in the struct to JSON

func (*PmarginDeleteMarginAllOpenOrdersV1RespInner) UnmarshalJSON

func (dst *PmarginDeleteMarginAllOpenOrdersV1RespInner) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PmarginDeleteMarginAllOpenOrdersV1RespOrder

type PmarginDeleteMarginAllOpenOrdersV1RespOrder struct {
	ClientOrderId       *string `json:"clientOrderId,omitempty"`
	CummulativeQuoteQty *string `json:"cummulativeQuoteQty,omitempty"`
	ExecutedQty         *string `json:"executedQty,omitempty"`
	IcebergQty          *string `json:"icebergQty,omitempty"`
	OrderId             *int64  `json:"orderId,omitempty"`
	OrderListId         *int64  `json:"orderListId,omitempty"`
	OrigClientOrderId   *string `json:"origClientOrderId,omitempty"`
	OrigQty             *string `json:"origQty,omitempty"`
	Price               *string `json:"price,omitempty"`
	Side                *string `json:"side,omitempty"`
	Status              *string `json:"status,omitempty"`
	StopPrice           *string `json:"stopPrice,omitempty"`
	Symbol              *string `json:"symbol,omitempty"`
	TimeInForce         *string `json:"timeInForce,omitempty"`
	Type                *string `json:"type,omitempty"`
}

PmarginDeleteMarginAllOpenOrdersV1RespOrder struct for PmarginDeleteMarginAllOpenOrdersV1RespOrder

func NewPmarginDeleteMarginAllOpenOrdersV1RespOrder

func NewPmarginDeleteMarginAllOpenOrdersV1RespOrder() *PmarginDeleteMarginAllOpenOrdersV1RespOrder

NewPmarginDeleteMarginAllOpenOrdersV1RespOrder instantiates a new PmarginDeleteMarginAllOpenOrdersV1RespOrder 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 NewPmarginDeleteMarginAllOpenOrdersV1RespOrderWithDefaults

func NewPmarginDeleteMarginAllOpenOrdersV1RespOrderWithDefaults() *PmarginDeleteMarginAllOpenOrdersV1RespOrder

NewPmarginDeleteMarginAllOpenOrdersV1RespOrderWithDefaults instantiates a new PmarginDeleteMarginAllOpenOrdersV1RespOrder 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 (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetClientOrderId

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetClientOrderIdOk

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetClientOrderIdOk() (*string, bool)

GetClientOrderIdOk returns a tuple with the ClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetCummulativeQuoteQty

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetCummulativeQuoteQty() string

GetCummulativeQuoteQty returns the CummulativeQuoteQty field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetCummulativeQuoteQtyOk

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetCummulativeQuoteQtyOk() (*string, bool)

GetCummulativeQuoteQtyOk returns a tuple with the CummulativeQuoteQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetExecutedQty

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetExecutedQtyOk

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetExecutedQtyOk() (*string, bool)

GetExecutedQtyOk returns a tuple with the ExecutedQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetIcebergQty

GetIcebergQty returns the IcebergQty field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetIcebergQtyOk

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetIcebergQtyOk() (*string, bool)

GetIcebergQtyOk returns a tuple with the IcebergQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetOrderId

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetOrderIdOk

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetOrderListId

GetOrderListId returns the OrderListId field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetOrderListIdOk

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetOrderListIdOk() (*int64, bool)

GetOrderListIdOk returns a tuple with the OrderListId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetOrigClientOrderId

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetOrigClientOrderId() string

GetOrigClientOrderId returns the OrigClientOrderId field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetOrigClientOrderIdOk

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetOrigClientOrderIdOk() (*string, bool)

GetOrigClientOrderIdOk returns a tuple with the OrigClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetOrigQty

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetOrigQtyOk

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetPriceOk

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetSide

GetSide returns the Side field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetSideOk

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetStatusOk

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 (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetStopPrice

GetStopPrice returns the StopPrice field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetStopPriceOk

GetStopPriceOk returns a tuple with the StopPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetSymbol

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetSymbolOk

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 (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetTimeInForce

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetTimeInForceOk

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) GetTypeOk

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 (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasClientOrderId

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasCummulativeQuoteQty

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasCummulativeQuoteQty() bool

HasCummulativeQuoteQty returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasExecutedQty

HasExecutedQty returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasIcebergQty

HasIcebergQty returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasOrderId

HasOrderId returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasOrderListId

HasOrderListId returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasOrigClientOrderId

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasOrigClientOrderId() bool

HasOrigClientOrderId returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasOrigQty

HasOrigQty returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasPrice

HasPrice returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasSide

HasSide returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasStatus

HasStatus returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasStopPrice

HasStopPrice returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasTimeInForce

HasTimeInForce returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) HasType

HasType returns a boolean if a field has been set.

func (PmarginDeleteMarginAllOpenOrdersV1RespOrder) MarshalJSON

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetClientOrderId

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetCummulativeQuoteQty

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetCummulativeQuoteQty(v string)

SetCummulativeQuoteQty gets a reference to the given string and assigns it to the CummulativeQuoteQty field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetExecutedQty

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetIcebergQty

SetIcebergQty gets a reference to the given string and assigns it to the IcebergQty field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetOrderId

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetOrderListId

SetOrderListId gets a reference to the given int64 and assigns it to the OrderListId field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetOrigClientOrderId

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetOrigClientOrderId(v string)

SetOrigClientOrderId gets a reference to the given string and assigns it to the OrigClientOrderId field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetOrigQty

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetPrice

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetSide

SetSide gets a reference to the given string and assigns it to the Side field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetStatus

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetStopPrice

SetStopPrice gets a reference to the given string and assigns it to the StopPrice field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetSymbol

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetTimeInForce

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrder) SetType

SetType gets a reference to the given string and assigns it to the Type field.

func (PmarginDeleteMarginAllOpenOrdersV1RespOrder) ToMap

func (o PmarginDeleteMarginAllOpenOrdersV1RespOrder) ToMap() (map[string]interface{}, error)

type PmarginDeleteMarginAllOpenOrdersV1RespOrderList

type PmarginDeleteMarginAllOpenOrdersV1RespOrderList struct {
	ContingencyType   *string                                       `json:"contingencyType,omitempty"`
	ListClientOrderId *string                                       `json:"listClientOrderId,omitempty"`
	ListOrderStatus   *string                                       `json:"listOrderStatus,omitempty"`
	ListStatusType    *string                                       `json:"listStatusType,omitempty"`
	OrderListId       *int64                                        `json:"orderListId,omitempty"`
	OrderReports      []PmarginDeleteMarginAllOpenOrdersV1RespOrder `json:"orderReports,omitempty"`
	Orders            []CreateMarginOrderOcoV1RespOrdersInner       `json:"orders,omitempty"`
	Symbol            *string                                       `json:"symbol,omitempty"`
	TransactionTime   *int64                                        `json:"transactionTime,omitempty"`
}

PmarginDeleteMarginAllOpenOrdersV1RespOrderList struct for PmarginDeleteMarginAllOpenOrdersV1RespOrderList

func NewPmarginDeleteMarginAllOpenOrdersV1RespOrderList

func NewPmarginDeleteMarginAllOpenOrdersV1RespOrderList() *PmarginDeleteMarginAllOpenOrdersV1RespOrderList

NewPmarginDeleteMarginAllOpenOrdersV1RespOrderList instantiates a new PmarginDeleteMarginAllOpenOrdersV1RespOrderList 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 NewPmarginDeleteMarginAllOpenOrdersV1RespOrderListWithDefaults

func NewPmarginDeleteMarginAllOpenOrdersV1RespOrderListWithDefaults() *PmarginDeleteMarginAllOpenOrdersV1RespOrderList

NewPmarginDeleteMarginAllOpenOrdersV1RespOrderListWithDefaults instantiates a new PmarginDeleteMarginAllOpenOrdersV1RespOrderList 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 (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetContingencyType

GetContingencyType returns the ContingencyType field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetContingencyTypeOk

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetContingencyTypeOk() (*string, bool)

GetContingencyTypeOk returns a tuple with the ContingencyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetListClientOrderId

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetListClientOrderId() string

GetListClientOrderId returns the ListClientOrderId field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetListClientOrderIdOk

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetListClientOrderIdOk() (*string, bool)

GetListClientOrderIdOk returns a tuple with the ListClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetListOrderStatus

GetListOrderStatus returns the ListOrderStatus field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetListOrderStatusOk

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetListOrderStatusOk() (*string, bool)

GetListOrderStatusOk returns a tuple with the ListOrderStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetListStatusType

GetListStatusType returns the ListStatusType field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetListStatusTypeOk

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetListStatusTypeOk() (*string, bool)

GetListStatusTypeOk returns a tuple with the ListStatusType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetOrderListId

GetOrderListId returns the OrderListId field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetOrderListIdOk

GetOrderListIdOk returns a tuple with the OrderListId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetOrderReports

GetOrderReports returns the OrderReports field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetOrderReportsOk

GetOrderReportsOk returns a tuple with the OrderReports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetOrders

GetOrders returns the Orders field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetOrdersOk

GetOrdersOk returns a tuple with the Orders field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetSymbol

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetSymbolOk

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 (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetTransactionTime

GetTransactionTime returns the TransactionTime field value if set, zero value otherwise.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetTransactionTimeOk

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) GetTransactionTimeOk() (*int64, bool)

GetTransactionTimeOk returns a tuple with the TransactionTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasContingencyType

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasContingencyType() bool

HasContingencyType returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasListClientOrderId

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasListClientOrderId() bool

HasListClientOrderId returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasListOrderStatus

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasListOrderStatus() bool

HasListOrderStatus returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasListStatusType

HasListStatusType returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasOrderListId

HasOrderListId returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasOrderReports

HasOrderReports returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasOrders

HasOrders returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasSymbol

HasSymbol returns a boolean if a field has been set.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasTransactionTime

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) HasTransactionTime() bool

HasTransactionTime returns a boolean if a field has been set.

func (PmarginDeleteMarginAllOpenOrdersV1RespOrderList) MarshalJSON

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) SetContingencyType

SetContingencyType gets a reference to the given string and assigns it to the ContingencyType field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) SetListClientOrderId

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) SetListClientOrderId(v string)

SetListClientOrderId gets a reference to the given string and assigns it to the ListClientOrderId field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) SetListOrderStatus

SetListOrderStatus gets a reference to the given string and assigns it to the ListOrderStatus field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) SetListStatusType

SetListStatusType gets a reference to the given string and assigns it to the ListStatusType field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) SetOrderListId

SetOrderListId gets a reference to the given int64 and assigns it to the OrderListId field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) SetOrderReports

SetOrderReports gets a reference to the given []PmarginDeleteMarginAllOpenOrdersV1RespOrder and assigns it to the OrderReports field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) SetOrders

SetOrders gets a reference to the given []CreateMarginOrderOcoV1RespOrdersInner and assigns it to the Orders field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) SetSymbol

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*PmarginDeleteMarginAllOpenOrdersV1RespOrderList) SetTransactionTime

func (o *PmarginDeleteMarginAllOpenOrdersV1RespOrderList) SetTransactionTime(v int64)

SetTransactionTime gets a reference to the given int64 and assigns it to the TransactionTime field.

func (PmarginDeleteMarginAllOpenOrdersV1RespOrderList) ToMap

func (o PmarginDeleteMarginAllOpenOrdersV1RespOrderList) ToMap() (map[string]interface{}, error)

type PmarginGetBalanceV1Resp

type PmarginGetBalanceV1Resp struct {
	PmarginGetBalanceV1RespItem        *PmarginGetBalanceV1RespItem
	ArrayOfPmarginGetBalanceV1RespItem *[]PmarginGetBalanceV1RespItem
}

PmarginGetBalanceV1Resp - struct for PmarginGetBalanceV1Resp

func ArrayOfPmarginGetBalanceV1RespItemAsPmarginGetBalanceV1Resp

func ArrayOfPmarginGetBalanceV1RespItemAsPmarginGetBalanceV1Resp(v *[]PmarginGetBalanceV1RespItem) PmarginGetBalanceV1Resp

[]PmarginGetBalanceV1RespItemAsPmarginGetBalanceV1Resp is a convenience function that returns []PmarginGetBalanceV1RespItem wrapped in PmarginGetBalanceV1Resp

func PmarginGetBalanceV1RespItemAsPmarginGetBalanceV1Resp

func PmarginGetBalanceV1RespItemAsPmarginGetBalanceV1Resp(v *PmarginGetBalanceV1RespItem) PmarginGetBalanceV1Resp

PmarginGetBalanceV1RespItemAsPmarginGetBalanceV1Resp is a convenience function that returns PmarginGetBalanceV1RespItem wrapped in PmarginGetBalanceV1Resp

func (*PmarginGetBalanceV1Resp) GetActualInstance

func (obj *PmarginGetBalanceV1Resp) GetActualInstance() interface{}

Get the actual instance

func (PmarginGetBalanceV1Resp) GetActualInstanceValue

func (obj PmarginGetBalanceV1Resp) GetActualInstanceValue() interface{}

Get the actual instance value

func (PmarginGetBalanceV1Resp) MarshalJSON

func (src PmarginGetBalanceV1Resp) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*PmarginGetBalanceV1Resp) UnmarshalJSON

func (dst *PmarginGetBalanceV1Resp) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PmarginGetBalanceV1RespItem

type PmarginGetBalanceV1RespItem struct {
	Asset               *string `json:"asset,omitempty"`
	CmUnrealizedPNL     *string `json:"cmUnrealizedPNL,omitempty"`
	CmWalletBalance     *string `json:"cmWalletBalance,omitempty"`
	CrossMarginAsset    *string `json:"crossMarginAsset,omitempty"`
	CrossMarginBorrowed *string `json:"crossMarginBorrowed,omitempty"`
	CrossMarginFree     *string `json:"crossMarginFree,omitempty"`
	CrossMarginInterest *string `json:"crossMarginInterest,omitempty"`
	CrossMarginLocked   *string `json:"crossMarginLocked,omitempty"`
	NegativeBalance     *string `json:"negativeBalance,omitempty"`
	TotalWalletBalance  *string `json:"totalWalletBalance,omitempty"`
	UmUnrealizedPNL     *string `json:"umUnrealizedPNL,omitempty"`
	UmWalletBalance     *string `json:"umWalletBalance,omitempty"`
	UpdateTime          *int64  `json:"updateTime,omitempty"`
}

PmarginGetBalanceV1RespItem struct for PmarginGetBalanceV1RespItem

func NewPmarginGetBalanceV1RespItem

func NewPmarginGetBalanceV1RespItem() *PmarginGetBalanceV1RespItem

NewPmarginGetBalanceV1RespItem instantiates a new PmarginGetBalanceV1RespItem 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 NewPmarginGetBalanceV1RespItemWithDefaults

func NewPmarginGetBalanceV1RespItemWithDefaults() *PmarginGetBalanceV1RespItem

NewPmarginGetBalanceV1RespItemWithDefaults instantiates a new PmarginGetBalanceV1RespItem 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 (*PmarginGetBalanceV1RespItem) GetAsset

func (o *PmarginGetBalanceV1RespItem) GetAsset() string

GetAsset returns the Asset field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetAssetOk

func (o *PmarginGetBalanceV1RespItem) GetAssetOk() (*string, bool)

GetAssetOk returns a tuple with the Asset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) GetCmUnrealizedPNL

func (o *PmarginGetBalanceV1RespItem) GetCmUnrealizedPNL() string

GetCmUnrealizedPNL returns the CmUnrealizedPNL field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetCmUnrealizedPNLOk

func (o *PmarginGetBalanceV1RespItem) GetCmUnrealizedPNLOk() (*string, bool)

GetCmUnrealizedPNLOk returns a tuple with the CmUnrealizedPNL field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) GetCmWalletBalance

func (o *PmarginGetBalanceV1RespItem) GetCmWalletBalance() string

GetCmWalletBalance returns the CmWalletBalance field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetCmWalletBalanceOk

func (o *PmarginGetBalanceV1RespItem) GetCmWalletBalanceOk() (*string, bool)

GetCmWalletBalanceOk returns a tuple with the CmWalletBalance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) GetCrossMarginAsset

func (o *PmarginGetBalanceV1RespItem) GetCrossMarginAsset() string

GetCrossMarginAsset returns the CrossMarginAsset field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetCrossMarginAssetOk

func (o *PmarginGetBalanceV1RespItem) GetCrossMarginAssetOk() (*string, bool)

GetCrossMarginAssetOk returns a tuple with the CrossMarginAsset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) GetCrossMarginBorrowed

func (o *PmarginGetBalanceV1RespItem) GetCrossMarginBorrowed() string

GetCrossMarginBorrowed returns the CrossMarginBorrowed field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetCrossMarginBorrowedOk

func (o *PmarginGetBalanceV1RespItem) GetCrossMarginBorrowedOk() (*string, bool)

GetCrossMarginBorrowedOk returns a tuple with the CrossMarginBorrowed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) GetCrossMarginFree

func (o *PmarginGetBalanceV1RespItem) GetCrossMarginFree() string

GetCrossMarginFree returns the CrossMarginFree field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetCrossMarginFreeOk

func (o *PmarginGetBalanceV1RespItem) GetCrossMarginFreeOk() (*string, bool)

GetCrossMarginFreeOk returns a tuple with the CrossMarginFree field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) GetCrossMarginInterest

func (o *PmarginGetBalanceV1RespItem) GetCrossMarginInterest() string

GetCrossMarginInterest returns the CrossMarginInterest field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetCrossMarginInterestOk

func (o *PmarginGetBalanceV1RespItem) GetCrossMarginInterestOk() (*string, bool)

GetCrossMarginInterestOk returns a tuple with the CrossMarginInterest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) GetCrossMarginLocked

func (o *PmarginGetBalanceV1RespItem) GetCrossMarginLocked() string

GetCrossMarginLocked returns the CrossMarginLocked field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetCrossMarginLockedOk

func (o *PmarginGetBalanceV1RespItem) GetCrossMarginLockedOk() (*string, bool)

GetCrossMarginLockedOk returns a tuple with the CrossMarginLocked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) GetNegativeBalance

func (o *PmarginGetBalanceV1RespItem) GetNegativeBalance() string

GetNegativeBalance returns the NegativeBalance field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetNegativeBalanceOk

func (o *PmarginGetBalanceV1RespItem) GetNegativeBalanceOk() (*string, bool)

GetNegativeBalanceOk returns a tuple with the NegativeBalance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) GetTotalWalletBalance

func (o *PmarginGetBalanceV1RespItem) GetTotalWalletBalance() string

GetTotalWalletBalance returns the TotalWalletBalance field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetTotalWalletBalanceOk

func (o *PmarginGetBalanceV1RespItem) GetTotalWalletBalanceOk() (*string, bool)

GetTotalWalletBalanceOk returns a tuple with the TotalWalletBalance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) GetUmUnrealizedPNL

func (o *PmarginGetBalanceV1RespItem) GetUmUnrealizedPNL() string

GetUmUnrealizedPNL returns the UmUnrealizedPNL field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetUmUnrealizedPNLOk

func (o *PmarginGetBalanceV1RespItem) GetUmUnrealizedPNLOk() (*string, bool)

GetUmUnrealizedPNLOk returns a tuple with the UmUnrealizedPNL field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) GetUmWalletBalance

func (o *PmarginGetBalanceV1RespItem) GetUmWalletBalance() string

GetUmWalletBalance returns the UmWalletBalance field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetUmWalletBalanceOk

func (o *PmarginGetBalanceV1RespItem) GetUmWalletBalanceOk() (*string, bool)

GetUmWalletBalanceOk returns a tuple with the UmWalletBalance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) GetUpdateTime

func (o *PmarginGetBalanceV1RespItem) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*PmarginGetBalanceV1RespItem) GetUpdateTimeOk

func (o *PmarginGetBalanceV1RespItem) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PmarginGetBalanceV1RespItem) HasAsset

func (o *PmarginGetBalanceV1RespItem) HasAsset() bool

HasAsset returns a boolean if a field has been set.

func (*PmarginGetBalanceV1RespItem) HasCmUnrealizedPNL

func (o *PmarginGetBalanceV1RespItem) HasCmUnrealizedPNL() bool

HasCmUnrealizedPNL returns a boolean if a field has been set.

func (*PmarginGetBalanceV1RespItem) HasCmWalletBalance

func (o *PmarginGetBalanceV1RespItem) HasCmWalletBalance() bool

HasCmWalletBalance returns a boolean if a field has been set.

func (*PmarginGetBalanceV1RespItem) HasCrossMarginAsset

func (o *PmarginGetBalanceV1RespItem) HasCrossMarginAsset() bool

HasCrossMarginAsset returns a boolean if a field has been set.

func (*PmarginGetBalanceV1RespItem) HasCrossMarginBorrowed

func (o *PmarginGetBalanceV1RespItem) HasCrossMarginBorrowed() bool

HasCrossMarginBorrowed returns a boolean if a field has been set.

func (*PmarginGetBalanceV1RespItem) HasCrossMarginFree

func (o *PmarginGetBalanceV1RespItem) HasCrossMarginFree() bool

HasCrossMarginFree returns a boolean if a field has been set.

func (*PmarginGetBalanceV1RespItem) HasCrossMarginInterest

func (o *PmarginGetBalanceV1RespItem) HasCrossMarginInterest() bool

HasCrossMarginInterest returns a boolean if a field has been set.

func (*PmarginGetBalanceV1RespItem) HasCrossMarginLocked

func (o *PmarginGetBalanceV1RespItem) HasCrossMarginLocked() bool

HasCrossMarginLocked returns a boolean if a field has been set.

func (*PmarginGetBalanceV1RespItem) HasNegativeBalance

func (o *PmarginGetBalanceV1RespItem) HasNegativeBalance() bool

HasNegativeBalance returns a boolean if a field has been set.

func (*PmarginGetBalanceV1RespItem) HasTotalWalletBalance

func (o *PmarginGetBalanceV1RespItem) HasTotalWalletBalance() bool

HasTotalWalletBalance returns a boolean if a field has been set.

func (*PmarginGetBalanceV1RespItem) HasUmUnrealizedPNL

func (o *PmarginGetBalanceV1RespItem) HasUmUnrealizedPNL() bool

HasUmUnrealizedPNL returns a boolean if a field has been set.

func (*PmarginGetBalanceV1RespItem) HasUmWalletBalance

func (o *PmarginGetBalanceV1RespItem) HasUmWalletBalance() bool

HasUmWalletBalance returns a boolean if a field has been set.

func (*PmarginGetBalanceV1RespItem) HasUpdateTime

func (o *PmarginGetBalanceV1RespItem) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (PmarginGetBalanceV1RespItem) MarshalJSON

func (o PmarginGetBalanceV1RespItem) MarshalJSON() ([]byte, error)

func (*PmarginGetBalanceV1RespItem) SetAsset

func (o *PmarginGetBalanceV1RespItem) SetAsset(v string)

SetAsset gets a reference to the given string and assigns it to the Asset field.

func (*PmarginGetBalanceV1RespItem) SetCmUnrealizedPNL

func (o *PmarginGetBalanceV1RespItem) SetCmUnrealizedPNL(v string)

SetCmUnrealizedPNL gets a reference to the given string and assigns it to the CmUnrealizedPNL field.

func (*PmarginGetBalanceV1RespItem) SetCmWalletBalance

func (o *PmarginGetBalanceV1RespItem) SetCmWalletBalance(v string)

SetCmWalletBalance gets a reference to the given string and assigns it to the CmWalletBalance field.

func (*PmarginGetBalanceV1RespItem) SetCrossMarginAsset

func (o *PmarginGetBalanceV1RespItem) SetCrossMarginAsset(v string)

SetCrossMarginAsset gets a reference to the given string and assigns it to the CrossMarginAsset field.

func (*PmarginGetBalanceV1RespItem) SetCrossMarginBorrowed

func (o *PmarginGetBalanceV1RespItem) SetCrossMarginBorrowed(v string)

SetCrossMarginBorrowed gets a reference to the given string and assigns it to the CrossMarginBorrowed field.

func (*PmarginGetBalanceV1RespItem) SetCrossMarginFree

func (o *PmarginGetBalanceV1RespItem) SetCrossMarginFree(v string)

SetCrossMarginFree gets a reference to the given string and assigns it to the CrossMarginFree field.

func (*PmarginGetBalanceV1RespItem) SetCrossMarginInterest

func (o *PmarginGetBalanceV1RespItem) SetCrossMarginInterest(v string)

SetCrossMarginInterest gets a reference to the given string and assigns it to the CrossMarginInterest field.

func (*PmarginGetBalanceV1RespItem) SetCrossMarginLocked

func (o *PmarginGetBalanceV1RespItem) SetCrossMarginLocked(v string)

SetCrossMarginLocked gets a reference to the given string and assigns it to the CrossMarginLocked field.

func (*PmarginGetBalanceV1RespItem) SetNegativeBalance

func (o *PmarginGetBalanceV1RespItem) SetNegativeBalance(v string)

SetNegativeBalance gets a reference to the given string and assigns it to the NegativeBalance field.

func (*PmarginGetBalanceV1RespItem) SetTotalWalletBalance

func (o *PmarginGetBalanceV1RespItem) SetTotalWalletBalance(v string)

SetTotalWalletBalance gets a reference to the given string and assigns it to the TotalWalletBalance field.

func (*PmarginGetBalanceV1RespItem) SetUmUnrealizedPNL

func (o *PmarginGetBalanceV1RespItem) SetUmUnrealizedPNL(v string)

SetUmUnrealizedPNL gets a reference to the given string and assigns it to the UmUnrealizedPNL field.

func (*PmarginGetBalanceV1RespItem) SetUmWalletBalance

func (o *PmarginGetBalanceV1RespItem) SetUmWalletBalance(v string)

SetUmWalletBalance gets a reference to the given string and assigns it to the UmWalletBalance field.

func (*PmarginGetBalanceV1RespItem) SetUpdateTime

func (o *PmarginGetBalanceV1RespItem) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (PmarginGetBalanceV1RespItem) ToMap

func (o PmarginGetBalanceV1RespItem) ToMap() (map[string]interface{}, error)

type PortfolioMarginAPIService

type PortfolioMarginAPIService service

PortfolioMarginAPIService PortfolioMarginAPI service

func (*PortfolioMarginAPIService) CreateAssetCollectionV1

CreateAssetCollectionV1 Fund Collection by Asset(TRADE)

Transfers specific asset from Futures Account to Margin account

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateAssetCollectionV1Request

func (*PortfolioMarginAPIService) CreateAssetCollectionV1Execute

Execute executes the request

@return CreateAssetCollectionV1Resp

func (*PortfolioMarginAPIService) CreateAutoCollectionV1

CreateAutoCollectionV1 Fund Auto-collection(TRADE)

Fund collection for Portfolio Margin

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateAutoCollectionV1Request

func (*PortfolioMarginAPIService) CreateAutoCollectionV1Execute

Execute executes the request

@return CreateAutoCollectionV1Resp

func (*PortfolioMarginAPIService) CreateBnbTransferV1

CreateBnbTransferV1 BNB transfer (TRADE)

Transfer BNB in and out of UM

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateBnbTransferV1Request

func (*PortfolioMarginAPIService) CreateBnbTransferV1Execute

Execute executes the request

@return CreateBnbTransferV1Resp

func (*PortfolioMarginAPIService) CreateCmConditionalOrderV1

CreateCmConditionalOrderV1 New CM Conditional Order(TRADE)

New CM Conditional Order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateCmConditionalOrderV1Request

func (*PortfolioMarginAPIService) CreateCmConditionalOrderV1Execute

Execute executes the request

@return CreateCmConditionalOrderV1Resp

func (*PortfolioMarginAPIService) CreateCmLeverageV1

CreateCmLeverageV1 Change CM Initial Leverage (TRADE)

Change user's initial leverage of specific symbol in CM.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateCmLeverageV1Request

func (*PortfolioMarginAPIService) CreateCmLeverageV1Execute

Execute executes the request

@return CreateCmLeverageV1Resp

func (*PortfolioMarginAPIService) CreateCmOrderV1

CreateCmOrderV1 New CM Order(TRADE)

Place new CM order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateCmOrderV1Request

func (*PortfolioMarginAPIService) CreateCmOrderV1Execute

Execute executes the request

@return CreateCmOrderV1Resp

func (*PortfolioMarginAPIService) CreateCmPositionSideDualV1

CreateCmPositionSideDualV1 Change CM Position Mode(TRADE)

Change user's position mode (Hedge Mode or One-way Mode ) on EVERY symbol in CM

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateCmPositionSideDualV1Request

func (*PortfolioMarginAPIService) CreateCmPositionSideDualV1Execute

Execute executes the request

@return CreateCmPositionSideDualV1Resp

func (*PortfolioMarginAPIService) CreateListenKeyV1

CreateListenKeyV1 Start User Data Stream(USER_STREAM)

Start a new user data stream. The stream will close after 60 minutes unless a keepalive is sent. If the account has an active listenKey, that listenKey will be returned and its validity will be extended for 60 minutes.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateListenKeyV1Request

func (*PortfolioMarginAPIService) CreateListenKeyV1Execute

Execute executes the request

@return CreateListenKeyV1Resp

func (*PortfolioMarginAPIService) CreateMarginLoanV1

CreateMarginLoanV1 Margin Account Borrow(MARGIN)

Apply for a margin loan.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateMarginLoanV1Request

func (*PortfolioMarginAPIService) CreateMarginLoanV1Execute

Execute executes the request

@return CreateMarginLoanV1Resp

func (*PortfolioMarginAPIService) CreateMarginOrderOcoV1

CreateMarginOrderOcoV1 Margin Account New OCO(TRADE)

Send in a new OCO for a margin account

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateMarginOrderOcoV1Request

func (*PortfolioMarginAPIService) CreateMarginOrderOcoV1Execute

Execute executes the request

@return CreateMarginOrderOcoV1Resp

func (*PortfolioMarginAPIService) CreateMarginOrderV1

CreateMarginOrderV1 New Margin Order(TRADE)

New Margin Order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateMarginOrderV1Request

func (*PortfolioMarginAPIService) CreateMarginOrderV1Execute

Execute executes the request

@return CreateMarginOrderV1Resp

func (*PortfolioMarginAPIService) CreateMarginRepayDebtV1

CreateMarginRepayDebtV1 Margin Account Repay Debt(TRADE)

Repay debt for a margin loan.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateMarginRepayDebtV1Request

func (*PortfolioMarginAPIService) CreateMarginRepayDebtV1Execute

Execute executes the request

@return CreateMarginRepayDebtV1Resp

func (*PortfolioMarginAPIService) CreateRepayFuturesNegativeBalanceV1

func (a *PortfolioMarginAPIService) CreateRepayFuturesNegativeBalanceV1(ctx context.Context) ApiCreateRepayFuturesNegativeBalanceV1Request

CreateRepayFuturesNegativeBalanceV1 Repay futures Negative Balance(USER_DATA)

Repay futures Negative Balance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateRepayFuturesNegativeBalanceV1Request

func (*PortfolioMarginAPIService) CreateRepayFuturesNegativeBalanceV1Execute

Execute executes the request

@return CreateRepayFuturesNegativeBalanceV1Resp

func (*PortfolioMarginAPIService) CreateRepayFuturesSwitchV1

CreateRepayFuturesSwitchV1 Change Auto-repay-futures Status(TRADE)

Change Auto-repay-futures Status

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateRepayFuturesSwitchV1Request

func (*PortfolioMarginAPIService) CreateRepayFuturesSwitchV1Execute

Execute executes the request

@return CreateRepayFuturesSwitchV1Resp

func (*PortfolioMarginAPIService) CreateRepayLoanV1

CreateRepayLoanV1 Margin Account Repay(MARGIN)

Repay for a margin loan.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateRepayLoanV1Request

func (*PortfolioMarginAPIService) CreateRepayLoanV1Execute

Execute executes the request

@return CreateRepayLoanV1Resp

func (*PortfolioMarginAPIService) CreateUmConditionalOrderV1

CreateUmConditionalOrderV1 New UM Conditional Order (TRADE)

Place new UM conditional order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateUmConditionalOrderV1Request

func (*PortfolioMarginAPIService) CreateUmConditionalOrderV1Execute

Execute executes the request

@return CreateUmConditionalOrderV1Resp

func (*PortfolioMarginAPIService) CreateUmFeeBurnV1

CreateUmFeeBurnV1 Toggle BNB Burn On UM Futures Trade (TRADE)

Change user's BNB Fee Discount for UM Futures (Fee Discount On or Fee Discount Off ) on EVERY symbol

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateUmFeeBurnV1Request

func (*PortfolioMarginAPIService) CreateUmFeeBurnV1Execute

Execute executes the request

@return CreateUmFeeBurnV1Resp

func (*PortfolioMarginAPIService) CreateUmLeverageV1

CreateUmLeverageV1 Change UM Initial Leverage(TRADE)

Change user's initial leverage of specific symbol in UM.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateUmLeverageV1Request

func (*PortfolioMarginAPIService) CreateUmLeverageV1Execute

Execute executes the request

@return CreateUmLeverageV1Resp

func (*PortfolioMarginAPIService) CreateUmOrderV1

CreateUmOrderV1 New UM Order (TRADE)

Place new UM order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateUmOrderV1Request

func (*PortfolioMarginAPIService) CreateUmOrderV1Execute

Execute executes the request

@return CreateUmOrderV1Resp

func (*PortfolioMarginAPIService) CreateUmPositionSideDualV1

CreateUmPositionSideDualV1 Change UM Position Mode(TRADE)

Change user's position mode (Hedge Mode or One-way Mode ) on EVERY symbol in UM

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateUmPositionSideDualV1Request

func (*PortfolioMarginAPIService) CreateUmPositionSideDualV1Execute

Execute executes the request

@return CreateUmPositionSideDualV1Resp

func (*PortfolioMarginAPIService) DeleteCmAllOpenOrdersV1

DeleteCmAllOpenOrdersV1 Cancel All CM Open Orders(TRADE)

Cancel all active LIMIT orders on specific symbol

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteCmAllOpenOrdersV1Request

func (*PortfolioMarginAPIService) DeleteCmAllOpenOrdersV1Execute

Execute executes the request

@return DeleteCmAllOpenOrdersV1Resp

func (*PortfolioMarginAPIService) DeleteCmConditionalAllOpenOrdersV1

DeleteCmConditionalAllOpenOrdersV1 Cancel All CM Open Conditional Orders(TRADE)

Cancel All CM Open Conditional Orders

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteCmConditionalAllOpenOrdersV1Request

func (*PortfolioMarginAPIService) DeleteCmConditionalAllOpenOrdersV1Execute

Execute executes the request

@return DeleteCmConditionalAllOpenOrdersV1Resp

func (*PortfolioMarginAPIService) DeleteCmConditionalOrderV1

DeleteCmConditionalOrderV1 Cancel CM Conditional Order(TRADE)

Cancel CM Conditional Order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteCmConditionalOrderV1Request

func (*PortfolioMarginAPIService) DeleteCmConditionalOrderV1Execute

Execute executes the request

@return DeleteCmConditionalOrderV1Resp

func (*PortfolioMarginAPIService) DeleteCmOrderV1

DeleteCmOrderV1 Cancel CM Order(TRADE)

Cancel an active LIMIT order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteCmOrderV1Request

func (*PortfolioMarginAPIService) DeleteCmOrderV1Execute

Execute executes the request

@return DeleteCmOrderV1Resp

func (*PortfolioMarginAPIService) DeleteListenKeyV1

DeleteListenKeyV1 Close User Data Stream(USER_STREAM)

Close out a user data stream.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteListenKeyV1Request

func (*PortfolioMarginAPIService) DeleteListenKeyV1Execute

func (a *PortfolioMarginAPIService) DeleteListenKeyV1Execute(r ApiDeleteListenKeyV1Request) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*PortfolioMarginAPIService) DeleteMarginAllOpenOrdersV1

DeleteMarginAllOpenOrdersV1 Cancel Margin Account All Open Orders on a Symbol(TRADE)

Cancel Margin Account All Open Orders on a Symbol

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteMarginAllOpenOrdersV1Request

func (*PortfolioMarginAPIService) DeleteMarginAllOpenOrdersV1Execute

Execute executes the request

@return []PmarginDeleteMarginAllOpenOrdersV1RespInner

func (*PortfolioMarginAPIService) DeleteMarginOrderListV1

DeleteMarginOrderListV1 Cancel Margin Account OCO Orders(TRADE)

Cancel Margin Account OCO Orders

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteMarginOrderListV1Request

func (*PortfolioMarginAPIService) DeleteMarginOrderListV1Execute

Execute executes the request

@return DeleteMarginOrderListV1Resp

func (*PortfolioMarginAPIService) DeleteMarginOrderV1

DeleteMarginOrderV1 Cancel Margin Account Order(TRADE)

Cancel Margin Account Order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteMarginOrderV1Request

func (*PortfolioMarginAPIService) DeleteMarginOrderV1Execute

Execute executes the request

@return DeleteMarginOrderV1Resp

func (*PortfolioMarginAPIService) DeleteUmAllOpenOrdersV1

DeleteUmAllOpenOrdersV1 Cancel All UM Open Orders(TRADE)

Cancel all active LIMIT orders on specific symbol

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteUmAllOpenOrdersV1Request

func (*PortfolioMarginAPIService) DeleteUmAllOpenOrdersV1Execute

Execute executes the request

@return DeleteUmAllOpenOrdersV1Resp

func (*PortfolioMarginAPIService) DeleteUmConditionalAllOpenOrdersV1

DeleteUmConditionalAllOpenOrdersV1 Cancel All UM Open Conditional Orders (TRADE)

Cancel All UM Open Conditional Orders

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteUmConditionalAllOpenOrdersV1Request

func (*PortfolioMarginAPIService) DeleteUmConditionalAllOpenOrdersV1Execute

Execute executes the request

@return DeleteUmConditionalAllOpenOrdersV1Resp

func (*PortfolioMarginAPIService) DeleteUmConditionalOrderV1

DeleteUmConditionalOrderV1 Cancel UM Conditional Order(TRADE)

Cancel UM Conditional Order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteUmConditionalOrderV1Request

func (*PortfolioMarginAPIService) DeleteUmConditionalOrderV1Execute

Execute executes the request

@return DeleteUmConditionalOrderV1Resp

func (*PortfolioMarginAPIService) DeleteUmOrderV1

DeleteUmOrderV1 Cancel UM Order(TRADE)

Cancel an active UM LIMIT order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteUmOrderV1Request

func (*PortfolioMarginAPIService) DeleteUmOrderV1Execute

Execute executes the request

@return DeleteUmOrderV1Resp

func (*PortfolioMarginAPIService) GetAccountV1

GetAccountV1 Account Information(USER_DATA)

Query account information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetAccountV1Request

func (*PortfolioMarginAPIService) GetAccountV1Execute

Execute executes the request

@return GetAccountV1Resp

func (*PortfolioMarginAPIService) GetBalanceV1

GetBalanceV1 Account Balance(USER_DATA)

Query account balance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetBalanceV1Request

func (*PortfolioMarginAPIService) GetBalanceV1Execute

Execute executes the request

@return PmarginGetBalanceV1Resp

func (*PortfolioMarginAPIService) GetCmAccountV1

GetCmAccountV1 Get CM Account Detail(USER_DATA)

Get current CM account asset and position information.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmAccountV1Request

func (*PortfolioMarginAPIService) GetCmAccountV1Execute

Execute executes the request

@return GetCmAccountV1Resp

func (*PortfolioMarginAPIService) GetCmAdlQuantileV1

GetCmAdlQuantileV1 CM Position ADL Quantile Estimation(USER_DATA)

Query CM Position ADL Quantile Estimation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmAdlQuantileV1Request

func (*PortfolioMarginAPIService) GetCmAdlQuantileV1Execute

Execute executes the request

@return []GetCmAdlQuantileV1RespItem

func (*PortfolioMarginAPIService) GetCmAllOrdersV1

GetCmAllOrdersV1 Query All CM Orders (USER_DATA)

Get all account CM orders; active, canceled, or filled.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmAllOrdersV1Request

func (*PortfolioMarginAPIService) GetCmAllOrdersV1Execute

Execute executes the request

@return []GetCmAllOrdersV1RespItem

func (*PortfolioMarginAPIService) GetCmCommissionRateV1

GetCmCommissionRateV1 Get User Commission Rate for CM(USER_DATA)

Get User Commission Rate for CM

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmCommissionRateV1Request

func (*PortfolioMarginAPIService) GetCmCommissionRateV1Execute

Execute executes the request

@return GetCmCommissionRateV1Resp

func (*PortfolioMarginAPIService) GetCmConditionalAllOrdersV1

GetCmConditionalAllOrdersV1 Query All CM Conditional Orders(USER_DATA)

Query All CM Conditional Orders

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmConditionalAllOrdersV1Request

func (*PortfolioMarginAPIService) GetCmConditionalAllOrdersV1Execute

Execute executes the request

@return []GetCmConditionalAllOrdersV1RespItem

func (*PortfolioMarginAPIService) GetCmConditionalOpenOrderV1

GetCmConditionalOpenOrderV1 Query Current CM Open Conditional Order(USER_DATA)

Query Current CM Open Conditional Order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmConditionalOpenOrderV1Request

func (*PortfolioMarginAPIService) GetCmConditionalOpenOrderV1Execute

Execute executes the request

@return GetCmConditionalOpenOrderV1Resp

func (*PortfolioMarginAPIService) GetCmConditionalOpenOrdersV1

GetCmConditionalOpenOrdersV1 Query All Current CM Open Conditional Orders (USER_DATA)

Get all open conditional orders on a symbol. Careful when accessing this with no symbol.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmConditionalOpenOrdersV1Request

func (*PortfolioMarginAPIService) GetCmConditionalOpenOrdersV1Execute

Execute executes the request

@return []GetCmConditionalOpenOrdersV1RespItem

func (*PortfolioMarginAPIService) GetCmConditionalOrderHistoryV1

GetCmConditionalOrderHistoryV1 Query CM Conditional Order History(USER_DATA)

Query CM Conditional Order History

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmConditionalOrderHistoryV1Request

func (*PortfolioMarginAPIService) GetCmConditionalOrderHistoryV1Execute

Execute executes the request

@return GetCmConditionalOrderHistoryV1Resp

func (*PortfolioMarginAPIService) GetCmForceOrdersV1

GetCmForceOrdersV1 Query User's CM Force Orders(USER_DATA)

Query User's CM Force Orders

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmForceOrdersV1Request

func (*PortfolioMarginAPIService) GetCmForceOrdersV1Execute

Execute executes the request

@return []GetCmForceOrdersV1RespItem

func (*PortfolioMarginAPIService) GetCmIncomeV1

GetCmIncomeV1 Get CM Income History(USER_DATA)

Get CM Income History

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmIncomeV1Request

func (*PortfolioMarginAPIService) GetCmIncomeV1Execute

Execute executes the request

@return []GetCmIncomeV1RespItem

func (*PortfolioMarginAPIService) GetCmLeverageBracketV1

GetCmLeverageBracketV1 CM Notional and Leverage Brackets(USER_DATA)

Query CM notional and leverage brackets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmLeverageBracketV1Request

func (*PortfolioMarginAPIService) GetCmLeverageBracketV1Execute

Execute executes the request

@return []GetCmLeverageBracketV1RespItem

func (*PortfolioMarginAPIService) GetCmOpenOrderV1

GetCmOpenOrderV1 Query Current CM Open Order (USER_DATA)

Query current CM open order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmOpenOrderV1Request

func (*PortfolioMarginAPIService) GetCmOpenOrderV1Execute

Execute executes the request

@return GetCmOpenOrderV1Resp

func (*PortfolioMarginAPIService) GetCmOpenOrdersV1

GetCmOpenOrdersV1 Query All Current CM Open Orders(USER_DATA)

Get all open orders on a symbol.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmOpenOrdersV1Request

func (*PortfolioMarginAPIService) GetCmOpenOrdersV1Execute

Execute executes the request

@return []GetCmOpenOrdersV1RespItem

func (*PortfolioMarginAPIService) GetCmOrderAmendmentV1

GetCmOrderAmendmentV1 Query CM Modify Order History(TRADE)

Get order modification history

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmOrderAmendmentV1Request

func (*PortfolioMarginAPIService) GetCmOrderAmendmentV1Execute

Execute executes the request

@return []GetCmOrderAmendmentV1RespItem

func (*PortfolioMarginAPIService) GetCmOrderV1

GetCmOrderV1 Query CM Order(USER_DATA)

Check an CM order's status.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmOrderV1Request

func (*PortfolioMarginAPIService) GetCmOrderV1Execute

Execute executes the request

@return GetCmOrderV1Resp

func (*PortfolioMarginAPIService) GetCmPositionRiskV1

GetCmPositionRiskV1 Query CM Position Information(USER_DATA)

Get current CM position information.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmPositionRiskV1Request

func (*PortfolioMarginAPIService) GetCmPositionRiskV1Execute

Execute executes the request

@return []GetCmPositionRiskV1RespItem

func (*PortfolioMarginAPIService) GetCmPositionSideDualV1

GetCmPositionSideDualV1 Get CM Current Position Mode(USER_DATA)

Get user's position mode (Hedge Mode or One-way Mode ) on EVERY symbol in CM

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmPositionSideDualV1Request

func (*PortfolioMarginAPIService) GetCmPositionSideDualV1Execute

Execute executes the request

@return GetCmPositionSideDualV1Resp

func (*PortfolioMarginAPIService) GetCmUserTradesV1

GetCmUserTradesV1 CM Account Trade List(USER_DATA)

Get trades for a specific account and CM symbol.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCmUserTradesV1Request

func (*PortfolioMarginAPIService) GetCmUserTradesV1Execute

Execute executes the request

@return []GetCmUserTradesV1RespItem

func (*PortfolioMarginAPIService) GetMarginAllOrderListV1

GetMarginAllOrderListV1 Query Margin Account's all OCO (USER_DATA)

Query all OCO for a specific margin account based on provided optional parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginAllOrderListV1Request

func (*PortfolioMarginAPIService) GetMarginAllOrderListV1Execute

Execute executes the request

@return []GetMarginAllOrderListV1RespItem

func (*PortfolioMarginAPIService) GetMarginAllOrdersV1

GetMarginAllOrdersV1 Query All Margin Account Orders (USER_DATA)

Query All Margin Account Orders

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginAllOrdersV1Request

func (*PortfolioMarginAPIService) GetMarginAllOrdersV1Execute

Execute executes the request

@return []GetMarginAllOrdersV1RespItem

func (*PortfolioMarginAPIService) GetMarginForceOrdersV1

GetMarginForceOrdersV1 Query User's Margin Force Orders(USER_DATA)

Query user's margin force orders

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginForceOrdersV1Request

func (*PortfolioMarginAPIService) GetMarginForceOrdersV1Execute

Execute executes the request

@return GetMarginForceOrdersV1Resp

func (*PortfolioMarginAPIService) GetMarginMarginInterestHistoryV1

GetMarginMarginInterestHistoryV1 Get Margin Borrow/Loan Interest History(USER_DATA)

Get Margin Borrow/Loan Interest History

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginMarginInterestHistoryV1Request

func (*PortfolioMarginAPIService) GetMarginMarginInterestHistoryV1Execute

Execute executes the request

@return GetMarginMarginInterestHistoryV1Resp

func (*PortfolioMarginAPIService) GetMarginMarginLoanV1

GetMarginMarginLoanV1 Query Margin Loan Record(USER_DATA)

Query margin loan record

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginMarginLoanV1Request

func (*PortfolioMarginAPIService) GetMarginMarginLoanV1Execute

Execute executes the request

@return GetMarginMarginLoanV1Resp

func (*PortfolioMarginAPIService) GetMarginMaxBorrowableV1

GetMarginMaxBorrowableV1 Margin Max Borrow(USER_DATA)

Query margin max borrow

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginMaxBorrowableV1Request

func (*PortfolioMarginAPIService) GetMarginMaxBorrowableV1Execute

Execute executes the request

@return GetMarginMaxBorrowableV1Resp

func (*PortfolioMarginAPIService) GetMarginMaxWithdrawV1

GetMarginMaxWithdrawV1 Query Margin Max Withdraw(USER_DATA)

Query Margin Max Withdraw

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginMaxWithdrawV1Request

func (*PortfolioMarginAPIService) GetMarginMaxWithdrawV1Execute

Execute executes the request

@return GetMarginMaxWithdrawV1Resp

func (*PortfolioMarginAPIService) GetMarginMyTradesV1

GetMarginMyTradesV1 Margin Account Trade List (USER_DATA)

Margin Account Trade List

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginMyTradesV1Request

func (*PortfolioMarginAPIService) GetMarginMyTradesV1Execute

Execute executes the request

@return []GetMarginMyTradesV1RespItem

func (*PortfolioMarginAPIService) GetMarginOpenOrderListV1

GetMarginOpenOrderListV1 Query Margin Account's Open OCO (USER_DATA)

Query Margin Account's Open OCO

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginOpenOrderListV1Request

func (*PortfolioMarginAPIService) GetMarginOpenOrderListV1Execute

Execute executes the request

@return []GetMarginOpenOrderListV1RespItem

func (*PortfolioMarginAPIService) GetMarginOpenOrdersV1

GetMarginOpenOrdersV1 Query Current Margin Open Order (USER_DATA)

Query Current Margin Open Order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginOpenOrdersV1Request

func (*PortfolioMarginAPIService) GetMarginOpenOrdersV1Execute

Execute executes the request

@return []GetMarginOpenOrdersV1RespItem

func (*PortfolioMarginAPIService) GetMarginOrderListV1

GetMarginOrderListV1 Query Margin Account's OCO (USER_DATA)

Retrieves a specific OCO based on provided optional parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginOrderListV1Request

func (*PortfolioMarginAPIService) GetMarginOrderListV1Execute

Execute executes the request

@return GetMarginOrderListV1Resp

func (*PortfolioMarginAPIService) GetMarginOrderV1

GetMarginOrderV1 Query Margin Account Order (USER_DATA)

Query Margin Account Order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginOrderV1Request

func (*PortfolioMarginAPIService) GetMarginOrderV1Execute

Execute executes the request

@return GetMarginOrderV1Resp

func (*PortfolioMarginAPIService) GetMarginRepayLoanV1

GetMarginRepayLoanV1 Query Margin repay Record(USER_DATA)

Query margin repay record.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMarginRepayLoanV1Request

func (*PortfolioMarginAPIService) GetMarginRepayLoanV1Execute

Execute executes the request

@return GetMarginRepayLoanV1Resp

func (*PortfolioMarginAPIService) GetPingV1

GetPingV1 Test Connectivity

Test connectivity to the Rest API.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetPingV1Request

func (*PortfolioMarginAPIService) GetPingV1Execute

func (a *PortfolioMarginAPIService) GetPingV1Execute(r ApiGetPingV1Request) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*PortfolioMarginAPIService) GetPortfolioInterestHistoryV1

GetPortfolioInterestHistoryV1 Query Portfolio Margin Negative Balance Interest History(USER_DATA)

Query interest history of negative balance for portfolio margin.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetPortfolioInterestHistoryV1Request

func (*PortfolioMarginAPIService) GetPortfolioInterestHistoryV1Execute

Execute executes the request

@return []GetPortfolioInterestHistoryV1RespItem

func (*PortfolioMarginAPIService) GetPortfolioNegativeBalanceExchangeRecordV1

func (a *PortfolioMarginAPIService) GetPortfolioNegativeBalanceExchangeRecordV1(ctx context.Context) ApiGetPortfolioNegativeBalanceExchangeRecordV1Request

GetPortfolioNegativeBalanceExchangeRecordV1 Query User Negative Balance Auto Exchange Record (USER_DATA)

Query user negative balance auto exchange record

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetPortfolioNegativeBalanceExchangeRecordV1Request

func (*PortfolioMarginAPIService) GetPortfolioNegativeBalanceExchangeRecordV1Execute

Execute executes the request

@return GetPortfolioNegativeBalanceExchangeRecordV1Resp

func (*PortfolioMarginAPIService) GetRateLimitOrderV1

GetRateLimitOrderV1 Query User Rate Limit (USER_DATA)

Query User Rate Limit

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetRateLimitOrderV1Request

func (*PortfolioMarginAPIService) GetRateLimitOrderV1Execute

Execute executes the request

@return []GetRateLimitOrderV1RespItem

func (*PortfolioMarginAPIService) GetRepayFuturesSwitchV1

GetRepayFuturesSwitchV1 Get Auto-repay-futures Status(USER_DATA)

Query Auto-repay-futures Status

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetRepayFuturesSwitchV1Request

func (*PortfolioMarginAPIService) GetRepayFuturesSwitchV1Execute

Execute executes the request

@return GetRepayFuturesSwitchV1Resp

func (*PortfolioMarginAPIService) GetUmAccountConfigV1

GetUmAccountConfigV1 UM Futures Account Configuration(USER_DATA)

Query UM Futures account configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmAccountConfigV1Request

func (*PortfolioMarginAPIService) GetUmAccountConfigV1Execute

Execute executes the request

@return GetUmAccountConfigV1Resp

func (*PortfolioMarginAPIService) GetUmAccountV1

GetUmAccountV1 Get UM Account Detail(USER_DATA)

Get current UM account asset and position information.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmAccountV1Request

func (*PortfolioMarginAPIService) GetUmAccountV1Execute

Execute executes the request

@return GetUmAccountV1Resp

func (*PortfolioMarginAPIService) GetUmAccountV2

GetUmAccountV2 Get UM Account Detail V2(USER_DATA)

Get current UM account asset and position information.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmAccountV2Request

func (*PortfolioMarginAPIService) GetUmAccountV2Execute

Execute executes the request

@return GetUmAccountV2Resp

func (*PortfolioMarginAPIService) GetUmAdlQuantileV1

GetUmAdlQuantileV1 UM Position ADL Quantile Estimation(USER_DATA)

Query UM Position ADL Quantile Estimation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmAdlQuantileV1Request

func (*PortfolioMarginAPIService) GetUmAdlQuantileV1Execute

Execute executes the request

@return []GetUmAdlQuantileV1RespItem

func (*PortfolioMarginAPIService) GetUmAllOrdersV1

GetUmAllOrdersV1 Query All UM Orders(USER_DATA)

Get all account UM orders; active, canceled, or filled.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmAllOrdersV1Request

func (*PortfolioMarginAPIService) GetUmAllOrdersV1Execute

Execute executes the request

@return []GetUmAllOrdersV1RespItem

func (*PortfolioMarginAPIService) GetUmApiTradingStatusV1

GetUmApiTradingStatusV1 Portfolio Margin UM Trading Quantitative Rules Indicators(USER_DATA)

Portfolio Margin UM Trading Quantitative Rules Indicators

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmApiTradingStatusV1Request

func (*PortfolioMarginAPIService) GetUmApiTradingStatusV1Execute

Execute executes the request

@return GetUmApiTradingStatusV1Resp

func (*PortfolioMarginAPIService) GetUmCommissionRateV1

GetUmCommissionRateV1 Get User Commission Rate for UM(USER_DATA)

Get User Commission Rate for UM

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmCommissionRateV1Request

func (*PortfolioMarginAPIService) GetUmCommissionRateV1Execute

Execute executes the request

@return GetUmCommissionRateV1Resp

func (*PortfolioMarginAPIService) GetUmConditionalAllOrdersV1

GetUmConditionalAllOrdersV1 Query All UM Conditional Orders(USER_DATA)

Query All UM Conditional Orders

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmConditionalAllOrdersV1Request

func (*PortfolioMarginAPIService) GetUmConditionalAllOrdersV1Execute

Execute executes the request

@return []GetUmConditionalAllOrdersV1RespItem

func (*PortfolioMarginAPIService) GetUmConditionalOpenOrderV1

GetUmConditionalOpenOrderV1 Query Current UM Open Conditional Order(USER_DATA)

Query Current UM Open Conditional Order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmConditionalOpenOrderV1Request

func (*PortfolioMarginAPIService) GetUmConditionalOpenOrderV1Execute

Execute executes the request

@return GetUmConditionalOpenOrderV1Resp

func (*PortfolioMarginAPIService) GetUmConditionalOpenOrdersV1

GetUmConditionalOpenOrdersV1 Query All Current UM Open Conditional Orders(USER_DATA)

Get all open conditional orders on a symbol.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmConditionalOpenOrdersV1Request

func (*PortfolioMarginAPIService) GetUmConditionalOpenOrdersV1Execute

Execute executes the request

@return []GetUmConditionalOpenOrdersV1RespItem

func (*PortfolioMarginAPIService) GetUmConditionalOrderHistoryV1

GetUmConditionalOrderHistoryV1 Query UM Conditional Order History(USER_DATA)

Query UM Conditional Order History

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmConditionalOrderHistoryV1Request

func (*PortfolioMarginAPIService) GetUmConditionalOrderHistoryV1Execute

Execute executes the request

@return GetUmConditionalOrderHistoryV1Resp

func (*PortfolioMarginAPIService) GetUmFeeBurnV1

GetUmFeeBurnV1 Get UM Futures BNB Burn Status (USER_DATA)

Get user's BNB Fee Discount for UM Futures (Fee Discount On or Fee Discount Off )

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmFeeBurnV1Request

func (*PortfolioMarginAPIService) GetUmFeeBurnV1Execute

Execute executes the request

@return GetUmFeeBurnV1Resp

func (*PortfolioMarginAPIService) GetUmForceOrdersV1

GetUmForceOrdersV1 Query User's UM Force Orders (USER_DATA)

Query User's UM Force Orders

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmForceOrdersV1Request

func (*PortfolioMarginAPIService) GetUmForceOrdersV1Execute

Execute executes the request

@return []GetUmForceOrdersV1RespItem

func (*PortfolioMarginAPIService) GetUmIncomeAsynIdV1

GetUmIncomeAsynIdV1 Get UM Futures Transaction Download Link by Id(USER_DATA)

Get UM futures Transaction download link by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmIncomeAsynIdV1Request

func (*PortfolioMarginAPIService) GetUmIncomeAsynIdV1Execute

Execute executes the request

@return GetUmIncomeAsynIdV1Resp

func (*PortfolioMarginAPIService) GetUmIncomeAsynV1

GetUmIncomeAsynV1 Get Download Id For UM Futures Transaction History (USER_DATA)

Get download id for UM futures transaction history

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmIncomeAsynV1Request

func (*PortfolioMarginAPIService) GetUmIncomeAsynV1Execute

Execute executes the request

@return GetUmIncomeAsynV1Resp

func (*PortfolioMarginAPIService) GetUmIncomeV1

GetUmIncomeV1 Get UM Income History(USER_DATA)

Get UM Income History

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmIncomeV1Request

func (*PortfolioMarginAPIService) GetUmIncomeV1Execute

Execute executes the request

@return []GetUmIncomeV1RespItem

func (*PortfolioMarginAPIService) GetUmLeverageBracketV1

GetUmLeverageBracketV1 UM Notional and Leverage Brackets (USER_DATA)

Query UM notional and leverage brackets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmLeverageBracketV1Request

func (*PortfolioMarginAPIService) GetUmLeverageBracketV1Execute

Execute executes the request

@return []GetUmLeverageBracketV1RespItem

func (*PortfolioMarginAPIService) GetUmOpenOrderV1

GetUmOpenOrderV1 Query Current UM Open Order(USER_DATA)

Query current UM open order

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmOpenOrderV1Request

func (*PortfolioMarginAPIService) GetUmOpenOrderV1Execute

Execute executes the request

@return GetUmOpenOrderV1Resp

func (*PortfolioMarginAPIService) GetUmOpenOrdersV1

GetUmOpenOrdersV1 Query All Current UM Open Orders(USER_DATA)

Get all open orders on a symbol.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmOpenOrdersV1Request

func (*PortfolioMarginAPIService) GetUmOpenOrdersV1Execute

Execute executes the request

@return []GetUmOpenOrdersV1RespItem

func (*PortfolioMarginAPIService) GetUmOrderAmendmentV1

GetUmOrderAmendmentV1 Query UM Modify Order History(TRADE)

Get order modification history

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmOrderAmendmentV1Request

func (*PortfolioMarginAPIService) GetUmOrderAmendmentV1Execute

Execute executes the request

@return []GetUmOrderAmendmentV1RespItem

func (*PortfolioMarginAPIService) GetUmOrderAsynIdV1

GetUmOrderAsynIdV1 Get UM Futures Order Download Link by Id(USER_DATA)

Get UM futures order download link by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmOrderAsynIdV1Request

func (*PortfolioMarginAPIService) GetUmOrderAsynIdV1Execute

Execute executes the request

@return GetUmOrderAsynIdV1Resp

func (*PortfolioMarginAPIService) GetUmOrderAsynV1

GetUmOrderAsynV1 Get Download Id For UM Futures Order History (USER_DATA)

Get download id for UM futures order history

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmOrderAsynV1Request

func (*PortfolioMarginAPIService) GetUmOrderAsynV1Execute

Execute executes the request

@return GetUmOrderAsynV1Resp

func (*PortfolioMarginAPIService) GetUmOrderV1

GetUmOrderV1 Query UM Order (USER_DATA)

Check an UM order's status.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmOrderV1Request

func (*PortfolioMarginAPIService) GetUmOrderV1Execute

Execute executes the request

@return GetUmOrderV1Resp

func (*PortfolioMarginAPIService) GetUmPositionRiskV1

GetUmPositionRiskV1 Query UM Position Information(USER_DATA)

Get current UM position information.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmPositionRiskV1Request

func (*PortfolioMarginAPIService) GetUmPositionRiskV1Execute

Execute executes the request

@return []GetUmPositionRiskV1RespItem

func (*PortfolioMarginAPIService) GetUmPositionSideDualV1

GetUmPositionSideDualV1 Get UM Current Position Mode(USER_DATA)

Get user's position mode (Hedge Mode or One-way Mode ) on EVERY symbol in UM

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmPositionSideDualV1Request

func (*PortfolioMarginAPIService) GetUmPositionSideDualV1Execute

Execute executes the request

@return GetUmPositionSideDualV1Resp

func (*PortfolioMarginAPIService) GetUmSymbolConfigV1

GetUmSymbolConfigV1 UM Futures Symbol Configuration(USER_DATA)

Get current UM account symbol configuration.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmSymbolConfigV1Request

func (*PortfolioMarginAPIService) GetUmSymbolConfigV1Execute

Execute executes the request

@return []GetUmSymbolConfigV1RespItem

func (*PortfolioMarginAPIService) GetUmTradeAsynIdV1

GetUmTradeAsynIdV1 Get UM Futures Trade Download Link by Id(USER_DATA)

Get UM futures trade download link by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmTradeAsynIdV1Request

func (*PortfolioMarginAPIService) GetUmTradeAsynIdV1Execute

Execute executes the request

@return GetUmTradeAsynIdV1Resp

func (*PortfolioMarginAPIService) GetUmTradeAsynV1

GetUmTradeAsynV1 Get Download Id For UM Futures Trade History (USER_DATA)

Get download id for UM futures trade history

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmTradeAsynV1Request

func (*PortfolioMarginAPIService) GetUmTradeAsynV1Execute

Execute executes the request

@return GetUmTradeAsynV1Resp

func (*PortfolioMarginAPIService) GetUmUserTradesV1

GetUmUserTradesV1 UM Account Trade List(USER_DATA)

Get trades for a specific account and UM symbol.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUmUserTradesV1Request

func (*PortfolioMarginAPIService) GetUmUserTradesV1Execute

Execute executes the request

@return []GetUmUserTradesV1RespItem

func (*PortfolioMarginAPIService) UpdateCmOrderV1

UpdateCmOrderV1 Modify CM Order(TRADE)

Order modify function, currently only LIMIT order modification is supported, modified orders will be reordered in the match queue

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateCmOrderV1Request

func (*PortfolioMarginAPIService) UpdateCmOrderV1Execute

Execute executes the request

@return UpdateCmOrderV1Resp

func (*PortfolioMarginAPIService) UpdateListenKeyV1

UpdateListenKeyV1 Keepalive User Data Stream (USER_STREAM)

Keepalive a user data stream to prevent a time out. User data streams will close after 60 minutes. It's recommended to send a ping about every 60 minutes.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateListenKeyV1Request

func (*PortfolioMarginAPIService) UpdateListenKeyV1Execute

func (a *PortfolioMarginAPIService) UpdateListenKeyV1Execute(r ApiUpdateListenKeyV1Request) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*PortfolioMarginAPIService) UpdateUmOrderV1

UpdateUmOrderV1 Modify UM Order(TRADE)

Order modify function, currently only LIMIT order modification is supported, modified orders will be reordered in the match queue

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateUmOrderV1Request

func (*PortfolioMarginAPIService) UpdateUmOrderV1Execute

Execute executes the request

@return UpdateUmOrderV1Resp

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 UpdateCmOrderV1Resp

type UpdateCmOrderV1Resp struct {
	AvgPrice      *string `json:"avgPrice,omitempty"`
	ClientOrderId *string `json:"clientOrderId,omitempty"`
	CumBase       *string `json:"cumBase,omitempty"`
	CumQty        *string `json:"cumQty,omitempty"`
	ExecutedQty   *string `json:"executedQty,omitempty"`
	OrderId       *int64  `json:"orderId,omitempty"`
	OrigQty       *string `json:"origQty,omitempty"`
	OrigType      *string `json:"origType,omitempty"`
	Pair          *string `json:"pair,omitempty"`
	PositionSide  *string `json:"positionSide,omitempty"`
	Price         *string `json:"price,omitempty"`
	ReduceOnly    *bool   `json:"reduceOnly,omitempty"`
	Side          *string `json:"side,omitempty"`
	Status        *string `json:"status,omitempty"`
	Symbol        *string `json:"symbol,omitempty"`
	TimeInForce   *string `json:"timeInForce,omitempty"`
	Type          *string `json:"type,omitempty"`
	UpdateTime    *int64  `json:"updateTime,omitempty"`
}

UpdateCmOrderV1Resp struct for UpdateCmOrderV1Resp

func NewUpdateCmOrderV1Resp

func NewUpdateCmOrderV1Resp() *UpdateCmOrderV1Resp

NewUpdateCmOrderV1Resp instantiates a new UpdateCmOrderV1Resp 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 NewUpdateCmOrderV1RespWithDefaults

func NewUpdateCmOrderV1RespWithDefaults() *UpdateCmOrderV1Resp

NewUpdateCmOrderV1RespWithDefaults instantiates a new UpdateCmOrderV1Resp 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 (*UpdateCmOrderV1Resp) GetAvgPrice

func (o *UpdateCmOrderV1Resp) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetAvgPriceOk

func (o *UpdateCmOrderV1Resp) GetAvgPriceOk() (*string, bool)

GetAvgPriceOk returns a tuple with the AvgPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetClientOrderId

func (o *UpdateCmOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetClientOrderIdOk

func (o *UpdateCmOrderV1Resp) GetClientOrderIdOk() (*string, bool)

GetClientOrderIdOk returns a tuple with the ClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetCumBase

func (o *UpdateCmOrderV1Resp) GetCumBase() string

GetCumBase returns the CumBase field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetCumBaseOk

func (o *UpdateCmOrderV1Resp) GetCumBaseOk() (*string, bool)

GetCumBaseOk returns a tuple with the CumBase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetCumQty

func (o *UpdateCmOrderV1Resp) GetCumQty() string

GetCumQty returns the CumQty field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetCumQtyOk

func (o *UpdateCmOrderV1Resp) GetCumQtyOk() (*string, bool)

GetCumQtyOk returns a tuple with the CumQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetExecutedQty

func (o *UpdateCmOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetExecutedQtyOk

func (o *UpdateCmOrderV1Resp) GetExecutedQtyOk() (*string, bool)

GetExecutedQtyOk returns a tuple with the ExecutedQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetOrderId

func (o *UpdateCmOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetOrderIdOk

func (o *UpdateCmOrderV1Resp) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetOrigQty

func (o *UpdateCmOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetOrigQtyOk

func (o *UpdateCmOrderV1Resp) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetOrigType

func (o *UpdateCmOrderV1Resp) GetOrigType() string

GetOrigType returns the OrigType field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetOrigTypeOk

func (o *UpdateCmOrderV1Resp) GetOrigTypeOk() (*string, bool)

GetOrigTypeOk returns a tuple with the OrigType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetPair

func (o *UpdateCmOrderV1Resp) GetPair() string

GetPair returns the Pair field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetPairOk

func (o *UpdateCmOrderV1Resp) GetPairOk() (*string, bool)

GetPairOk returns a tuple with the Pair field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetPositionSide

func (o *UpdateCmOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetPositionSideOk

func (o *UpdateCmOrderV1Resp) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetPrice

func (o *UpdateCmOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetPriceOk

func (o *UpdateCmOrderV1Resp) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetReduceOnly

func (o *UpdateCmOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetReduceOnlyOk

func (o *UpdateCmOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

GetReduceOnlyOk returns a tuple with the ReduceOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetSide

func (o *UpdateCmOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetSideOk

func (o *UpdateCmOrderV1Resp) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetStatus

func (o *UpdateCmOrderV1Resp) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetStatusOk

func (o *UpdateCmOrderV1Resp) 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 (*UpdateCmOrderV1Resp) GetSymbol

func (o *UpdateCmOrderV1Resp) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetSymbolOk

func (o *UpdateCmOrderV1Resp) 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 (*UpdateCmOrderV1Resp) GetTimeInForce

func (o *UpdateCmOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetTimeInForceOk

func (o *UpdateCmOrderV1Resp) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) GetType

func (o *UpdateCmOrderV1Resp) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetTypeOk

func (o *UpdateCmOrderV1Resp) 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 (*UpdateCmOrderV1Resp) GetUpdateTime

func (o *UpdateCmOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*UpdateCmOrderV1Resp) GetUpdateTimeOk

func (o *UpdateCmOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCmOrderV1Resp) HasAvgPrice

func (o *UpdateCmOrderV1Resp) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasClientOrderId

func (o *UpdateCmOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasCumBase

func (o *UpdateCmOrderV1Resp) HasCumBase() bool

HasCumBase returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasCumQty

func (o *UpdateCmOrderV1Resp) HasCumQty() bool

HasCumQty returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasExecutedQty

func (o *UpdateCmOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasOrderId

func (o *UpdateCmOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasOrigQty

func (o *UpdateCmOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasOrigType

func (o *UpdateCmOrderV1Resp) HasOrigType() bool

HasOrigType returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasPair

func (o *UpdateCmOrderV1Resp) HasPair() bool

HasPair returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasPositionSide

func (o *UpdateCmOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasPrice

func (o *UpdateCmOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasReduceOnly

func (o *UpdateCmOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasSide

func (o *UpdateCmOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasStatus

func (o *UpdateCmOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasSymbol

func (o *UpdateCmOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasTimeInForce

func (o *UpdateCmOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasType

func (o *UpdateCmOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (*UpdateCmOrderV1Resp) HasUpdateTime

func (o *UpdateCmOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (UpdateCmOrderV1Resp) MarshalJSON

func (o UpdateCmOrderV1Resp) MarshalJSON() ([]byte, error)

func (*UpdateCmOrderV1Resp) SetAvgPrice

func (o *UpdateCmOrderV1Resp) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*UpdateCmOrderV1Resp) SetClientOrderId

func (o *UpdateCmOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*UpdateCmOrderV1Resp) SetCumBase

func (o *UpdateCmOrderV1Resp) SetCumBase(v string)

SetCumBase gets a reference to the given string and assigns it to the CumBase field.

func (*UpdateCmOrderV1Resp) SetCumQty

func (o *UpdateCmOrderV1Resp) SetCumQty(v string)

SetCumQty gets a reference to the given string and assigns it to the CumQty field.

func (*UpdateCmOrderV1Resp) SetExecutedQty

func (o *UpdateCmOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*UpdateCmOrderV1Resp) SetOrderId

func (o *UpdateCmOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*UpdateCmOrderV1Resp) SetOrigQty

func (o *UpdateCmOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*UpdateCmOrderV1Resp) SetOrigType

func (o *UpdateCmOrderV1Resp) SetOrigType(v string)

SetOrigType gets a reference to the given string and assigns it to the OrigType field.

func (*UpdateCmOrderV1Resp) SetPair

func (o *UpdateCmOrderV1Resp) SetPair(v string)

SetPair gets a reference to the given string and assigns it to the Pair field.

func (*UpdateCmOrderV1Resp) SetPositionSide

func (o *UpdateCmOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*UpdateCmOrderV1Resp) SetPrice

func (o *UpdateCmOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*UpdateCmOrderV1Resp) SetReduceOnly

func (o *UpdateCmOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*UpdateCmOrderV1Resp) SetSide

func (o *UpdateCmOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*UpdateCmOrderV1Resp) SetStatus

func (o *UpdateCmOrderV1Resp) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*UpdateCmOrderV1Resp) SetSymbol

func (o *UpdateCmOrderV1Resp) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*UpdateCmOrderV1Resp) SetTimeInForce

func (o *UpdateCmOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*UpdateCmOrderV1Resp) SetType

func (o *UpdateCmOrderV1Resp) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*UpdateCmOrderV1Resp) SetUpdateTime

func (o *UpdateCmOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (UpdateCmOrderV1Resp) ToMap

func (o UpdateCmOrderV1Resp) ToMap() (map[string]interface{}, error)

type UpdateUmOrderV1Resp

type UpdateUmOrderV1Resp struct {
	AvgPrice                *string `json:"avgPrice,omitempty"`
	ClientOrderId           *string `json:"clientOrderId,omitempty"`
	CumQty                  *string `json:"cumQty,omitempty"`
	CumQuote                *string `json:"cumQuote,omitempty"`
	ExecutedQty             *string `json:"executedQty,omitempty"`
	GoodTillDate            *int64  `json:"goodTillDate,omitempty"`
	OrderId                 *int64  `json:"orderId,omitempty"`
	OrigQty                 *string `json:"origQty,omitempty"`
	OrigType                *string `json:"origType,omitempty"`
	PositionSide            *string `json:"positionSide,omitempty"`
	Price                   *string `json:"price,omitempty"`
	PriceMatch              *string `json:"priceMatch,omitempty"`
	ReduceOnly              *bool   `json:"reduceOnly,omitempty"`
	SelfTradePreventionMode *string `json:"selfTradePreventionMode,omitempty"`
	Side                    *string `json:"side,omitempty"`
	Status                  *string `json:"status,omitempty"`
	Symbol                  *string `json:"symbol,omitempty"`
	TimeInForce             *string `json:"timeInForce,omitempty"`
	Type                    *string `json:"type,omitempty"`
	UpdateTime              *int64  `json:"updateTime,omitempty"`
}

UpdateUmOrderV1Resp struct for UpdateUmOrderV1Resp

func NewUpdateUmOrderV1Resp

func NewUpdateUmOrderV1Resp() *UpdateUmOrderV1Resp

NewUpdateUmOrderV1Resp instantiates a new UpdateUmOrderV1Resp 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 NewUpdateUmOrderV1RespWithDefaults

func NewUpdateUmOrderV1RespWithDefaults() *UpdateUmOrderV1Resp

NewUpdateUmOrderV1RespWithDefaults instantiates a new UpdateUmOrderV1Resp 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 (*UpdateUmOrderV1Resp) GetAvgPrice

func (o *UpdateUmOrderV1Resp) GetAvgPrice() string

GetAvgPrice returns the AvgPrice field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetAvgPriceOk

func (o *UpdateUmOrderV1Resp) GetAvgPriceOk() (*string, bool)

GetAvgPriceOk returns a tuple with the AvgPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetClientOrderId

func (o *UpdateUmOrderV1Resp) GetClientOrderId() string

GetClientOrderId returns the ClientOrderId field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetClientOrderIdOk

func (o *UpdateUmOrderV1Resp) GetClientOrderIdOk() (*string, bool)

GetClientOrderIdOk returns a tuple with the ClientOrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetCumQty

func (o *UpdateUmOrderV1Resp) GetCumQty() string

GetCumQty returns the CumQty field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetCumQtyOk

func (o *UpdateUmOrderV1Resp) GetCumQtyOk() (*string, bool)

GetCumQtyOk returns a tuple with the CumQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetCumQuote

func (o *UpdateUmOrderV1Resp) GetCumQuote() string

GetCumQuote returns the CumQuote field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetCumQuoteOk

func (o *UpdateUmOrderV1Resp) GetCumQuoteOk() (*string, bool)

GetCumQuoteOk returns a tuple with the CumQuote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetExecutedQty

func (o *UpdateUmOrderV1Resp) GetExecutedQty() string

GetExecutedQty returns the ExecutedQty field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetExecutedQtyOk

func (o *UpdateUmOrderV1Resp) GetExecutedQtyOk() (*string, bool)

GetExecutedQtyOk returns a tuple with the ExecutedQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetGoodTillDate

func (o *UpdateUmOrderV1Resp) GetGoodTillDate() int64

GetGoodTillDate returns the GoodTillDate field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetGoodTillDateOk

func (o *UpdateUmOrderV1Resp) GetGoodTillDateOk() (*int64, bool)

GetGoodTillDateOk returns a tuple with the GoodTillDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetOrderId

func (o *UpdateUmOrderV1Resp) GetOrderId() int64

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetOrderIdOk

func (o *UpdateUmOrderV1Resp) GetOrderIdOk() (*int64, bool)

GetOrderIdOk returns a tuple with the OrderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetOrigQty

func (o *UpdateUmOrderV1Resp) GetOrigQty() string

GetOrigQty returns the OrigQty field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetOrigQtyOk

func (o *UpdateUmOrderV1Resp) GetOrigQtyOk() (*string, bool)

GetOrigQtyOk returns a tuple with the OrigQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetOrigType

func (o *UpdateUmOrderV1Resp) GetOrigType() string

GetOrigType returns the OrigType field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetOrigTypeOk

func (o *UpdateUmOrderV1Resp) GetOrigTypeOk() (*string, bool)

GetOrigTypeOk returns a tuple with the OrigType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetPositionSide

func (o *UpdateUmOrderV1Resp) GetPositionSide() string

GetPositionSide returns the PositionSide field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetPositionSideOk

func (o *UpdateUmOrderV1Resp) GetPositionSideOk() (*string, bool)

GetPositionSideOk returns a tuple with the PositionSide field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetPrice

func (o *UpdateUmOrderV1Resp) GetPrice() string

GetPrice returns the Price field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetPriceMatch

func (o *UpdateUmOrderV1Resp) GetPriceMatch() string

GetPriceMatch returns the PriceMatch field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetPriceMatchOk

func (o *UpdateUmOrderV1Resp) GetPriceMatchOk() (*string, bool)

GetPriceMatchOk returns a tuple with the PriceMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetPriceOk

func (o *UpdateUmOrderV1Resp) GetPriceOk() (*string, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetReduceOnly

func (o *UpdateUmOrderV1Resp) GetReduceOnly() bool

GetReduceOnly returns the ReduceOnly field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetReduceOnlyOk

func (o *UpdateUmOrderV1Resp) GetReduceOnlyOk() (*bool, bool)

GetReduceOnlyOk returns a tuple with the ReduceOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetSelfTradePreventionMode

func (o *UpdateUmOrderV1Resp) GetSelfTradePreventionMode() string

GetSelfTradePreventionMode returns the SelfTradePreventionMode field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetSelfTradePreventionModeOk

func (o *UpdateUmOrderV1Resp) GetSelfTradePreventionModeOk() (*string, bool)

GetSelfTradePreventionModeOk returns a tuple with the SelfTradePreventionMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetSide

func (o *UpdateUmOrderV1Resp) GetSide() string

GetSide returns the Side field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetSideOk

func (o *UpdateUmOrderV1Resp) GetSideOk() (*string, bool)

GetSideOk returns a tuple with the Side field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetStatus

func (o *UpdateUmOrderV1Resp) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetStatusOk

func (o *UpdateUmOrderV1Resp) 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 (*UpdateUmOrderV1Resp) GetSymbol

func (o *UpdateUmOrderV1Resp) GetSymbol() string

GetSymbol returns the Symbol field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetSymbolOk

func (o *UpdateUmOrderV1Resp) 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 (*UpdateUmOrderV1Resp) GetTimeInForce

func (o *UpdateUmOrderV1Resp) GetTimeInForce() string

GetTimeInForce returns the TimeInForce field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetTimeInForceOk

func (o *UpdateUmOrderV1Resp) GetTimeInForceOk() (*string, bool)

GetTimeInForceOk returns a tuple with the TimeInForce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) GetType

func (o *UpdateUmOrderV1Resp) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetTypeOk

func (o *UpdateUmOrderV1Resp) 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 (*UpdateUmOrderV1Resp) GetUpdateTime

func (o *UpdateUmOrderV1Resp) GetUpdateTime() int64

GetUpdateTime returns the UpdateTime field value if set, zero value otherwise.

func (*UpdateUmOrderV1Resp) GetUpdateTimeOk

func (o *UpdateUmOrderV1Resp) GetUpdateTimeOk() (*int64, bool)

GetUpdateTimeOk returns a tuple with the UpdateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUmOrderV1Resp) HasAvgPrice

func (o *UpdateUmOrderV1Resp) HasAvgPrice() bool

HasAvgPrice returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasClientOrderId

func (o *UpdateUmOrderV1Resp) HasClientOrderId() bool

HasClientOrderId returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasCumQty

func (o *UpdateUmOrderV1Resp) HasCumQty() bool

HasCumQty returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasCumQuote

func (o *UpdateUmOrderV1Resp) HasCumQuote() bool

HasCumQuote returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasExecutedQty

func (o *UpdateUmOrderV1Resp) HasExecutedQty() bool

HasExecutedQty returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasGoodTillDate

func (o *UpdateUmOrderV1Resp) HasGoodTillDate() bool

HasGoodTillDate returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasOrderId

func (o *UpdateUmOrderV1Resp) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasOrigQty

func (o *UpdateUmOrderV1Resp) HasOrigQty() bool

HasOrigQty returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasOrigType

func (o *UpdateUmOrderV1Resp) HasOrigType() bool

HasOrigType returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasPositionSide

func (o *UpdateUmOrderV1Resp) HasPositionSide() bool

HasPositionSide returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasPrice

func (o *UpdateUmOrderV1Resp) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasPriceMatch

func (o *UpdateUmOrderV1Resp) HasPriceMatch() bool

HasPriceMatch returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasReduceOnly

func (o *UpdateUmOrderV1Resp) HasReduceOnly() bool

HasReduceOnly returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasSelfTradePreventionMode

func (o *UpdateUmOrderV1Resp) HasSelfTradePreventionMode() bool

HasSelfTradePreventionMode returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasSide

func (o *UpdateUmOrderV1Resp) HasSide() bool

HasSide returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasStatus

func (o *UpdateUmOrderV1Resp) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasSymbol

func (o *UpdateUmOrderV1Resp) HasSymbol() bool

HasSymbol returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasTimeInForce

func (o *UpdateUmOrderV1Resp) HasTimeInForce() bool

HasTimeInForce returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasType

func (o *UpdateUmOrderV1Resp) HasType() bool

HasType returns a boolean if a field has been set.

func (*UpdateUmOrderV1Resp) HasUpdateTime

func (o *UpdateUmOrderV1Resp) HasUpdateTime() bool

HasUpdateTime returns a boolean if a field has been set.

func (UpdateUmOrderV1Resp) MarshalJSON

func (o UpdateUmOrderV1Resp) MarshalJSON() ([]byte, error)

func (*UpdateUmOrderV1Resp) SetAvgPrice

func (o *UpdateUmOrderV1Resp) SetAvgPrice(v string)

SetAvgPrice gets a reference to the given string and assigns it to the AvgPrice field.

func (*UpdateUmOrderV1Resp) SetClientOrderId

func (o *UpdateUmOrderV1Resp) SetClientOrderId(v string)

SetClientOrderId gets a reference to the given string and assigns it to the ClientOrderId field.

func (*UpdateUmOrderV1Resp) SetCumQty

func (o *UpdateUmOrderV1Resp) SetCumQty(v string)

SetCumQty gets a reference to the given string and assigns it to the CumQty field.

func (*UpdateUmOrderV1Resp) SetCumQuote

func (o *UpdateUmOrderV1Resp) SetCumQuote(v string)

SetCumQuote gets a reference to the given string and assigns it to the CumQuote field.

func (*UpdateUmOrderV1Resp) SetExecutedQty

func (o *UpdateUmOrderV1Resp) SetExecutedQty(v string)

SetExecutedQty gets a reference to the given string and assigns it to the ExecutedQty field.

func (*UpdateUmOrderV1Resp) SetGoodTillDate

func (o *UpdateUmOrderV1Resp) SetGoodTillDate(v int64)

SetGoodTillDate gets a reference to the given int64 and assigns it to the GoodTillDate field.

func (*UpdateUmOrderV1Resp) SetOrderId

func (o *UpdateUmOrderV1Resp) SetOrderId(v int64)

SetOrderId gets a reference to the given int64 and assigns it to the OrderId field.

func (*UpdateUmOrderV1Resp) SetOrigQty

func (o *UpdateUmOrderV1Resp) SetOrigQty(v string)

SetOrigQty gets a reference to the given string and assigns it to the OrigQty field.

func (*UpdateUmOrderV1Resp) SetOrigType

func (o *UpdateUmOrderV1Resp) SetOrigType(v string)

SetOrigType gets a reference to the given string and assigns it to the OrigType field.

func (*UpdateUmOrderV1Resp) SetPositionSide

func (o *UpdateUmOrderV1Resp) SetPositionSide(v string)

SetPositionSide gets a reference to the given string and assigns it to the PositionSide field.

func (*UpdateUmOrderV1Resp) SetPrice

func (o *UpdateUmOrderV1Resp) SetPrice(v string)

SetPrice gets a reference to the given string and assigns it to the Price field.

func (*UpdateUmOrderV1Resp) SetPriceMatch

func (o *UpdateUmOrderV1Resp) SetPriceMatch(v string)

SetPriceMatch gets a reference to the given string and assigns it to the PriceMatch field.

func (*UpdateUmOrderV1Resp) SetReduceOnly

func (o *UpdateUmOrderV1Resp) SetReduceOnly(v bool)

SetReduceOnly gets a reference to the given bool and assigns it to the ReduceOnly field.

func (*UpdateUmOrderV1Resp) SetSelfTradePreventionMode

func (o *UpdateUmOrderV1Resp) SetSelfTradePreventionMode(v string)

SetSelfTradePreventionMode gets a reference to the given string and assigns it to the SelfTradePreventionMode field.

func (*UpdateUmOrderV1Resp) SetSide

func (o *UpdateUmOrderV1Resp) SetSide(v string)

SetSide gets a reference to the given string and assigns it to the Side field.

func (*UpdateUmOrderV1Resp) SetStatus

func (o *UpdateUmOrderV1Resp) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*UpdateUmOrderV1Resp) SetSymbol

func (o *UpdateUmOrderV1Resp) SetSymbol(v string)

SetSymbol gets a reference to the given string and assigns it to the Symbol field.

func (*UpdateUmOrderV1Resp) SetTimeInForce

func (o *UpdateUmOrderV1Resp) SetTimeInForce(v string)

SetTimeInForce gets a reference to the given string and assigns it to the TimeInForce field.

func (*UpdateUmOrderV1Resp) SetType

func (o *UpdateUmOrderV1Resp) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*UpdateUmOrderV1Resp) SetUpdateTime

func (o *UpdateUmOrderV1Resp) SetUpdateTime(v int64)

SetUpdateTime gets a reference to the given int64 and assigns it to the UpdateTime field.

func (UpdateUmOrderV1Resp) ToMap

func (o UpdateUmOrderV1Resp) 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