gctrpc

package
v0.0.0-...-f1ff951 Latest Latest
Warning

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

Go to latest
Published: May 3, 2024 License: MIT Imports: 17 Imported by: 11

README

GoCryptoTrader gRPC Service

Build Status Software License GoDoc Coverage Status Go Report Card

A cryptocurrency trading bot supporting multiple exchanges written in Golang.

Please note that this bot is under development and is not ready for production!

Community

Join our slack to discuss all things related to GoCryptoTrader! GoCryptoTrader Slack

Background

GoCryptoTrader utilises gRPC for client/server interaction. Authentication is done by a self signed TLS cert, which only supports connections from localhost and also through basic authorisation specified by the users config file.

GoCryptoTrader also supports a gRPC JSON proxy service for applications which can be toggled on or off depending on the users preference.

Installation

GoCryptoTrader requires a local installation of the Google protocol buffers compiler protoc v3.0.0 or above. Please install this via your local package manager or by downloading one of the releases from the official repository:

protoc releases

Then use go install to download the following packages:

go install \
    github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway \
    github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2 \
    google.golang.org/protobuf/cmd/protoc-gen-go \
    google.golang.org/grpc/cmd/protoc-gen-go-grpc

This will place the following binaries in your $GOBIN;

  • protoc-gen-grpc-gateway
  • protoc-gen-openapiv2
  • protoc-gen-go
  • protoc-gen-go-grpc

Make sure that your $GOBIN is in your $PATH.

Linux / macOS / Windows

GoCryptoTrader requires a local installation of the buf cli tool that tries to make Protobuf handling more easier and reliable, after installation you'll need to run:

buf mod update

After previous command, make necessary changes to the rpc.proto spec file and run the generation command:

buf generate

If any changes were made, ensure that the rpc.proto file is formatted correctly by using buf format -w

Documentation

Overview

Package gctrpc is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	GoCryptoTraderService_GetInfo_FullMethodName                           = "/gctrpc.GoCryptoTraderService/GetInfo"
	GoCryptoTraderService_GetSubsystems_FullMethodName                     = "/gctrpc.GoCryptoTraderService/GetSubsystems"
	GoCryptoTraderService_EnableSubsystem_FullMethodName                   = "/gctrpc.GoCryptoTraderService/EnableSubsystem"
	GoCryptoTraderService_DisableSubsystem_FullMethodName                  = "/gctrpc.GoCryptoTraderService/DisableSubsystem"
	GoCryptoTraderService_GetRPCEndpoints_FullMethodName                   = "/gctrpc.GoCryptoTraderService/GetRPCEndpoints"
	GoCryptoTraderService_GetCommunicationRelayers_FullMethodName          = "/gctrpc.GoCryptoTraderService/GetCommunicationRelayers"
	GoCryptoTraderService_GetExchanges_FullMethodName                      = "/gctrpc.GoCryptoTraderService/GetExchanges"
	GoCryptoTraderService_DisableExchange_FullMethodName                   = "/gctrpc.GoCryptoTraderService/DisableExchange"
	GoCryptoTraderService_GetExchangeInfo_FullMethodName                   = "/gctrpc.GoCryptoTraderService/GetExchangeInfo"
	GoCryptoTraderService_GetExchangeOTPCode_FullMethodName                = "/gctrpc.GoCryptoTraderService/GetExchangeOTPCode"
	GoCryptoTraderService_GetExchangeOTPCodes_FullMethodName               = "/gctrpc.GoCryptoTraderService/GetExchangeOTPCodes"
	GoCryptoTraderService_EnableExchange_FullMethodName                    = "/gctrpc.GoCryptoTraderService/EnableExchange"
	GoCryptoTraderService_GetTicker_FullMethodName                         = "/gctrpc.GoCryptoTraderService/GetTicker"
	GoCryptoTraderService_GetTickers_FullMethodName                        = "/gctrpc.GoCryptoTraderService/GetTickers"
	GoCryptoTraderService_GetOrderbook_FullMethodName                      = "/gctrpc.GoCryptoTraderService/GetOrderbook"
	GoCryptoTraderService_GetOrderbooks_FullMethodName                     = "/gctrpc.GoCryptoTraderService/GetOrderbooks"
	GoCryptoTraderService_GetAccountInfo_FullMethodName                    = "/gctrpc.GoCryptoTraderService/GetAccountInfo"
	GoCryptoTraderService_UpdateAccountInfo_FullMethodName                 = "/gctrpc.GoCryptoTraderService/UpdateAccountInfo"
	GoCryptoTraderService_GetAccountInfoStream_FullMethodName              = "/gctrpc.GoCryptoTraderService/GetAccountInfoStream"
	GoCryptoTraderService_GetConfig_FullMethodName                         = "/gctrpc.GoCryptoTraderService/GetConfig"
	GoCryptoTraderService_GetPortfolio_FullMethodName                      = "/gctrpc.GoCryptoTraderService/GetPortfolio"
	GoCryptoTraderService_GetPortfolioSummary_FullMethodName               = "/gctrpc.GoCryptoTraderService/GetPortfolioSummary"
	GoCryptoTraderService_AddPortfolioAddress_FullMethodName               = "/gctrpc.GoCryptoTraderService/AddPortfolioAddress"
	GoCryptoTraderService_RemovePortfolioAddress_FullMethodName            = "/gctrpc.GoCryptoTraderService/RemovePortfolioAddress"
	GoCryptoTraderService_GetForexProviders_FullMethodName                 = "/gctrpc.GoCryptoTraderService/GetForexProviders"
	GoCryptoTraderService_GetForexRates_FullMethodName                     = "/gctrpc.GoCryptoTraderService/GetForexRates"
	GoCryptoTraderService_GetOrders_FullMethodName                         = "/gctrpc.GoCryptoTraderService/GetOrders"
	GoCryptoTraderService_GetOrder_FullMethodName                          = "/gctrpc.GoCryptoTraderService/GetOrder"
	GoCryptoTraderService_SubmitOrder_FullMethodName                       = "/gctrpc.GoCryptoTraderService/SubmitOrder"
	GoCryptoTraderService_SimulateOrder_FullMethodName                     = "/gctrpc.GoCryptoTraderService/SimulateOrder"
	GoCryptoTraderService_WhaleBomb_FullMethodName                         = "/gctrpc.GoCryptoTraderService/WhaleBomb"
	GoCryptoTraderService_CancelOrder_FullMethodName                       = "/gctrpc.GoCryptoTraderService/CancelOrder"
	GoCryptoTraderService_CancelBatchOrders_FullMethodName                 = "/gctrpc.GoCryptoTraderService/CancelBatchOrders"
	GoCryptoTraderService_CancelAllOrders_FullMethodName                   = "/gctrpc.GoCryptoTraderService/CancelAllOrders"
	GoCryptoTraderService_GetEvents_FullMethodName                         = "/gctrpc.GoCryptoTraderService/GetEvents"
	GoCryptoTraderService_AddEvent_FullMethodName                          = "/gctrpc.GoCryptoTraderService/AddEvent"
	GoCryptoTraderService_RemoveEvent_FullMethodName                       = "/gctrpc.GoCryptoTraderService/RemoveEvent"
	GoCryptoTraderService_GetCryptocurrencyDepositAddresses_FullMethodName = "/gctrpc.GoCryptoTraderService/GetCryptocurrencyDepositAddresses"
	GoCryptoTraderService_GetCryptocurrencyDepositAddress_FullMethodName   = "/gctrpc.GoCryptoTraderService/GetCryptocurrencyDepositAddress"
	GoCryptoTraderService_GetAvailableTransferChains_FullMethodName        = "/gctrpc.GoCryptoTraderService/GetAvailableTransferChains"
	GoCryptoTraderService_WithdrawFiatFunds_FullMethodName                 = "/gctrpc.GoCryptoTraderService/WithdrawFiatFunds"
	GoCryptoTraderService_WithdrawCryptocurrencyFunds_FullMethodName       = "/gctrpc.GoCryptoTraderService/WithdrawCryptocurrencyFunds"
	GoCryptoTraderService_WithdrawalEventByID_FullMethodName               = "/gctrpc.GoCryptoTraderService/WithdrawalEventByID"
	GoCryptoTraderService_WithdrawalEventsByExchange_FullMethodName        = "/gctrpc.GoCryptoTraderService/WithdrawalEventsByExchange"
	GoCryptoTraderService_WithdrawalEventsByDate_FullMethodName            = "/gctrpc.GoCryptoTraderService/WithdrawalEventsByDate"
	GoCryptoTraderService_GetLoggerDetails_FullMethodName                  = "/gctrpc.GoCryptoTraderService/GetLoggerDetails"
	GoCryptoTraderService_SetLoggerDetails_FullMethodName                  = "/gctrpc.GoCryptoTraderService/SetLoggerDetails"
	GoCryptoTraderService_GetExchangePairs_FullMethodName                  = "/gctrpc.GoCryptoTraderService/GetExchangePairs"
	GoCryptoTraderService_SetExchangePair_FullMethodName                   = "/gctrpc.GoCryptoTraderService/SetExchangePair"
	GoCryptoTraderService_GetOrderbookStream_FullMethodName                = "/gctrpc.GoCryptoTraderService/GetOrderbookStream"
	GoCryptoTraderService_GetExchangeOrderbookStream_FullMethodName        = "/gctrpc.GoCryptoTraderService/GetExchangeOrderbookStream"
	GoCryptoTraderService_GetTickerStream_FullMethodName                   = "/gctrpc.GoCryptoTraderService/GetTickerStream"
	GoCryptoTraderService_GetExchangeTickerStream_FullMethodName           = "/gctrpc.GoCryptoTraderService/GetExchangeTickerStream"
	GoCryptoTraderService_GetAuditEvent_FullMethodName                     = "/gctrpc.GoCryptoTraderService/GetAuditEvent"
	GoCryptoTraderService_GCTScriptExecute_FullMethodName                  = "/gctrpc.GoCryptoTraderService/GCTScriptExecute"
	GoCryptoTraderService_GCTScriptUpload_FullMethodName                   = "/gctrpc.GoCryptoTraderService/GCTScriptUpload"
	GoCryptoTraderService_GCTScriptReadScript_FullMethodName               = "/gctrpc.GoCryptoTraderService/GCTScriptReadScript"
	GoCryptoTraderService_GCTScriptStatus_FullMethodName                   = "/gctrpc.GoCryptoTraderService/GCTScriptStatus"
	GoCryptoTraderService_GCTScriptQuery_FullMethodName                    = "/gctrpc.GoCryptoTraderService/GCTScriptQuery"
	GoCryptoTraderService_GCTScriptStop_FullMethodName                     = "/gctrpc.GoCryptoTraderService/GCTScriptStop"
	GoCryptoTraderService_GCTScriptStopAll_FullMethodName                  = "/gctrpc.GoCryptoTraderService/GCTScriptStopAll"
	GoCryptoTraderService_GCTScriptListAll_FullMethodName                  = "/gctrpc.GoCryptoTraderService/GCTScriptListAll"
	GoCryptoTraderService_GCTScriptAutoLoadToggle_FullMethodName           = "/gctrpc.GoCryptoTraderService/GCTScriptAutoLoadToggle"
	GoCryptoTraderService_GetHistoricCandles_FullMethodName                = "/gctrpc.GoCryptoTraderService/GetHistoricCandles"
	GoCryptoTraderService_SetExchangeAsset_FullMethodName                  = "/gctrpc.GoCryptoTraderService/SetExchangeAsset"
	GoCryptoTraderService_SetAllExchangePairs_FullMethodName               = "/gctrpc.GoCryptoTraderService/SetAllExchangePairs"
	GoCryptoTraderService_UpdateExchangeSupportedPairs_FullMethodName      = "/gctrpc.GoCryptoTraderService/UpdateExchangeSupportedPairs"
	GoCryptoTraderService_GetExchangeAssets_FullMethodName                 = "/gctrpc.GoCryptoTraderService/GetExchangeAssets"
	GoCryptoTraderService_WebsocketGetInfo_FullMethodName                  = "/gctrpc.GoCryptoTraderService/WebsocketGetInfo"
	GoCryptoTraderService_WebsocketSetEnabled_FullMethodName               = "/gctrpc.GoCryptoTraderService/WebsocketSetEnabled"
	GoCryptoTraderService_WebsocketGetSubscriptions_FullMethodName         = "/gctrpc.GoCryptoTraderService/WebsocketGetSubscriptions"
	GoCryptoTraderService_WebsocketSetProxy_FullMethodName                 = "/gctrpc.GoCryptoTraderService/WebsocketSetProxy"
	GoCryptoTraderService_WebsocketSetURL_FullMethodName                   = "/gctrpc.GoCryptoTraderService/WebsocketSetURL"
	GoCryptoTraderService_GetRecentTrades_FullMethodName                   = "/gctrpc.GoCryptoTraderService/GetRecentTrades"
	GoCryptoTraderService_GetHistoricTrades_FullMethodName                 = "/gctrpc.GoCryptoTraderService/GetHistoricTrades"
	GoCryptoTraderService_GetSavedTrades_FullMethodName                    = "/gctrpc.GoCryptoTraderService/GetSavedTrades"
	GoCryptoTraderService_ConvertTradesToCandles_FullMethodName            = "/gctrpc.GoCryptoTraderService/ConvertTradesToCandles"
	GoCryptoTraderService_FindMissingSavedCandleIntervals_FullMethodName   = "/gctrpc.GoCryptoTraderService/FindMissingSavedCandleIntervals"
	GoCryptoTraderService_FindMissingSavedTradeIntervals_FullMethodName    = "/gctrpc.GoCryptoTraderService/FindMissingSavedTradeIntervals"
	GoCryptoTraderService_SetExchangeTradeProcessing_FullMethodName        = "/gctrpc.GoCryptoTraderService/SetExchangeTradeProcessing"
	GoCryptoTraderService_UpsertDataHistoryJob_FullMethodName              = "/gctrpc.GoCryptoTraderService/UpsertDataHistoryJob"
	GoCryptoTraderService_GetDataHistoryJobDetails_FullMethodName          = "/gctrpc.GoCryptoTraderService/GetDataHistoryJobDetails"
	GoCryptoTraderService_GetActiveDataHistoryJobs_FullMethodName          = "/gctrpc.GoCryptoTraderService/GetActiveDataHistoryJobs"
	GoCryptoTraderService_GetDataHistoryJobsBetween_FullMethodName         = "/gctrpc.GoCryptoTraderService/GetDataHistoryJobsBetween"
	GoCryptoTraderService_GetDataHistoryJobSummary_FullMethodName          = "/gctrpc.GoCryptoTraderService/GetDataHistoryJobSummary"
	GoCryptoTraderService_SetDataHistoryJobStatus_FullMethodName           = "/gctrpc.GoCryptoTraderService/SetDataHistoryJobStatus"
	GoCryptoTraderService_UpdateDataHistoryJobPrerequisite_FullMethodName  = "/gctrpc.GoCryptoTraderService/UpdateDataHistoryJobPrerequisite"
	GoCryptoTraderService_GetManagedOrders_FullMethodName                  = "/gctrpc.GoCryptoTraderService/GetManagedOrders"
	GoCryptoTraderService_ModifyOrder_FullMethodName                       = "/gctrpc.GoCryptoTraderService/ModifyOrder"
	GoCryptoTraderService_CurrencyStateGetAll_FullMethodName               = "/gctrpc.GoCryptoTraderService/CurrencyStateGetAll"
	GoCryptoTraderService_CurrencyStateTrading_FullMethodName              = "/gctrpc.GoCryptoTraderService/CurrencyStateTrading"
	GoCryptoTraderService_CurrencyStateDeposit_FullMethodName              = "/gctrpc.GoCryptoTraderService/CurrencyStateDeposit"
	GoCryptoTraderService_CurrencyStateWithdraw_FullMethodName             = "/gctrpc.GoCryptoTraderService/CurrencyStateWithdraw"
	GoCryptoTraderService_CurrencyStateTradingPair_FullMethodName          = "/gctrpc.GoCryptoTraderService/CurrencyStateTradingPair"
	GoCryptoTraderService_GetFuturesPositionsSummary_FullMethodName        = "/gctrpc.GoCryptoTraderService/GetFuturesPositionsSummary"
	GoCryptoTraderService_GetFuturesPositionsOrders_FullMethodName         = "/gctrpc.GoCryptoTraderService/GetFuturesPositionsOrders"
	GoCryptoTraderService_GetCollateral_FullMethodName                     = "/gctrpc.GoCryptoTraderService/GetCollateral"
	GoCryptoTraderService_Shutdown_FullMethodName                          = "/gctrpc.GoCryptoTraderService/Shutdown"
	GoCryptoTraderService_GetTechnicalAnalysis_FullMethodName              = "/gctrpc.GoCryptoTraderService/GetTechnicalAnalysis"
	GoCryptoTraderService_GetMarginRatesHistory_FullMethodName             = "/gctrpc.GoCryptoTraderService/GetMarginRatesHistory"
	GoCryptoTraderService_GetManagedPosition_FullMethodName                = "/gctrpc.GoCryptoTraderService/GetManagedPosition"
	GoCryptoTraderService_GetAllManagedPositions_FullMethodName            = "/gctrpc.GoCryptoTraderService/GetAllManagedPositions"
	GoCryptoTraderService_GetFundingRates_FullMethodName                   = "/gctrpc.GoCryptoTraderService/GetFundingRates"
	GoCryptoTraderService_GetLatestFundingRate_FullMethodName              = "/gctrpc.GoCryptoTraderService/GetLatestFundingRate"
	GoCryptoTraderService_GetOrderbookMovement_FullMethodName              = "/gctrpc.GoCryptoTraderService/GetOrderbookMovement"
	GoCryptoTraderService_GetOrderbookAmountByNominal_FullMethodName       = "/gctrpc.GoCryptoTraderService/GetOrderbookAmountByNominal"
	GoCryptoTraderService_GetOrderbookAmountByImpact_FullMethodName        = "/gctrpc.GoCryptoTraderService/GetOrderbookAmountByImpact"
	GoCryptoTraderService_GetCollateralMode_FullMethodName                 = "/gctrpc.GoCryptoTraderService/GetCollateralMode"
	GoCryptoTraderService_GetLeverage_FullMethodName                       = "/gctrpc.GoCryptoTraderService/GetLeverage"
	GoCryptoTraderService_SetCollateralMode_FullMethodName                 = "/gctrpc.GoCryptoTraderService/SetCollateralMode"
	GoCryptoTraderService_SetMarginType_FullMethodName                     = "/gctrpc.GoCryptoTraderService/SetMarginType"
	GoCryptoTraderService_SetLeverage_FullMethodName                       = "/gctrpc.GoCryptoTraderService/SetLeverage"
	GoCryptoTraderService_ChangePositionMargin_FullMethodName              = "/gctrpc.GoCryptoTraderService/ChangePositionMargin"
	GoCryptoTraderService_GetOpenInterest_FullMethodName                   = "/gctrpc.GoCryptoTraderService/GetOpenInterest"
	GoCryptoTraderService_GetCurrencyTradeURL_FullMethodName               = "/gctrpc.GoCryptoTraderService/GetCurrencyTradeURL"
)

Variables

View Source
var GoCryptoTraderService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "gctrpc.GoCryptoTraderService",
	HandlerType: (*GoCryptoTraderServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetInfo",
			Handler:    _GoCryptoTraderService_GetInfo_Handler,
		},
		{
			MethodName: "GetSubsystems",
			Handler:    _GoCryptoTraderService_GetSubsystems_Handler,
		},
		{
			MethodName: "EnableSubsystem",
			Handler:    _GoCryptoTraderService_EnableSubsystem_Handler,
		},
		{
			MethodName: "DisableSubsystem",
			Handler:    _GoCryptoTraderService_DisableSubsystem_Handler,
		},
		{
			MethodName: "GetRPCEndpoints",
			Handler:    _GoCryptoTraderService_GetRPCEndpoints_Handler,
		},
		{
			MethodName: "GetCommunicationRelayers",
			Handler:    _GoCryptoTraderService_GetCommunicationRelayers_Handler,
		},
		{
			MethodName: "GetExchanges",
			Handler:    _GoCryptoTraderService_GetExchanges_Handler,
		},
		{
			MethodName: "DisableExchange",
			Handler:    _GoCryptoTraderService_DisableExchange_Handler,
		},
		{
			MethodName: "GetExchangeInfo",
			Handler:    _GoCryptoTraderService_GetExchangeInfo_Handler,
		},
		{
			MethodName: "GetExchangeOTPCode",
			Handler:    _GoCryptoTraderService_GetExchangeOTPCode_Handler,
		},
		{
			MethodName: "GetExchangeOTPCodes",
			Handler:    _GoCryptoTraderService_GetExchangeOTPCodes_Handler,
		},
		{
			MethodName: "EnableExchange",
			Handler:    _GoCryptoTraderService_EnableExchange_Handler,
		},
		{
			MethodName: "GetTicker",
			Handler:    _GoCryptoTraderService_GetTicker_Handler,
		},
		{
			MethodName: "GetTickers",
			Handler:    _GoCryptoTraderService_GetTickers_Handler,
		},
		{
			MethodName: "GetOrderbook",
			Handler:    _GoCryptoTraderService_GetOrderbook_Handler,
		},
		{
			MethodName: "GetOrderbooks",
			Handler:    _GoCryptoTraderService_GetOrderbooks_Handler,
		},
		{
			MethodName: "GetAccountInfo",
			Handler:    _GoCryptoTraderService_GetAccountInfo_Handler,
		},
		{
			MethodName: "UpdateAccountInfo",
			Handler:    _GoCryptoTraderService_UpdateAccountInfo_Handler,
		},
		{
			MethodName: "GetConfig",
			Handler:    _GoCryptoTraderService_GetConfig_Handler,
		},
		{
			MethodName: "GetPortfolio",
			Handler:    _GoCryptoTraderService_GetPortfolio_Handler,
		},
		{
			MethodName: "GetPortfolioSummary",
			Handler:    _GoCryptoTraderService_GetPortfolioSummary_Handler,
		},
		{
			MethodName: "AddPortfolioAddress",
			Handler:    _GoCryptoTraderService_AddPortfolioAddress_Handler,
		},
		{
			MethodName: "RemovePortfolioAddress",
			Handler:    _GoCryptoTraderService_RemovePortfolioAddress_Handler,
		},
		{
			MethodName: "GetForexProviders",
			Handler:    _GoCryptoTraderService_GetForexProviders_Handler,
		},
		{
			MethodName: "GetForexRates",
			Handler:    _GoCryptoTraderService_GetForexRates_Handler,
		},
		{
			MethodName: "GetOrders",
			Handler:    _GoCryptoTraderService_GetOrders_Handler,
		},
		{
			MethodName: "GetOrder",
			Handler:    _GoCryptoTraderService_GetOrder_Handler,
		},
		{
			MethodName: "SubmitOrder",
			Handler:    _GoCryptoTraderService_SubmitOrder_Handler,
		},
		{
			MethodName: "SimulateOrder",
			Handler:    _GoCryptoTraderService_SimulateOrder_Handler,
		},
		{
			MethodName: "WhaleBomb",
			Handler:    _GoCryptoTraderService_WhaleBomb_Handler,
		},
		{
			MethodName: "CancelOrder",
			Handler:    _GoCryptoTraderService_CancelOrder_Handler,
		},
		{
			MethodName: "CancelBatchOrders",
			Handler:    _GoCryptoTraderService_CancelBatchOrders_Handler,
		},
		{
			MethodName: "CancelAllOrders",
			Handler:    _GoCryptoTraderService_CancelAllOrders_Handler,
		},
		{
			MethodName: "GetEvents",
			Handler:    _GoCryptoTraderService_GetEvents_Handler,
		},
		{
			MethodName: "AddEvent",
			Handler:    _GoCryptoTraderService_AddEvent_Handler,
		},
		{
			MethodName: "RemoveEvent",
			Handler:    _GoCryptoTraderService_RemoveEvent_Handler,
		},
		{
			MethodName: "GetCryptocurrencyDepositAddresses",
			Handler:    _GoCryptoTraderService_GetCryptocurrencyDepositAddresses_Handler,
		},
		{
			MethodName: "GetCryptocurrencyDepositAddress",
			Handler:    _GoCryptoTraderService_GetCryptocurrencyDepositAddress_Handler,
		},
		{
			MethodName: "GetAvailableTransferChains",
			Handler:    _GoCryptoTraderService_GetAvailableTransferChains_Handler,
		},
		{
			MethodName: "WithdrawFiatFunds",
			Handler:    _GoCryptoTraderService_WithdrawFiatFunds_Handler,
		},
		{
			MethodName: "WithdrawCryptocurrencyFunds",
			Handler:    _GoCryptoTraderService_WithdrawCryptocurrencyFunds_Handler,
		},
		{
			MethodName: "WithdrawalEventByID",
			Handler:    _GoCryptoTraderService_WithdrawalEventByID_Handler,
		},
		{
			MethodName: "WithdrawalEventsByExchange",
			Handler:    _GoCryptoTraderService_WithdrawalEventsByExchange_Handler,
		},
		{
			MethodName: "WithdrawalEventsByDate",
			Handler:    _GoCryptoTraderService_WithdrawalEventsByDate_Handler,
		},
		{
			MethodName: "GetLoggerDetails",
			Handler:    _GoCryptoTraderService_GetLoggerDetails_Handler,
		},
		{
			MethodName: "SetLoggerDetails",
			Handler:    _GoCryptoTraderService_SetLoggerDetails_Handler,
		},
		{
			MethodName: "GetExchangePairs",
			Handler:    _GoCryptoTraderService_GetExchangePairs_Handler,
		},
		{
			MethodName: "SetExchangePair",
			Handler:    _GoCryptoTraderService_SetExchangePair_Handler,
		},
		{
			MethodName: "GetAuditEvent",
			Handler:    _GoCryptoTraderService_GetAuditEvent_Handler,
		},
		{
			MethodName: "GCTScriptExecute",
			Handler:    _GoCryptoTraderService_GCTScriptExecute_Handler,
		},
		{
			MethodName: "GCTScriptUpload",
			Handler:    _GoCryptoTraderService_GCTScriptUpload_Handler,
		},
		{
			MethodName: "GCTScriptReadScript",
			Handler:    _GoCryptoTraderService_GCTScriptReadScript_Handler,
		},
		{
			MethodName: "GCTScriptStatus",
			Handler:    _GoCryptoTraderService_GCTScriptStatus_Handler,
		},
		{
			MethodName: "GCTScriptQuery",
			Handler:    _GoCryptoTraderService_GCTScriptQuery_Handler,
		},
		{
			MethodName: "GCTScriptStop",
			Handler:    _GoCryptoTraderService_GCTScriptStop_Handler,
		},
		{
			MethodName: "GCTScriptStopAll",
			Handler:    _GoCryptoTraderService_GCTScriptStopAll_Handler,
		},
		{
			MethodName: "GCTScriptListAll",
			Handler:    _GoCryptoTraderService_GCTScriptListAll_Handler,
		},
		{
			MethodName: "GCTScriptAutoLoadToggle",
			Handler:    _GoCryptoTraderService_GCTScriptAutoLoadToggle_Handler,
		},
		{
			MethodName: "GetHistoricCandles",
			Handler:    _GoCryptoTraderService_GetHistoricCandles_Handler,
		},
		{
			MethodName: "SetExchangeAsset",
			Handler:    _GoCryptoTraderService_SetExchangeAsset_Handler,
		},
		{
			MethodName: "SetAllExchangePairs",
			Handler:    _GoCryptoTraderService_SetAllExchangePairs_Handler,
		},
		{
			MethodName: "UpdateExchangeSupportedPairs",
			Handler:    _GoCryptoTraderService_UpdateExchangeSupportedPairs_Handler,
		},
		{
			MethodName: "GetExchangeAssets",
			Handler:    _GoCryptoTraderService_GetExchangeAssets_Handler,
		},
		{
			MethodName: "WebsocketGetInfo",
			Handler:    _GoCryptoTraderService_WebsocketGetInfo_Handler,
		},
		{
			MethodName: "WebsocketSetEnabled",
			Handler:    _GoCryptoTraderService_WebsocketSetEnabled_Handler,
		},
		{
			MethodName: "WebsocketGetSubscriptions",
			Handler:    _GoCryptoTraderService_WebsocketGetSubscriptions_Handler,
		},
		{
			MethodName: "WebsocketSetProxy",
			Handler:    _GoCryptoTraderService_WebsocketSetProxy_Handler,
		},
		{
			MethodName: "WebsocketSetURL",
			Handler:    _GoCryptoTraderService_WebsocketSetURL_Handler,
		},
		{
			MethodName: "GetRecentTrades",
			Handler:    _GoCryptoTraderService_GetRecentTrades_Handler,
		},
		{
			MethodName: "GetSavedTrades",
			Handler:    _GoCryptoTraderService_GetSavedTrades_Handler,
		},
		{
			MethodName: "ConvertTradesToCandles",
			Handler:    _GoCryptoTraderService_ConvertTradesToCandles_Handler,
		},
		{
			MethodName: "FindMissingSavedCandleIntervals",
			Handler:    _GoCryptoTraderService_FindMissingSavedCandleIntervals_Handler,
		},
		{
			MethodName: "FindMissingSavedTradeIntervals",
			Handler:    _GoCryptoTraderService_FindMissingSavedTradeIntervals_Handler,
		},
		{
			MethodName: "SetExchangeTradeProcessing",
			Handler:    _GoCryptoTraderService_SetExchangeTradeProcessing_Handler,
		},
		{
			MethodName: "UpsertDataHistoryJob",
			Handler:    _GoCryptoTraderService_UpsertDataHistoryJob_Handler,
		},
		{
			MethodName: "GetDataHistoryJobDetails",
			Handler:    _GoCryptoTraderService_GetDataHistoryJobDetails_Handler,
		},
		{
			MethodName: "GetActiveDataHistoryJobs",
			Handler:    _GoCryptoTraderService_GetActiveDataHistoryJobs_Handler,
		},
		{
			MethodName: "GetDataHistoryJobsBetween",
			Handler:    _GoCryptoTraderService_GetDataHistoryJobsBetween_Handler,
		},
		{
			MethodName: "GetDataHistoryJobSummary",
			Handler:    _GoCryptoTraderService_GetDataHistoryJobSummary_Handler,
		},
		{
			MethodName: "SetDataHistoryJobStatus",
			Handler:    _GoCryptoTraderService_SetDataHistoryJobStatus_Handler,
		},
		{
			MethodName: "UpdateDataHistoryJobPrerequisite",
			Handler:    _GoCryptoTraderService_UpdateDataHistoryJobPrerequisite_Handler,
		},
		{
			MethodName: "GetManagedOrders",
			Handler:    _GoCryptoTraderService_GetManagedOrders_Handler,
		},
		{
			MethodName: "ModifyOrder",
			Handler:    _GoCryptoTraderService_ModifyOrder_Handler,
		},
		{
			MethodName: "CurrencyStateGetAll",
			Handler:    _GoCryptoTraderService_CurrencyStateGetAll_Handler,
		},
		{
			MethodName: "CurrencyStateTrading",
			Handler:    _GoCryptoTraderService_CurrencyStateTrading_Handler,
		},
		{
			MethodName: "CurrencyStateDeposit",
			Handler:    _GoCryptoTraderService_CurrencyStateDeposit_Handler,
		},
		{
			MethodName: "CurrencyStateWithdraw",
			Handler:    _GoCryptoTraderService_CurrencyStateWithdraw_Handler,
		},
		{
			MethodName: "CurrencyStateTradingPair",
			Handler:    _GoCryptoTraderService_CurrencyStateTradingPair_Handler,
		},
		{
			MethodName: "GetFuturesPositionsSummary",
			Handler:    _GoCryptoTraderService_GetFuturesPositionsSummary_Handler,
		},
		{
			MethodName: "GetFuturesPositionsOrders",
			Handler:    _GoCryptoTraderService_GetFuturesPositionsOrders_Handler,
		},
		{
			MethodName: "GetCollateral",
			Handler:    _GoCryptoTraderService_GetCollateral_Handler,
		},
		{
			MethodName: "Shutdown",
			Handler:    _GoCryptoTraderService_Shutdown_Handler,
		},
		{
			MethodName: "GetTechnicalAnalysis",
			Handler:    _GoCryptoTraderService_GetTechnicalAnalysis_Handler,
		},
		{
			MethodName: "GetMarginRatesHistory",
			Handler:    _GoCryptoTraderService_GetMarginRatesHistory_Handler,
		},
		{
			MethodName: "GetManagedPosition",
			Handler:    _GoCryptoTraderService_GetManagedPosition_Handler,
		},
		{
			MethodName: "GetAllManagedPositions",
			Handler:    _GoCryptoTraderService_GetAllManagedPositions_Handler,
		},
		{
			MethodName: "GetFundingRates",
			Handler:    _GoCryptoTraderService_GetFundingRates_Handler,
		},
		{
			MethodName: "GetLatestFundingRate",
			Handler:    _GoCryptoTraderService_GetLatestFundingRate_Handler,
		},
		{
			MethodName: "GetOrderbookMovement",
			Handler:    _GoCryptoTraderService_GetOrderbookMovement_Handler,
		},
		{
			MethodName: "GetOrderbookAmountByNominal",
			Handler:    _GoCryptoTraderService_GetOrderbookAmountByNominal_Handler,
		},
		{
			MethodName: "GetOrderbookAmountByImpact",
			Handler:    _GoCryptoTraderService_GetOrderbookAmountByImpact_Handler,
		},
		{
			MethodName: "GetCollateralMode",
			Handler:    _GoCryptoTraderService_GetCollateralMode_Handler,
		},
		{
			MethodName: "GetLeverage",
			Handler:    _GoCryptoTraderService_GetLeverage_Handler,
		},
		{
			MethodName: "SetCollateralMode",
			Handler:    _GoCryptoTraderService_SetCollateralMode_Handler,
		},
		{
			MethodName: "SetMarginType",
			Handler:    _GoCryptoTraderService_SetMarginType_Handler,
		},
		{
			MethodName: "SetLeverage",
			Handler:    _GoCryptoTraderService_SetLeverage_Handler,
		},
		{
			MethodName: "ChangePositionMargin",
			Handler:    _GoCryptoTraderService_ChangePositionMargin_Handler,
		},
		{
			MethodName: "GetOpenInterest",
			Handler:    _GoCryptoTraderService_GetOpenInterest_Handler,
		},
		{
			MethodName: "GetCurrencyTradeURL",
			Handler:    _GoCryptoTraderService_GetCurrencyTradeURL_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "GetAccountInfoStream",
			Handler:       _GoCryptoTraderService_GetAccountInfoStream_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "GetOrderbookStream",
			Handler:       _GoCryptoTraderService_GetOrderbookStream_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "GetExchangeOrderbookStream",
			Handler:       _GoCryptoTraderService_GetExchangeOrderbookStream_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "GetTickerStream",
			Handler:       _GoCryptoTraderService_GetTickerStream_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "GetExchangeTickerStream",
			Handler:       _GoCryptoTraderService_GetExchangeTickerStream_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "GetHistoricTrades",
			Handler:       _GoCryptoTraderService_GetHistoricTrades_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "rpc.proto",
}

GoCryptoTraderService_ServiceDesc is the grpc.ServiceDesc for GoCryptoTraderService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterGoCryptoTraderServiceHandler

func RegisterGoCryptoTraderServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterGoCryptoTraderServiceHandler registers the http handlers for service GoCryptoTraderService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterGoCryptoTraderServiceHandlerClient

func RegisterGoCryptoTraderServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client GoCryptoTraderServiceClient) error

RegisterGoCryptoTraderServiceHandlerClient registers the http handlers for service GoCryptoTraderService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "GoCryptoTraderServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "GoCryptoTraderServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "GoCryptoTraderServiceClient" to call the correct interceptors.

func RegisterGoCryptoTraderServiceHandlerFromEndpoint

func RegisterGoCryptoTraderServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterGoCryptoTraderServiceHandlerFromEndpoint is same as RegisterGoCryptoTraderServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterGoCryptoTraderServiceHandlerServer

func RegisterGoCryptoTraderServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server GoCryptoTraderServiceServer) error

RegisterGoCryptoTraderServiceHandlerServer registers the http handlers for service GoCryptoTraderService to "mux". UnaryRPC :call GoCryptoTraderServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterGoCryptoTraderServiceHandlerFromEndpoint instead.

func RegisterGoCryptoTraderServiceServer

func RegisterGoCryptoTraderServiceServer(s grpc.ServiceRegistrar, srv GoCryptoTraderServiceServer)

Types

type Account

type Account struct {
	Id         string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Currencies []*AccountCurrencyInfo `protobuf:"bytes,2,rep,name=currencies,proto3" json:"currencies,omitempty"`
	// contains filtered or unexported fields
}

func (*Account) Descriptor deprecated

func (*Account) Descriptor() ([]byte, []int)

Deprecated: Use Account.ProtoReflect.Descriptor instead.

func (*Account) GetCurrencies

func (x *Account) GetCurrencies() []*AccountCurrencyInfo

func (*Account) GetId

func (x *Account) GetId() string

func (*Account) ProtoMessage

func (*Account) ProtoMessage()

func (*Account) ProtoReflect

func (x *Account) ProtoReflect() protoreflect.Message

func (*Account) Reset

func (x *Account) Reset()

func (*Account) String

func (x *Account) String() string

type AccountCurrencyInfo

type AccountCurrencyInfo struct {
	Currency          string  `protobuf:"bytes,1,opt,name=currency,proto3" json:"currency,omitempty"`
	TotalValue        float64 `protobuf:"fixed64,2,opt,name=total_value,json=totalValue,proto3" json:"total_value,omitempty"`
	Hold              float64 `protobuf:"fixed64,3,opt,name=hold,proto3" json:"hold,omitempty"`
	Free              float64 `protobuf:"fixed64,4,opt,name=free,proto3" json:"free,omitempty"`
	FreeWithoutBorrow float64 `protobuf:"fixed64,5,opt,name=free_without_borrow,json=freeWithoutBorrow,proto3" json:"free_without_borrow,omitempty"`
	Borrowed          float64 `protobuf:"fixed64,6,opt,name=borrowed,proto3" json:"borrowed,omitempty"`
	// contains filtered or unexported fields
}

func (*AccountCurrencyInfo) Descriptor deprecated

func (*AccountCurrencyInfo) Descriptor() ([]byte, []int)

Deprecated: Use AccountCurrencyInfo.ProtoReflect.Descriptor instead.

func (*AccountCurrencyInfo) GetBorrowed

func (x *AccountCurrencyInfo) GetBorrowed() float64

func (*AccountCurrencyInfo) GetCurrency

func (x *AccountCurrencyInfo) GetCurrency() string

func (*AccountCurrencyInfo) GetFree

func (x *AccountCurrencyInfo) GetFree() float64

func (*AccountCurrencyInfo) GetFreeWithoutBorrow

func (x *AccountCurrencyInfo) GetFreeWithoutBorrow() float64

func (*AccountCurrencyInfo) GetHold

func (x *AccountCurrencyInfo) GetHold() float64

func (*AccountCurrencyInfo) GetTotalValue

func (x *AccountCurrencyInfo) GetTotalValue() float64

func (*AccountCurrencyInfo) ProtoMessage

func (*AccountCurrencyInfo) ProtoMessage()

func (*AccountCurrencyInfo) ProtoReflect

func (x *AccountCurrencyInfo) ProtoReflect() protoreflect.Message

func (*AccountCurrencyInfo) Reset

func (x *AccountCurrencyInfo) Reset()

func (*AccountCurrencyInfo) String

func (x *AccountCurrencyInfo) String() string

type AddEventRequest

type AddEventRequest struct {
	Exchange        string           `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Item            string           `protobuf:"bytes,2,opt,name=item,proto3" json:"item,omitempty"`
	ConditionParams *ConditionParams `protobuf:"bytes,3,opt,name=condition_params,json=conditionParams,proto3" json:"condition_params,omitempty"`
	Pair            *CurrencyPair    `protobuf:"bytes,4,opt,name=pair,proto3" json:"pair,omitempty"`
	AssetType       string           `protobuf:"bytes,5,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	Action          string           `protobuf:"bytes,6,opt,name=action,proto3" json:"action,omitempty"`
	// contains filtered or unexported fields
}

func (*AddEventRequest) Descriptor deprecated

func (*AddEventRequest) Descriptor() ([]byte, []int)

Deprecated: Use AddEventRequest.ProtoReflect.Descriptor instead.

func (*AddEventRequest) GetAction

func (x *AddEventRequest) GetAction() string

func (*AddEventRequest) GetAssetType

func (x *AddEventRequest) GetAssetType() string

func (*AddEventRequest) GetConditionParams

func (x *AddEventRequest) GetConditionParams() *ConditionParams

func (*AddEventRequest) GetExchange

func (x *AddEventRequest) GetExchange() string

func (*AddEventRequest) GetItem

func (x *AddEventRequest) GetItem() string

func (*AddEventRequest) GetPair

func (x *AddEventRequest) GetPair() *CurrencyPair

func (*AddEventRequest) ProtoMessage

func (*AddEventRequest) ProtoMessage()

func (*AddEventRequest) ProtoReflect

func (x *AddEventRequest) ProtoReflect() protoreflect.Message

func (*AddEventRequest) Reset

func (x *AddEventRequest) Reset()

func (*AddEventRequest) String

func (x *AddEventRequest) String() string

type AddEventResponse

type AddEventResponse struct {
	Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*AddEventResponse) Descriptor deprecated

func (*AddEventResponse) Descriptor() ([]byte, []int)

Deprecated: Use AddEventResponse.ProtoReflect.Descriptor instead.

func (*AddEventResponse) GetId

func (x *AddEventResponse) GetId() int64

func (*AddEventResponse) ProtoMessage

func (*AddEventResponse) ProtoMessage()

func (*AddEventResponse) ProtoReflect

func (x *AddEventResponse) ProtoReflect() protoreflect.Message

func (*AddEventResponse) Reset

func (x *AddEventResponse) Reset()

func (*AddEventResponse) String

func (x *AddEventResponse) String() string

type AddPortfolioAddressRequest

type AddPortfolioAddressRequest struct {
	Address            string  `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	CoinType           string  `protobuf:"bytes,2,opt,name=coin_type,json=coinType,proto3" json:"coin_type,omitempty"`
	Description        string  `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Balance            float64 `protobuf:"fixed64,4,opt,name=balance,proto3" json:"balance,omitempty"`
	SupportedExchanges string  `protobuf:"bytes,5,opt,name=supported_exchanges,json=supportedExchanges,proto3" json:"supported_exchanges,omitempty"`
	ColdStorage        bool    `protobuf:"varint,6,opt,name=cold_storage,json=coldStorage,proto3" json:"cold_storage,omitempty"`
	// contains filtered or unexported fields
}

func (*AddPortfolioAddressRequest) Descriptor deprecated

func (*AddPortfolioAddressRequest) Descriptor() ([]byte, []int)

Deprecated: Use AddPortfolioAddressRequest.ProtoReflect.Descriptor instead.

func (*AddPortfolioAddressRequest) GetAddress

func (x *AddPortfolioAddressRequest) GetAddress() string

func (*AddPortfolioAddressRequest) GetBalance

func (x *AddPortfolioAddressRequest) GetBalance() float64

func (*AddPortfolioAddressRequest) GetCoinType

func (x *AddPortfolioAddressRequest) GetCoinType() string

func (*AddPortfolioAddressRequest) GetColdStorage

func (x *AddPortfolioAddressRequest) GetColdStorage() bool

func (*AddPortfolioAddressRequest) GetDescription

func (x *AddPortfolioAddressRequest) GetDescription() string

func (*AddPortfolioAddressRequest) GetSupportedExchanges

func (x *AddPortfolioAddressRequest) GetSupportedExchanges() string

func (*AddPortfolioAddressRequest) ProtoMessage

func (*AddPortfolioAddressRequest) ProtoMessage()

func (*AddPortfolioAddressRequest) ProtoReflect

func (*AddPortfolioAddressRequest) Reset

func (x *AddPortfolioAddressRequest) Reset()

func (*AddPortfolioAddressRequest) String

func (x *AddPortfolioAddressRequest) String() string

type AuditEvent

type AuditEvent struct {
	Type       string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Identifier string `protobuf:"bytes,2,opt,name=identifier,proto3" json:"identifier,omitempty"`
	Message    string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Timestamp  string `protobuf:"bytes,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*AuditEvent) Descriptor deprecated

func (*AuditEvent) Descriptor() ([]byte, []int)

Deprecated: Use AuditEvent.ProtoReflect.Descriptor instead.

func (*AuditEvent) GetIdentifier

func (x *AuditEvent) GetIdentifier() string

func (*AuditEvent) GetMessage

func (x *AuditEvent) GetMessage() string

func (*AuditEvent) GetTimestamp

func (x *AuditEvent) GetTimestamp() string

func (*AuditEvent) GetType

func (x *AuditEvent) GetType() string

func (*AuditEvent) ProtoMessage

func (*AuditEvent) ProtoMessage()

func (*AuditEvent) ProtoReflect

func (x *AuditEvent) ProtoReflect() protoreflect.Message

func (*AuditEvent) Reset

func (x *AuditEvent) Reset()

func (*AuditEvent) String

func (x *AuditEvent) String() string

type BorrowCost

type BorrowCost struct {
	Cost string `protobuf:"bytes,1,opt,name=cost,proto3" json:"cost,omitempty"`
	Size string `protobuf:"bytes,2,opt,name=size,proto3" json:"size,omitempty"`
	// contains filtered or unexported fields
}

func (*BorrowCost) Descriptor deprecated

func (*BorrowCost) Descriptor() ([]byte, []int)

Deprecated: Use BorrowCost.ProtoReflect.Descriptor instead.

func (*BorrowCost) GetCost

func (x *BorrowCost) GetCost() string

func (*BorrowCost) GetSize

func (x *BorrowCost) GetSize() string

func (*BorrowCost) ProtoMessage

func (*BorrowCost) ProtoMessage()

func (*BorrowCost) ProtoReflect

func (x *BorrowCost) ProtoReflect() protoreflect.Message

func (*BorrowCost) Reset

func (x *BorrowCost) Reset()

func (*BorrowCost) String

func (x *BorrowCost) String() string

type CancelAllOrdersRequest

type CancelAllOrdersRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	// contains filtered or unexported fields
}

func (*CancelAllOrdersRequest) Descriptor deprecated

func (*CancelAllOrdersRequest) Descriptor() ([]byte, []int)

Deprecated: Use CancelAllOrdersRequest.ProtoReflect.Descriptor instead.

func (*CancelAllOrdersRequest) GetExchange

func (x *CancelAllOrdersRequest) GetExchange() string

func (*CancelAllOrdersRequest) ProtoMessage

func (*CancelAllOrdersRequest) ProtoMessage()

func (*CancelAllOrdersRequest) ProtoReflect

func (x *CancelAllOrdersRequest) ProtoReflect() protoreflect.Message

func (*CancelAllOrdersRequest) Reset

func (x *CancelAllOrdersRequest) Reset()

func (*CancelAllOrdersRequest) String

func (x *CancelAllOrdersRequest) String() string

type CancelAllOrdersResponse

type CancelAllOrdersResponse struct {
	Orders []*Orders `protobuf:"bytes,1,rep,name=orders,proto3" json:"orders,omitempty"`
	Count  int64     `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	// contains filtered or unexported fields
}

func (*CancelAllOrdersResponse) Descriptor deprecated

func (*CancelAllOrdersResponse) Descriptor() ([]byte, []int)

Deprecated: Use CancelAllOrdersResponse.ProtoReflect.Descriptor instead.

func (*CancelAllOrdersResponse) GetCount

func (x *CancelAllOrdersResponse) GetCount() int64

func (*CancelAllOrdersResponse) GetOrders

func (x *CancelAllOrdersResponse) GetOrders() []*Orders

func (*CancelAllOrdersResponse) ProtoMessage

func (*CancelAllOrdersResponse) ProtoMessage()

func (*CancelAllOrdersResponse) ProtoReflect

func (x *CancelAllOrdersResponse) ProtoReflect() protoreflect.Message

func (*CancelAllOrdersResponse) Reset

func (x *CancelAllOrdersResponse) Reset()

func (*CancelAllOrdersResponse) String

func (x *CancelAllOrdersResponse) String() string

type CancelBatchOrdersRequest

type CancelBatchOrdersRequest struct {
	Exchange      string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	AccountId     string        `protobuf:"bytes,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	OrdersId      string        `protobuf:"bytes,3,opt,name=orders_id,json=ordersId,proto3" json:"orders_id,omitempty"`
	Pair          *CurrencyPair `protobuf:"bytes,4,opt,name=pair,proto3" json:"pair,omitempty"`
	AssetType     string        `protobuf:"bytes,5,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	WalletAddress string        `protobuf:"bytes,6,opt,name=wallet_address,json=walletAddress,proto3" json:"wallet_address,omitempty"`
	Side          string        `protobuf:"bytes,7,opt,name=side,proto3" json:"side,omitempty"`
	// contains filtered or unexported fields
}

func (*CancelBatchOrdersRequest) Descriptor deprecated

func (*CancelBatchOrdersRequest) Descriptor() ([]byte, []int)

Deprecated: Use CancelBatchOrdersRequest.ProtoReflect.Descriptor instead.

func (*CancelBatchOrdersRequest) GetAccountId

func (x *CancelBatchOrdersRequest) GetAccountId() string

func (*CancelBatchOrdersRequest) GetAssetType

func (x *CancelBatchOrdersRequest) GetAssetType() string

func (*CancelBatchOrdersRequest) GetExchange

func (x *CancelBatchOrdersRequest) GetExchange() string

func (*CancelBatchOrdersRequest) GetOrdersId

func (x *CancelBatchOrdersRequest) GetOrdersId() string

func (*CancelBatchOrdersRequest) GetPair

func (x *CancelBatchOrdersRequest) GetPair() *CurrencyPair

func (*CancelBatchOrdersRequest) GetSide

func (x *CancelBatchOrdersRequest) GetSide() string

func (*CancelBatchOrdersRequest) GetWalletAddress

func (x *CancelBatchOrdersRequest) GetWalletAddress() string

func (*CancelBatchOrdersRequest) ProtoMessage

func (*CancelBatchOrdersRequest) ProtoMessage()

func (*CancelBatchOrdersRequest) ProtoReflect

func (x *CancelBatchOrdersRequest) ProtoReflect() protoreflect.Message

func (*CancelBatchOrdersRequest) Reset

func (x *CancelBatchOrdersRequest) Reset()

func (*CancelBatchOrdersRequest) String

func (x *CancelBatchOrdersRequest) String() string

type CancelBatchOrdersResponse

type CancelBatchOrdersResponse struct {
	Orders []*Orders `protobuf:"bytes,1,rep,name=orders,proto3" json:"orders,omitempty"`
	// contains filtered or unexported fields
}

func (*CancelBatchOrdersResponse) Descriptor deprecated

func (*CancelBatchOrdersResponse) Descriptor() ([]byte, []int)

Deprecated: Use CancelBatchOrdersResponse.ProtoReflect.Descriptor instead.

func (*CancelBatchOrdersResponse) GetOrders

func (x *CancelBatchOrdersResponse) GetOrders() []*Orders

func (*CancelBatchOrdersResponse) ProtoMessage

func (*CancelBatchOrdersResponse) ProtoMessage()

func (*CancelBatchOrdersResponse) ProtoReflect

func (*CancelBatchOrdersResponse) Reset

func (x *CancelBatchOrdersResponse) Reset()

func (*CancelBatchOrdersResponse) String

func (x *CancelBatchOrdersResponse) String() string

type CancelOrderRequest

type CancelOrderRequest struct {
	Exchange      string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	AccountId     string        `protobuf:"bytes,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	OrderId       string        `protobuf:"bytes,3,opt,name=order_id,json=orderId,proto3" json:"order_id,omitempty"`
	Pair          *CurrencyPair `protobuf:"bytes,4,opt,name=pair,proto3" json:"pair,omitempty"`
	AssetType     string        `protobuf:"bytes,5,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	WalletAddress string        `protobuf:"bytes,6,opt,name=wallet_address,json=walletAddress,proto3" json:"wallet_address,omitempty"`
	Side          string        `protobuf:"bytes,7,opt,name=side,proto3" json:"side,omitempty"`
	// contains filtered or unexported fields
}

func (*CancelOrderRequest) Descriptor deprecated

func (*CancelOrderRequest) Descriptor() ([]byte, []int)

Deprecated: Use CancelOrderRequest.ProtoReflect.Descriptor instead.

func (*CancelOrderRequest) GetAccountId

func (x *CancelOrderRequest) GetAccountId() string

func (*CancelOrderRequest) GetAssetType

func (x *CancelOrderRequest) GetAssetType() string

func (*CancelOrderRequest) GetExchange

func (x *CancelOrderRequest) GetExchange() string

func (*CancelOrderRequest) GetOrderId

func (x *CancelOrderRequest) GetOrderId() string

func (*CancelOrderRequest) GetPair

func (x *CancelOrderRequest) GetPair() *CurrencyPair

func (*CancelOrderRequest) GetSide

func (x *CancelOrderRequest) GetSide() string

func (*CancelOrderRequest) GetWalletAddress

func (x *CancelOrderRequest) GetWalletAddress() string

func (*CancelOrderRequest) ProtoMessage

func (*CancelOrderRequest) ProtoMessage()

func (*CancelOrderRequest) ProtoReflect

func (x *CancelOrderRequest) ProtoReflect() protoreflect.Message

func (*CancelOrderRequest) Reset

func (x *CancelOrderRequest) Reset()

func (*CancelOrderRequest) String

func (x *CancelOrderRequest) String() string

type Candle

type Candle struct {
	Time      string  `protobuf:"bytes,1,opt,name=time,proto3" json:"time,omitempty"`
	Low       float64 `protobuf:"fixed64,2,opt,name=low,proto3" json:"low,omitempty"`
	High      float64 `protobuf:"fixed64,3,opt,name=high,proto3" json:"high,omitempty"`
	Open      float64 `protobuf:"fixed64,4,opt,name=open,proto3" json:"open,omitempty"`
	Close     float64 `protobuf:"fixed64,5,opt,name=close,proto3" json:"close,omitempty"`
	Volume    float64 `protobuf:"fixed64,6,opt,name=volume,proto3" json:"volume,omitempty"`
	IsPartial bool    `protobuf:"varint,7,opt,name=is_partial,json=isPartial,proto3" json:"is_partial,omitempty"`
	// contains filtered or unexported fields
}

func (*Candle) Descriptor deprecated

func (*Candle) Descriptor() ([]byte, []int)

Deprecated: Use Candle.ProtoReflect.Descriptor instead.

func (*Candle) GetClose

func (x *Candle) GetClose() float64

func (*Candle) GetHigh

func (x *Candle) GetHigh() float64

func (*Candle) GetIsPartial

func (x *Candle) GetIsPartial() bool

func (*Candle) GetLow

func (x *Candle) GetLow() float64

func (*Candle) GetOpen

func (x *Candle) GetOpen() float64

func (*Candle) GetTime

func (x *Candle) GetTime() string

func (*Candle) GetVolume

func (x *Candle) GetVolume() float64

func (*Candle) ProtoMessage

func (*Candle) ProtoMessage()

func (*Candle) ProtoReflect

func (x *Candle) ProtoReflect() protoreflect.Message

func (*Candle) Reset

func (x *Candle) Reset()

func (*Candle) String

func (x *Candle) String() string

type ChangePositionMarginRequest

type ChangePositionMarginRequest struct {
	Exchange                string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset                   string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair                    *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	MarginType              string        `protobuf:"bytes,4,opt,name=margin_type,json=marginType,proto3" json:"margin_type,omitempty"`
	OriginalAllocatedMargin float64       `` /* 134-byte string literal not displayed */
	NewAllocatedMargin      float64       `protobuf:"fixed64,6,opt,name=new_allocated_margin,json=newAllocatedMargin,proto3" json:"new_allocated_margin,omitempty"`
	MarginSide              string        `protobuf:"bytes,7,opt,name=margin_side,json=marginSide,proto3" json:"margin_side,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangePositionMarginRequest) Descriptor deprecated

func (*ChangePositionMarginRequest) Descriptor() ([]byte, []int)

Deprecated: Use ChangePositionMarginRequest.ProtoReflect.Descriptor instead.

func (*ChangePositionMarginRequest) GetAsset

func (x *ChangePositionMarginRequest) GetAsset() string

func (*ChangePositionMarginRequest) GetExchange

func (x *ChangePositionMarginRequest) GetExchange() string

func (*ChangePositionMarginRequest) GetMarginSide

func (x *ChangePositionMarginRequest) GetMarginSide() string

func (*ChangePositionMarginRequest) GetMarginType

func (x *ChangePositionMarginRequest) GetMarginType() string

func (*ChangePositionMarginRequest) GetNewAllocatedMargin

func (x *ChangePositionMarginRequest) GetNewAllocatedMargin() float64

func (*ChangePositionMarginRequest) GetOriginalAllocatedMargin

func (x *ChangePositionMarginRequest) GetOriginalAllocatedMargin() float64

func (*ChangePositionMarginRequest) GetPair

func (*ChangePositionMarginRequest) ProtoMessage

func (*ChangePositionMarginRequest) ProtoMessage()

func (*ChangePositionMarginRequest) ProtoReflect

func (*ChangePositionMarginRequest) Reset

func (x *ChangePositionMarginRequest) Reset()

func (*ChangePositionMarginRequest) String

func (x *ChangePositionMarginRequest) String() string

type ChangePositionMarginResponse

type ChangePositionMarginResponse struct {
	Exchange           string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset              string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair               *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	MarginType         string        `protobuf:"bytes,4,opt,name=margin_type,json=marginType,proto3" json:"margin_type,omitempty"`
	NewAllocatedMargin float64       `protobuf:"fixed64,5,opt,name=new_allocated_margin,json=newAllocatedMargin,proto3" json:"new_allocated_margin,omitempty"`
	MarginSide         string        `protobuf:"bytes,6,opt,name=margin_side,json=marginSide,proto3" json:"margin_side,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangePositionMarginResponse) Descriptor deprecated

func (*ChangePositionMarginResponse) Descriptor() ([]byte, []int)

Deprecated: Use ChangePositionMarginResponse.ProtoReflect.Descriptor instead.

func (*ChangePositionMarginResponse) GetAsset

func (x *ChangePositionMarginResponse) GetAsset() string

func (*ChangePositionMarginResponse) GetExchange

func (x *ChangePositionMarginResponse) GetExchange() string

func (*ChangePositionMarginResponse) GetMarginSide

func (x *ChangePositionMarginResponse) GetMarginSide() string

func (*ChangePositionMarginResponse) GetMarginType

func (x *ChangePositionMarginResponse) GetMarginType() string

func (*ChangePositionMarginResponse) GetNewAllocatedMargin

func (x *ChangePositionMarginResponse) GetNewAllocatedMargin() float64

func (*ChangePositionMarginResponse) GetPair

func (*ChangePositionMarginResponse) ProtoMessage

func (*ChangePositionMarginResponse) ProtoMessage()

func (*ChangePositionMarginResponse) ProtoReflect

func (*ChangePositionMarginResponse) Reset

func (x *ChangePositionMarginResponse) Reset()

func (*ChangePositionMarginResponse) String

type Coin

type Coin struct {
	Coin       string  `protobuf:"bytes,1,opt,name=coin,proto3" json:"coin,omitempty"`
	Balance    float64 `protobuf:"fixed64,2,opt,name=balance,proto3" json:"balance,omitempty"`
	Address    string  `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
	Percentage float64 `protobuf:"fixed64,4,opt,name=percentage,proto3" json:"percentage,omitempty"`
	// contains filtered or unexported fields
}

func (*Coin) Descriptor deprecated

func (*Coin) Descriptor() ([]byte, []int)

Deprecated: Use Coin.ProtoReflect.Descriptor instead.

func (*Coin) GetAddress

func (x *Coin) GetAddress() string

func (*Coin) GetBalance

func (x *Coin) GetBalance() float64

func (*Coin) GetCoin

func (x *Coin) GetCoin() string

func (*Coin) GetPercentage

func (x *Coin) GetPercentage() float64

func (*Coin) ProtoMessage

func (*Coin) ProtoMessage()

func (*Coin) ProtoReflect

func (x *Coin) ProtoReflect() protoreflect.Message

func (*Coin) Reset

func (x *Coin) Reset()

func (*Coin) String

func (x *Coin) String() string

type CollateralByPosition

type CollateralByPosition struct {
	Currency            string `protobuf:"bytes,1,opt,name=currency,proto3" json:"currency,omitempty"`
	Size                string `protobuf:"bytes,2,opt,name=size,proto3" json:"size,omitempty"`
	OpenOrderSize       string `protobuf:"bytes,3,opt,name=open_order_size,json=openOrderSize,proto3" json:"open_order_size,omitempty"`
	PositionSize        string `protobuf:"bytes,4,opt,name=position_size,json=positionSize,proto3" json:"position_size,omitempty"`
	MarkPrice           string `protobuf:"bytes,5,opt,name=mark_price,json=markPrice,proto3" json:"mark_price,omitempty"`
	RequiredMargin      string `protobuf:"bytes,6,opt,name=required_margin,json=requiredMargin,proto3" json:"required_margin,omitempty"`
	TotalCollateralUsed string `protobuf:"bytes,7,opt,name=total_collateral_used,json=totalCollateralUsed,proto3" json:"total_collateral_used,omitempty"`
	// contains filtered or unexported fields
}

func (*CollateralByPosition) Descriptor deprecated

func (*CollateralByPosition) Descriptor() ([]byte, []int)

Deprecated: Use CollateralByPosition.ProtoReflect.Descriptor instead.

func (*CollateralByPosition) GetCurrency

func (x *CollateralByPosition) GetCurrency() string

func (*CollateralByPosition) GetMarkPrice

func (x *CollateralByPosition) GetMarkPrice() string

func (*CollateralByPosition) GetOpenOrderSize

func (x *CollateralByPosition) GetOpenOrderSize() string

func (*CollateralByPosition) GetPositionSize

func (x *CollateralByPosition) GetPositionSize() string

func (*CollateralByPosition) GetRequiredMargin

func (x *CollateralByPosition) GetRequiredMargin() string

func (*CollateralByPosition) GetSize

func (x *CollateralByPosition) GetSize() string

func (*CollateralByPosition) GetTotalCollateralUsed

func (x *CollateralByPosition) GetTotalCollateralUsed() string

func (*CollateralByPosition) ProtoMessage

func (*CollateralByPosition) ProtoMessage()

func (*CollateralByPosition) ProtoReflect

func (x *CollateralByPosition) ProtoReflect() protoreflect.Message

func (*CollateralByPosition) Reset

func (x *CollateralByPosition) Reset()

func (*CollateralByPosition) String

func (x *CollateralByPosition) String() string

type CollateralForCurrency

type CollateralForCurrency struct {
	Currency                    string                   `protobuf:"bytes,1,opt,name=currency,proto3" json:"currency,omitempty"`
	ExcludedFromCollateral      bool                     `` /* 130-byte string literal not displayed */
	TotalFunds                  string                   `protobuf:"bytes,3,opt,name=total_funds,json=totalFunds,proto3" json:"total_funds,omitempty"`
	AvailableForUseAsCollateral string                   `` /* 148-byte string literal not displayed */
	ApproxFairMarketValue       string                   `` /* 128-byte string literal not displayed */
	Weighting                   string                   `protobuf:"bytes,6,opt,name=weighting,proto3" json:"weighting,omitempty"`
	CollateralContribution      string                   `` /* 127-byte string literal not displayed */
	ScaledToCurrency            string                   `protobuf:"bytes,8,opt,name=scaled_to_currency,json=scaledToCurrency,proto3" json:"scaled_to_currency,omitempty"`
	UnrealisedPnl               string                   `protobuf:"bytes,9,opt,name=unrealised_pnl,json=unrealisedPnl,proto3" json:"unrealised_pnl,omitempty"`
	FundsInUse                  string                   `protobuf:"bytes,10,opt,name=funds_in_use,json=fundsInUse,proto3" json:"funds_in_use,omitempty"`
	AdditionalCollateralUsed    string                   `` /* 136-byte string literal not displayed */
	UsedBreakdown               *CollateralUsedBreakdown `protobuf:"bytes,12,opt,name=used_breakdown,json=usedBreakdown,proto3" json:"used_breakdown,omitempty"`
	Error                       string                   `protobuf:"bytes,13,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CollateralForCurrency) Descriptor deprecated

func (*CollateralForCurrency) Descriptor() ([]byte, []int)

Deprecated: Use CollateralForCurrency.ProtoReflect.Descriptor instead.

func (*CollateralForCurrency) GetAdditionalCollateralUsed

func (x *CollateralForCurrency) GetAdditionalCollateralUsed() string

func (*CollateralForCurrency) GetApproxFairMarketValue

func (x *CollateralForCurrency) GetApproxFairMarketValue() string

func (*CollateralForCurrency) GetAvailableForUseAsCollateral

func (x *CollateralForCurrency) GetAvailableForUseAsCollateral() string

func (*CollateralForCurrency) GetCollateralContribution

func (x *CollateralForCurrency) GetCollateralContribution() string

func (*CollateralForCurrency) GetCurrency

func (x *CollateralForCurrency) GetCurrency() string

func (*CollateralForCurrency) GetError

func (x *CollateralForCurrency) GetError() string

func (*CollateralForCurrency) GetExcludedFromCollateral

func (x *CollateralForCurrency) GetExcludedFromCollateral() bool

func (*CollateralForCurrency) GetFundsInUse

func (x *CollateralForCurrency) GetFundsInUse() string

func (*CollateralForCurrency) GetScaledToCurrency

func (x *CollateralForCurrency) GetScaledToCurrency() string

func (*CollateralForCurrency) GetTotalFunds

func (x *CollateralForCurrency) GetTotalFunds() string

func (*CollateralForCurrency) GetUnrealisedPnl

func (x *CollateralForCurrency) GetUnrealisedPnl() string

func (*CollateralForCurrency) GetUsedBreakdown

func (x *CollateralForCurrency) GetUsedBreakdown() *CollateralUsedBreakdown

func (*CollateralForCurrency) GetWeighting

func (x *CollateralForCurrency) GetWeighting() string

func (*CollateralForCurrency) ProtoMessage

func (*CollateralForCurrency) ProtoMessage()

func (*CollateralForCurrency) ProtoReflect

func (x *CollateralForCurrency) ProtoReflect() protoreflect.Message

func (*CollateralForCurrency) Reset

func (x *CollateralForCurrency) Reset()

func (*CollateralForCurrency) String

func (x *CollateralForCurrency) String() string

type CollateralUsedBreakdown

type CollateralUsedBreakdown struct {
	LockedInStakes                  string `protobuf:"bytes,1,opt,name=locked_in_stakes,json=lockedInStakes,proto3" json:"locked_in_stakes,omitempty"`
	LockedInNftBids                 string `protobuf:"bytes,2,opt,name=locked_in_nft_bids,json=lockedInNftBids,proto3" json:"locked_in_nft_bids,omitempty"`
	LockedInFeeVoucher              string `protobuf:"bytes,3,opt,name=locked_in_fee_voucher,json=lockedInFeeVoucher,proto3" json:"locked_in_fee_voucher,omitempty"`
	LockedInSpotMarginFundingOffers string `` /* 162-byte string literal not displayed */
	LockedInSpotOrders              string `protobuf:"bytes,5,opt,name=locked_in_spot_orders,json=lockedInSpotOrders,proto3" json:"locked_in_spot_orders,omitempty"`
	LockedAsCollateral              string `protobuf:"bytes,6,opt,name=locked_as_collateral,json=lockedAsCollateral,proto3" json:"locked_as_collateral,omitempty"`
	UsedInFutures                   string `protobuf:"bytes,7,opt,name=used_in_futures,json=usedInFutures,proto3" json:"used_in_futures,omitempty"`
	UsedInSpotMargin                string `protobuf:"bytes,8,opt,name=used_in_spot_margin,json=usedInSpotMargin,proto3" json:"used_in_spot_margin,omitempty"`
	// contains filtered or unexported fields
}

func (*CollateralUsedBreakdown) Descriptor deprecated

func (*CollateralUsedBreakdown) Descriptor() ([]byte, []int)

Deprecated: Use CollateralUsedBreakdown.ProtoReflect.Descriptor instead.

func (*CollateralUsedBreakdown) GetLockedAsCollateral

func (x *CollateralUsedBreakdown) GetLockedAsCollateral() string

func (*CollateralUsedBreakdown) GetLockedInFeeVoucher

func (x *CollateralUsedBreakdown) GetLockedInFeeVoucher() string

func (*CollateralUsedBreakdown) GetLockedInNftBids

func (x *CollateralUsedBreakdown) GetLockedInNftBids() string

func (*CollateralUsedBreakdown) GetLockedInSpotMarginFundingOffers

func (x *CollateralUsedBreakdown) GetLockedInSpotMarginFundingOffers() string

func (*CollateralUsedBreakdown) GetLockedInSpotOrders

func (x *CollateralUsedBreakdown) GetLockedInSpotOrders() string

func (*CollateralUsedBreakdown) GetLockedInStakes

func (x *CollateralUsedBreakdown) GetLockedInStakes() string

func (*CollateralUsedBreakdown) GetUsedInFutures

func (x *CollateralUsedBreakdown) GetUsedInFutures() string

func (*CollateralUsedBreakdown) GetUsedInSpotMargin

func (x *CollateralUsedBreakdown) GetUsedInSpotMargin() string

func (*CollateralUsedBreakdown) ProtoMessage

func (*CollateralUsedBreakdown) ProtoMessage()

func (*CollateralUsedBreakdown) ProtoReflect

func (x *CollateralUsedBreakdown) ProtoReflect() protoreflect.Message

func (*CollateralUsedBreakdown) Reset

func (x *CollateralUsedBreakdown) Reset()

func (*CollateralUsedBreakdown) String

func (x *CollateralUsedBreakdown) String() string

type CommunicationRelayer

type CommunicationRelayer struct {
	Enabled   bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	Connected bool `protobuf:"varint,2,opt,name=connected,proto3" json:"connected,omitempty"`
	// contains filtered or unexported fields
}

func (*CommunicationRelayer) Descriptor deprecated

func (*CommunicationRelayer) Descriptor() ([]byte, []int)

Deprecated: Use CommunicationRelayer.ProtoReflect.Descriptor instead.

func (*CommunicationRelayer) GetConnected

func (x *CommunicationRelayer) GetConnected() bool

func (*CommunicationRelayer) GetEnabled

func (x *CommunicationRelayer) GetEnabled() bool

func (*CommunicationRelayer) ProtoMessage

func (*CommunicationRelayer) ProtoMessage()

func (*CommunicationRelayer) ProtoReflect

func (x *CommunicationRelayer) ProtoReflect() protoreflect.Message

func (*CommunicationRelayer) Reset

func (x *CommunicationRelayer) Reset()

func (*CommunicationRelayer) String

func (x *CommunicationRelayer) String() string

type ConditionParams

type ConditionParams struct {
	Condition       string  `protobuf:"bytes,1,opt,name=condition,proto3" json:"condition,omitempty"`
	Price           float64 `protobuf:"fixed64,2,opt,name=price,proto3" json:"price,omitempty"`
	CheckBids       bool    `protobuf:"varint,3,opt,name=check_bids,json=checkBids,proto3" json:"check_bids,omitempty"`
	CheckAsks       bool    `protobuf:"varint,4,opt,name=check_asks,json=checkAsks,proto3" json:"check_asks,omitempty"`
	OrderbookAmount float64 `protobuf:"fixed64,5,opt,name=orderbook_amount,json=orderbookAmount,proto3" json:"orderbook_amount,omitempty"`
	// contains filtered or unexported fields
}

func (*ConditionParams) Descriptor deprecated

func (*ConditionParams) Descriptor() ([]byte, []int)

Deprecated: Use ConditionParams.ProtoReflect.Descriptor instead.

func (*ConditionParams) GetCheckAsks

func (x *ConditionParams) GetCheckAsks() bool

func (*ConditionParams) GetCheckBids

func (x *ConditionParams) GetCheckBids() bool

func (*ConditionParams) GetCondition

func (x *ConditionParams) GetCondition() string

func (*ConditionParams) GetOrderbookAmount

func (x *ConditionParams) GetOrderbookAmount() float64

func (*ConditionParams) GetPrice

func (x *ConditionParams) GetPrice() float64

func (*ConditionParams) ProtoMessage

func (*ConditionParams) ProtoMessage()

func (*ConditionParams) ProtoReflect

func (x *ConditionParams) ProtoReflect() protoreflect.Message

func (*ConditionParams) Reset

func (x *ConditionParams) Reset()

func (*ConditionParams) String

func (x *ConditionParams) String() string

type ConvertTradesToCandlesRequest

type ConvertTradesToCandlesRequest struct {
	Exchange     string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair         *CurrencyPair `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	AssetType    string        `protobuf:"bytes,3,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	Start        string        `protobuf:"bytes,4,opt,name=start,proto3" json:"start,omitempty"`
	End          string        `protobuf:"bytes,5,opt,name=end,proto3" json:"end,omitempty"`
	TimeInterval int64         `protobuf:"varint,6,opt,name=time_interval,json=timeInterval,proto3" json:"time_interval,omitempty"`
	Sync         bool          `protobuf:"varint,7,opt,name=sync,proto3" json:"sync,omitempty"`
	Force        bool          `protobuf:"varint,8,opt,name=force,proto3" json:"force,omitempty"`
	// contains filtered or unexported fields
}

func (*ConvertTradesToCandlesRequest) Descriptor deprecated

func (*ConvertTradesToCandlesRequest) Descriptor() ([]byte, []int)

Deprecated: Use ConvertTradesToCandlesRequest.ProtoReflect.Descriptor instead.

func (*ConvertTradesToCandlesRequest) GetAssetType

func (x *ConvertTradesToCandlesRequest) GetAssetType() string

func (*ConvertTradesToCandlesRequest) GetEnd

func (*ConvertTradesToCandlesRequest) GetExchange

func (x *ConvertTradesToCandlesRequest) GetExchange() string

func (*ConvertTradesToCandlesRequest) GetForce

func (x *ConvertTradesToCandlesRequest) GetForce() bool

func (*ConvertTradesToCandlesRequest) GetPair

func (*ConvertTradesToCandlesRequest) GetStart

func (x *ConvertTradesToCandlesRequest) GetStart() string

func (*ConvertTradesToCandlesRequest) GetSync

func (x *ConvertTradesToCandlesRequest) GetSync() bool

func (*ConvertTradesToCandlesRequest) GetTimeInterval

func (x *ConvertTradesToCandlesRequest) GetTimeInterval() int64

func (*ConvertTradesToCandlesRequest) ProtoMessage

func (*ConvertTradesToCandlesRequest) ProtoMessage()

func (*ConvertTradesToCandlesRequest) ProtoReflect

func (*ConvertTradesToCandlesRequest) Reset

func (x *ConvertTradesToCandlesRequest) Reset()

func (*ConvertTradesToCandlesRequest) String

type CryptoWithdrawalEvent

type CryptoWithdrawalEvent struct {
	Address    string  `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	AddressTag string  `protobuf:"bytes,2,opt,name=address_tag,json=addressTag,proto3" json:"address_tag,omitempty"`
	Fee        float64 `protobuf:"fixed64,3,opt,name=fee,proto3" json:"fee,omitempty"`
	TxId       string  `protobuf:"bytes,4,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CryptoWithdrawalEvent) Descriptor deprecated

func (*CryptoWithdrawalEvent) Descriptor() ([]byte, []int)

Deprecated: Use CryptoWithdrawalEvent.ProtoReflect.Descriptor instead.

func (*CryptoWithdrawalEvent) GetAddress

func (x *CryptoWithdrawalEvent) GetAddress() string

func (*CryptoWithdrawalEvent) GetAddressTag

func (x *CryptoWithdrawalEvent) GetAddressTag() string

func (*CryptoWithdrawalEvent) GetFee

func (x *CryptoWithdrawalEvent) GetFee() float64

func (*CryptoWithdrawalEvent) GetTxId

func (x *CryptoWithdrawalEvent) GetTxId() string

func (*CryptoWithdrawalEvent) ProtoMessage

func (*CryptoWithdrawalEvent) ProtoMessage()

func (*CryptoWithdrawalEvent) ProtoReflect

func (x *CryptoWithdrawalEvent) ProtoReflect() protoreflect.Message

func (*CryptoWithdrawalEvent) Reset

func (x *CryptoWithdrawalEvent) Reset()

func (*CryptoWithdrawalEvent) String

func (x *CryptoWithdrawalEvent) String() string

type CurrencyPair

type CurrencyPair struct {
	Delimiter string `protobuf:"bytes,1,opt,name=delimiter,proto3" json:"delimiter,omitempty"`
	Base      string `protobuf:"bytes,2,opt,name=base,proto3" json:"base,omitempty"`
	Quote     string `protobuf:"bytes,3,opt,name=quote,proto3" json:"quote,omitempty"`
	// contains filtered or unexported fields
}

func (*CurrencyPair) Descriptor deprecated

func (*CurrencyPair) Descriptor() ([]byte, []int)

Deprecated: Use CurrencyPair.ProtoReflect.Descriptor instead.

func (*CurrencyPair) GetBase

func (x *CurrencyPair) GetBase() string

func (*CurrencyPair) GetDelimiter

func (x *CurrencyPair) GetDelimiter() string

func (*CurrencyPair) GetQuote

func (x *CurrencyPair) GetQuote() string

func (*CurrencyPair) ProtoMessage

func (*CurrencyPair) ProtoMessage()

func (*CurrencyPair) ProtoReflect

func (x *CurrencyPair) ProtoReflect() protoreflect.Message

func (*CurrencyPair) Reset

func (x *CurrencyPair) Reset()

func (*CurrencyPair) String

func (x *CurrencyPair) String() string

type CurrencyState

type CurrencyState struct {
	Currency        string `protobuf:"bytes,1,opt,name=currency,proto3" json:"currency,omitempty"`
	Asset           string `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	WithdrawEnabled bool   `protobuf:"varint,3,opt,name=withdraw_enabled,json=withdrawEnabled,proto3" json:"withdraw_enabled,omitempty"`
	DepositEnabled  bool   `protobuf:"varint,4,opt,name=deposit_enabled,json=depositEnabled,proto3" json:"deposit_enabled,omitempty"`
	TradingEnabled  bool   `protobuf:"varint,5,opt,name=trading_enabled,json=tradingEnabled,proto3" json:"trading_enabled,omitempty"`
	// contains filtered or unexported fields
}

func (*CurrencyState) Descriptor deprecated

func (*CurrencyState) Descriptor() ([]byte, []int)

Deprecated: Use CurrencyState.ProtoReflect.Descriptor instead.

func (*CurrencyState) GetAsset

func (x *CurrencyState) GetAsset() string

func (*CurrencyState) GetCurrency

func (x *CurrencyState) GetCurrency() string

func (*CurrencyState) GetDepositEnabled

func (x *CurrencyState) GetDepositEnabled() bool

func (*CurrencyState) GetTradingEnabled

func (x *CurrencyState) GetTradingEnabled() bool

func (*CurrencyState) GetWithdrawEnabled

func (x *CurrencyState) GetWithdrawEnabled() bool

func (*CurrencyState) ProtoMessage

func (*CurrencyState) ProtoMessage()

func (*CurrencyState) ProtoReflect

func (x *CurrencyState) ProtoReflect() protoreflect.Message

func (*CurrencyState) Reset

func (x *CurrencyState) Reset()

func (*CurrencyState) String

func (x *CurrencyState) String() string

type CurrencyStateDepositRequest

type CurrencyStateDepositRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Code     string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	Asset    string `protobuf:"bytes,3,opt,name=asset,proto3" json:"asset,omitempty"`
	// contains filtered or unexported fields
}

func (*CurrencyStateDepositRequest) Descriptor deprecated

func (*CurrencyStateDepositRequest) Descriptor() ([]byte, []int)

Deprecated: Use CurrencyStateDepositRequest.ProtoReflect.Descriptor instead.

func (*CurrencyStateDepositRequest) GetAsset

func (x *CurrencyStateDepositRequest) GetAsset() string

func (*CurrencyStateDepositRequest) GetCode

func (x *CurrencyStateDepositRequest) GetCode() string

func (*CurrencyStateDepositRequest) GetExchange

func (x *CurrencyStateDepositRequest) GetExchange() string

func (*CurrencyStateDepositRequest) ProtoMessage

func (*CurrencyStateDepositRequest) ProtoMessage()

func (*CurrencyStateDepositRequest) ProtoReflect

func (*CurrencyStateDepositRequest) Reset

func (x *CurrencyStateDepositRequest) Reset()

func (*CurrencyStateDepositRequest) String

func (x *CurrencyStateDepositRequest) String() string

type CurrencyStateGetAllRequest

type CurrencyStateGetAllRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	// contains filtered or unexported fields
}

func (*CurrencyStateGetAllRequest) Descriptor deprecated

func (*CurrencyStateGetAllRequest) Descriptor() ([]byte, []int)

Deprecated: Use CurrencyStateGetAllRequest.ProtoReflect.Descriptor instead.

func (*CurrencyStateGetAllRequest) GetExchange

func (x *CurrencyStateGetAllRequest) GetExchange() string

func (*CurrencyStateGetAllRequest) ProtoMessage

func (*CurrencyStateGetAllRequest) ProtoMessage()

func (*CurrencyStateGetAllRequest) ProtoReflect

func (*CurrencyStateGetAllRequest) Reset

func (x *CurrencyStateGetAllRequest) Reset()

func (*CurrencyStateGetAllRequest) String

func (x *CurrencyStateGetAllRequest) String() string

type CurrencyStateResponse

type CurrencyStateResponse struct {
	CurrencyStates []*CurrencyState `protobuf:"bytes,1,rep,name=currency_states,json=currencyStates,proto3" json:"currency_states,omitempty"`
	// contains filtered or unexported fields
}

func (*CurrencyStateResponse) Descriptor deprecated

func (*CurrencyStateResponse) Descriptor() ([]byte, []int)

Deprecated: Use CurrencyStateResponse.ProtoReflect.Descriptor instead.

func (*CurrencyStateResponse) GetCurrencyStates

func (x *CurrencyStateResponse) GetCurrencyStates() []*CurrencyState

func (*CurrencyStateResponse) ProtoMessage

func (*CurrencyStateResponse) ProtoMessage()

func (*CurrencyStateResponse) ProtoReflect

func (x *CurrencyStateResponse) ProtoReflect() protoreflect.Message

func (*CurrencyStateResponse) Reset

func (x *CurrencyStateResponse) Reset()

func (*CurrencyStateResponse) String

func (x *CurrencyStateResponse) String() string

type CurrencyStateTradingPairRequest

type CurrencyStateTradingPairRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair     string `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	Asset    string `protobuf:"bytes,3,opt,name=asset,proto3" json:"asset,omitempty"`
	// contains filtered or unexported fields
}

func (*CurrencyStateTradingPairRequest) Descriptor deprecated

func (*CurrencyStateTradingPairRequest) Descriptor() ([]byte, []int)

Deprecated: Use CurrencyStateTradingPairRequest.ProtoReflect.Descriptor instead.

func (*CurrencyStateTradingPairRequest) GetAsset

func (*CurrencyStateTradingPairRequest) GetExchange

func (x *CurrencyStateTradingPairRequest) GetExchange() string

func (*CurrencyStateTradingPairRequest) GetPair

func (*CurrencyStateTradingPairRequest) ProtoMessage

func (*CurrencyStateTradingPairRequest) ProtoMessage()

func (*CurrencyStateTradingPairRequest) ProtoReflect

func (*CurrencyStateTradingPairRequest) Reset

func (*CurrencyStateTradingPairRequest) String

type CurrencyStateTradingRequest

type CurrencyStateTradingRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Code     string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	Asset    string `protobuf:"bytes,3,opt,name=asset,proto3" json:"asset,omitempty"`
	// contains filtered or unexported fields
}

func (*CurrencyStateTradingRequest) Descriptor deprecated

func (*CurrencyStateTradingRequest) Descriptor() ([]byte, []int)

Deprecated: Use CurrencyStateTradingRequest.ProtoReflect.Descriptor instead.

func (*CurrencyStateTradingRequest) GetAsset

func (x *CurrencyStateTradingRequest) GetAsset() string

func (*CurrencyStateTradingRequest) GetCode

func (x *CurrencyStateTradingRequest) GetCode() string

func (*CurrencyStateTradingRequest) GetExchange

func (x *CurrencyStateTradingRequest) GetExchange() string

func (*CurrencyStateTradingRequest) ProtoMessage

func (*CurrencyStateTradingRequest) ProtoMessage()

func (*CurrencyStateTradingRequest) ProtoReflect

func (*CurrencyStateTradingRequest) Reset

func (x *CurrencyStateTradingRequest) Reset()

func (*CurrencyStateTradingRequest) String

func (x *CurrencyStateTradingRequest) String() string

type CurrencyStateWithdrawRequest

type CurrencyStateWithdrawRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Code     string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	Asset    string `protobuf:"bytes,3,opt,name=asset,proto3" json:"asset,omitempty"`
	// contains filtered or unexported fields
}

func (*CurrencyStateWithdrawRequest) Descriptor deprecated

func (*CurrencyStateWithdrawRequest) Descriptor() ([]byte, []int)

Deprecated: Use CurrencyStateWithdrawRequest.ProtoReflect.Descriptor instead.

func (*CurrencyStateWithdrawRequest) GetAsset

func (x *CurrencyStateWithdrawRequest) GetAsset() string

func (*CurrencyStateWithdrawRequest) GetCode

func (x *CurrencyStateWithdrawRequest) GetCode() string

func (*CurrencyStateWithdrawRequest) GetExchange

func (x *CurrencyStateWithdrawRequest) GetExchange() string

func (*CurrencyStateWithdrawRequest) ProtoMessage

func (*CurrencyStateWithdrawRequest) ProtoMessage()

func (*CurrencyStateWithdrawRequest) ProtoReflect

func (*CurrencyStateWithdrawRequest) Reset

func (x *CurrencyStateWithdrawRequest) Reset()

func (*CurrencyStateWithdrawRequest) String

type DataHistoryJob

type DataHistoryJob struct {
	Id                       string                  `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Nickname                 string                  `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"`
	Exchange                 string                  `protobuf:"bytes,3,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset                    string                  `protobuf:"bytes,4,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair                     *CurrencyPair           `protobuf:"bytes,5,opt,name=pair,proto3" json:"pair,omitempty"`
	StartDate                string                  `protobuf:"bytes,6,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`
	EndDate                  string                  `protobuf:"bytes,7,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`
	Interval                 int64                   `protobuf:"varint,8,opt,name=interval,proto3" json:"interval,omitempty"`
	RequestSizeLimit         int64                   `protobuf:"varint,9,opt,name=request_size_limit,json=requestSizeLimit,proto3" json:"request_size_limit,omitempty"`
	MaxRetryAttempts         int64                   `protobuf:"varint,10,opt,name=max_retry_attempts,json=maxRetryAttempts,proto3" json:"max_retry_attempts,omitempty"`
	BatchSize                int64                   `protobuf:"varint,11,opt,name=batch_size,json=batchSize,proto3" json:"batch_size,omitempty"`
	Status                   string                  `protobuf:"bytes,12,opt,name=status,proto3" json:"status,omitempty"`
	DataType                 string                  `protobuf:"bytes,13,opt,name=data_type,json=dataType,proto3" json:"data_type,omitempty"`
	ConversionInterval       int64                   `protobuf:"varint,14,opt,name=conversion_interval,json=conversionInterval,proto3" json:"conversion_interval,omitempty"`
	OverwriteExistingData    bool                    `` /* 128-byte string literal not displayed */
	PrerequisiteJobNickname  string                  `` /* 133-byte string literal not displayed */
	DecimalPlaceComparison   int64                   `` /* 131-byte string literal not displayed */
	SecondaryExchangeName    string                  `` /* 127-byte string literal not displayed */
	IssueTolerancePercentage float64                 `` /* 138-byte string literal not displayed */
	ReplaceOnIssue           bool                    `protobuf:"varint,20,opt,name=replace_on_issue,json=replaceOnIssue,proto3" json:"replace_on_issue,omitempty"`
	JobResults               []*DataHistoryJobResult `protobuf:"bytes,21,rep,name=job_results,json=jobResults,proto3" json:"job_results,omitempty"`
	ResultSummaries          []string                `protobuf:"bytes,22,rep,name=result_summaries,json=resultSummaries,proto3" json:"result_summaries,omitempty"`
	// contains filtered or unexported fields
}

func (*DataHistoryJob) Descriptor deprecated

func (*DataHistoryJob) Descriptor() ([]byte, []int)

Deprecated: Use DataHistoryJob.ProtoReflect.Descriptor instead.

func (*DataHistoryJob) GetAsset

func (x *DataHistoryJob) GetAsset() string

func (*DataHistoryJob) GetBatchSize

func (x *DataHistoryJob) GetBatchSize() int64

func (*DataHistoryJob) GetConversionInterval

func (x *DataHistoryJob) GetConversionInterval() int64

func (*DataHistoryJob) GetDataType

func (x *DataHistoryJob) GetDataType() string

func (*DataHistoryJob) GetDecimalPlaceComparison

func (x *DataHistoryJob) GetDecimalPlaceComparison() int64

func (*DataHistoryJob) GetEndDate

func (x *DataHistoryJob) GetEndDate() string

func (*DataHistoryJob) GetExchange

func (x *DataHistoryJob) GetExchange() string

func (*DataHistoryJob) GetId

func (x *DataHistoryJob) GetId() string

func (*DataHistoryJob) GetInterval

func (x *DataHistoryJob) GetInterval() int64

func (*DataHistoryJob) GetIssueTolerancePercentage

func (x *DataHistoryJob) GetIssueTolerancePercentage() float64

func (*DataHistoryJob) GetJobResults

func (x *DataHistoryJob) GetJobResults() []*DataHistoryJobResult

func (*DataHistoryJob) GetMaxRetryAttempts

func (x *DataHistoryJob) GetMaxRetryAttempts() int64

func (*DataHistoryJob) GetNickname

func (x *DataHistoryJob) GetNickname() string

func (*DataHistoryJob) GetOverwriteExistingData

func (x *DataHistoryJob) GetOverwriteExistingData() bool

func (*DataHistoryJob) GetPair

func (x *DataHistoryJob) GetPair() *CurrencyPair

func (*DataHistoryJob) GetPrerequisiteJobNickname

func (x *DataHistoryJob) GetPrerequisiteJobNickname() string

func (*DataHistoryJob) GetReplaceOnIssue

func (x *DataHistoryJob) GetReplaceOnIssue() bool

func (*DataHistoryJob) GetRequestSizeLimit

func (x *DataHistoryJob) GetRequestSizeLimit() int64

func (*DataHistoryJob) GetResultSummaries

func (x *DataHistoryJob) GetResultSummaries() []string

func (*DataHistoryJob) GetSecondaryExchangeName

func (x *DataHistoryJob) GetSecondaryExchangeName() string

func (*DataHistoryJob) GetStartDate

func (x *DataHistoryJob) GetStartDate() string

func (*DataHistoryJob) GetStatus

func (x *DataHistoryJob) GetStatus() string

func (*DataHistoryJob) ProtoMessage

func (*DataHistoryJob) ProtoMessage()

func (*DataHistoryJob) ProtoReflect

func (x *DataHistoryJob) ProtoReflect() protoreflect.Message

func (*DataHistoryJob) Reset

func (x *DataHistoryJob) Reset()

func (*DataHistoryJob) String

func (x *DataHistoryJob) String() string

type DataHistoryJobResult

type DataHistoryJobResult struct {
	StartDate string `protobuf:"bytes,1,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`
	EndDate   string `protobuf:"bytes,2,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`
	HasData   bool   `protobuf:"varint,3,opt,name=has_data,json=hasData,proto3" json:"has_data,omitempty"`
	Message   string `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty"`
	RunDate   string `protobuf:"bytes,5,opt,name=run_date,json=runDate,proto3" json:"run_date,omitempty"`
	// contains filtered or unexported fields
}

func (*DataHistoryJobResult) Descriptor deprecated

func (*DataHistoryJobResult) Descriptor() ([]byte, []int)

Deprecated: Use DataHistoryJobResult.ProtoReflect.Descriptor instead.

func (*DataHistoryJobResult) GetEndDate

func (x *DataHistoryJobResult) GetEndDate() string

func (*DataHistoryJobResult) GetHasData

func (x *DataHistoryJobResult) GetHasData() bool

func (*DataHistoryJobResult) GetMessage

func (x *DataHistoryJobResult) GetMessage() string

func (*DataHistoryJobResult) GetRunDate

func (x *DataHistoryJobResult) GetRunDate() string

func (*DataHistoryJobResult) GetStartDate

func (x *DataHistoryJobResult) GetStartDate() string

func (*DataHistoryJobResult) ProtoMessage

func (*DataHistoryJobResult) ProtoMessage()

func (*DataHistoryJobResult) ProtoReflect

func (x *DataHistoryJobResult) ProtoReflect() protoreflect.Message

func (*DataHistoryJobResult) Reset

func (x *DataHistoryJobResult) Reset()

func (*DataHistoryJobResult) String

func (x *DataHistoryJobResult) String() string

type DataHistoryJobs

type DataHistoryJobs struct {
	Results []*DataHistoryJob `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
	// contains filtered or unexported fields
}

func (*DataHistoryJobs) Descriptor deprecated

func (*DataHistoryJobs) Descriptor() ([]byte, []int)

Deprecated: Use DataHistoryJobs.ProtoReflect.Descriptor instead.

func (*DataHistoryJobs) GetResults

func (x *DataHistoryJobs) GetResults() []*DataHistoryJob

func (*DataHistoryJobs) ProtoMessage

func (*DataHistoryJobs) ProtoMessage()

func (*DataHistoryJobs) ProtoReflect

func (x *DataHistoryJobs) ProtoReflect() protoreflect.Message

func (*DataHistoryJobs) Reset

func (x *DataHistoryJobs) Reset()

func (*DataHistoryJobs) String

func (x *DataHistoryJobs) String() string

type DepositAddress

type DepositAddress struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Tag     string `protobuf:"bytes,2,opt,name=tag,proto3" json:"tag,omitempty"`
	Chain   string `protobuf:"bytes,3,opt,name=chain,proto3" json:"chain,omitempty"`
	// contains filtered or unexported fields
}

func (*DepositAddress) Descriptor deprecated

func (*DepositAddress) Descriptor() ([]byte, []int)

Deprecated: Use DepositAddress.ProtoReflect.Descriptor instead.

func (*DepositAddress) GetAddress

func (x *DepositAddress) GetAddress() string

func (*DepositAddress) GetChain

func (x *DepositAddress) GetChain() string

func (*DepositAddress) GetTag

func (x *DepositAddress) GetTag() string

func (*DepositAddress) ProtoMessage

func (*DepositAddress) ProtoMessage()

func (*DepositAddress) ProtoReflect

func (x *DepositAddress) ProtoReflect() protoreflect.Message

func (*DepositAddress) Reset

func (x *DepositAddress) Reset()

func (*DepositAddress) String

func (x *DepositAddress) String() string

type DepositAddresses

type DepositAddresses struct {
	Addresses []*DepositAddress `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"`
	// contains filtered or unexported fields
}

func (*DepositAddresses) Descriptor deprecated

func (*DepositAddresses) Descriptor() ([]byte, []int)

Deprecated: Use DepositAddresses.ProtoReflect.Descriptor instead.

func (*DepositAddresses) GetAddresses

func (x *DepositAddresses) GetAddresses() []*DepositAddress

func (*DepositAddresses) ProtoMessage

func (*DepositAddresses) ProtoMessage()

func (*DepositAddresses) ProtoReflect

func (x *DepositAddresses) ProtoReflect() protoreflect.Message

func (*DepositAddresses) Reset

func (x *DepositAddresses) Reset()

func (*DepositAddresses) String

func (x *DepositAddresses) String() string

type DisableExchangeRequest

type DisableExchangeRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	// contains filtered or unexported fields
}

func (*DisableExchangeRequest) Descriptor deprecated

func (*DisableExchangeRequest) Descriptor() ([]byte, []int)

Deprecated: Use DisableExchangeRequest.ProtoReflect.Descriptor instead.

func (*DisableExchangeRequest) GetExchange

func (x *DisableExchangeRequest) GetExchange() string

func (*DisableExchangeRequest) ProtoMessage

func (*DisableExchangeRequest) ProtoMessage()

func (*DisableExchangeRequest) ProtoReflect

func (x *DisableExchangeRequest) ProtoReflect() protoreflect.Message

func (*DisableExchangeRequest) Reset

func (x *DisableExchangeRequest) Reset()

func (*DisableExchangeRequest) String

func (x *DisableExchangeRequest) String() string

type FiatWithdrawalEvent

type FiatWithdrawalEvent struct {
	BankName      string `protobuf:"bytes,1,opt,name=bank_name,json=bankName,proto3" json:"bank_name,omitempty"`
	AccountName   string `protobuf:"bytes,2,opt,name=account_name,json=accountName,proto3" json:"account_name,omitempty"`
	AccountNumber string `protobuf:"bytes,3,opt,name=account_number,json=accountNumber,proto3" json:"account_number,omitempty"`
	Bsb           string `protobuf:"bytes,4,opt,name=bsb,proto3" json:"bsb,omitempty"`
	Swift         string `protobuf:"bytes,5,opt,name=swift,proto3" json:"swift,omitempty"`
	Iban          string `protobuf:"bytes,6,opt,name=iban,proto3" json:"iban,omitempty"`
	// contains filtered or unexported fields
}

func (*FiatWithdrawalEvent) Descriptor deprecated

func (*FiatWithdrawalEvent) Descriptor() ([]byte, []int)

Deprecated: Use FiatWithdrawalEvent.ProtoReflect.Descriptor instead.

func (*FiatWithdrawalEvent) GetAccountName

func (x *FiatWithdrawalEvent) GetAccountName() string

func (*FiatWithdrawalEvent) GetAccountNumber

func (x *FiatWithdrawalEvent) GetAccountNumber() string

func (*FiatWithdrawalEvent) GetBankName

func (x *FiatWithdrawalEvent) GetBankName() string

func (*FiatWithdrawalEvent) GetBsb

func (x *FiatWithdrawalEvent) GetBsb() string

func (*FiatWithdrawalEvent) GetIban

func (x *FiatWithdrawalEvent) GetIban() string

func (*FiatWithdrawalEvent) GetSwift

func (x *FiatWithdrawalEvent) GetSwift() string

func (*FiatWithdrawalEvent) ProtoMessage

func (*FiatWithdrawalEvent) ProtoMessage()

func (*FiatWithdrawalEvent) ProtoReflect

func (x *FiatWithdrawalEvent) ProtoReflect() protoreflect.Message

func (*FiatWithdrawalEvent) Reset

func (x *FiatWithdrawalEvent) Reset()

func (*FiatWithdrawalEvent) String

func (x *FiatWithdrawalEvent) String() string

type FindMissingCandlePeriodsRequest

type FindMissingCandlePeriodsRequest struct {
	ExchangeName string        `protobuf:"bytes,1,opt,name=exchange_name,json=exchangeName,proto3" json:"exchange_name,omitempty"`
	AssetType    string        `protobuf:"bytes,2,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	Pair         *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	Interval     int64         `protobuf:"varint,4,opt,name=interval,proto3" json:"interval,omitempty"`
	Start        string        `protobuf:"bytes,5,opt,name=start,proto3" json:"start,omitempty"`
	End          string        `protobuf:"bytes,6,opt,name=end,proto3" json:"end,omitempty"`
	// contains filtered or unexported fields
}

func (*FindMissingCandlePeriodsRequest) Descriptor deprecated

func (*FindMissingCandlePeriodsRequest) Descriptor() ([]byte, []int)

Deprecated: Use FindMissingCandlePeriodsRequest.ProtoReflect.Descriptor instead.

func (*FindMissingCandlePeriodsRequest) GetAssetType

func (x *FindMissingCandlePeriodsRequest) GetAssetType() string

func (*FindMissingCandlePeriodsRequest) GetEnd

func (*FindMissingCandlePeriodsRequest) GetExchangeName

func (x *FindMissingCandlePeriodsRequest) GetExchangeName() string

func (*FindMissingCandlePeriodsRequest) GetInterval

func (x *FindMissingCandlePeriodsRequest) GetInterval() int64

func (*FindMissingCandlePeriodsRequest) GetPair

func (*FindMissingCandlePeriodsRequest) GetStart

func (*FindMissingCandlePeriodsRequest) ProtoMessage

func (*FindMissingCandlePeriodsRequest) ProtoMessage()

func (*FindMissingCandlePeriodsRequest) ProtoReflect

func (*FindMissingCandlePeriodsRequest) Reset

func (*FindMissingCandlePeriodsRequest) String

type FindMissingIntervalsResponse

type FindMissingIntervalsResponse struct {
	ExchangeName   string        `protobuf:"bytes,1,opt,name=exchange_name,json=exchangeName,proto3" json:"exchange_name,omitempty"`
	AssetType      string        `protobuf:"bytes,2,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	Pair           *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	MissingPeriods []string      `protobuf:"bytes,4,rep,name=missing_periods,json=missingPeriods,proto3" json:"missing_periods,omitempty"`
	Status         string        `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*FindMissingIntervalsResponse) Descriptor deprecated

func (*FindMissingIntervalsResponse) Descriptor() ([]byte, []int)

Deprecated: Use FindMissingIntervalsResponse.ProtoReflect.Descriptor instead.

func (*FindMissingIntervalsResponse) GetAssetType

func (x *FindMissingIntervalsResponse) GetAssetType() string

func (*FindMissingIntervalsResponse) GetExchangeName

func (x *FindMissingIntervalsResponse) GetExchangeName() string

func (*FindMissingIntervalsResponse) GetMissingPeriods

func (x *FindMissingIntervalsResponse) GetMissingPeriods() []string

func (*FindMissingIntervalsResponse) GetPair

func (*FindMissingIntervalsResponse) GetStatus

func (x *FindMissingIntervalsResponse) GetStatus() string

func (*FindMissingIntervalsResponse) ProtoMessage

func (*FindMissingIntervalsResponse) ProtoMessage()

func (*FindMissingIntervalsResponse) ProtoReflect

func (*FindMissingIntervalsResponse) Reset

func (x *FindMissingIntervalsResponse) Reset()

func (*FindMissingIntervalsResponse) String

type FindMissingTradePeriodsRequest

type FindMissingTradePeriodsRequest struct {
	ExchangeName string        `protobuf:"bytes,1,opt,name=exchange_name,json=exchangeName,proto3" json:"exchange_name,omitempty"`
	AssetType    string        `protobuf:"bytes,2,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	Pair         *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	Start        string        `protobuf:"bytes,4,opt,name=start,proto3" json:"start,omitempty"`
	End          string        `protobuf:"bytes,5,opt,name=end,proto3" json:"end,omitempty"`
	// contains filtered or unexported fields
}

func (*FindMissingTradePeriodsRequest) Descriptor deprecated

func (*FindMissingTradePeriodsRequest) Descriptor() ([]byte, []int)

Deprecated: Use FindMissingTradePeriodsRequest.ProtoReflect.Descriptor instead.

func (*FindMissingTradePeriodsRequest) GetAssetType

func (x *FindMissingTradePeriodsRequest) GetAssetType() string

func (*FindMissingTradePeriodsRequest) GetEnd

func (*FindMissingTradePeriodsRequest) GetExchangeName

func (x *FindMissingTradePeriodsRequest) GetExchangeName() string

func (*FindMissingTradePeriodsRequest) GetPair

func (*FindMissingTradePeriodsRequest) GetStart

func (x *FindMissingTradePeriodsRequest) GetStart() string

func (*FindMissingTradePeriodsRequest) ProtoMessage

func (*FindMissingTradePeriodsRequest) ProtoMessage()

func (*FindMissingTradePeriodsRequest) ProtoReflect

func (*FindMissingTradePeriodsRequest) Reset

func (x *FindMissingTradePeriodsRequest) Reset()

func (*FindMissingTradePeriodsRequest) String

type ForexProvider

type ForexProvider struct {
	Name             string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Enabled          bool   `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
	Verbose          bool   `protobuf:"varint,3,opt,name=verbose,proto3" json:"verbose,omitempty"`
	RestPollingDelay string `protobuf:"bytes,4,opt,name=rest_polling_delay,json=restPollingDelay,proto3" json:"rest_polling_delay,omitempty"`
	ApiKey           string `protobuf:"bytes,5,opt,name=api_key,json=apiKey,proto3" json:"api_key,omitempty"`
	ApiKeyLevel      int64  `protobuf:"varint,6,opt,name=api_key_level,json=apiKeyLevel,proto3" json:"api_key_level,omitempty"`
	PrimaryProvider  bool   `protobuf:"varint,7,opt,name=primary_provider,json=primaryProvider,proto3" json:"primary_provider,omitempty"`
	// contains filtered or unexported fields
}

func (*ForexProvider) Descriptor deprecated

func (*ForexProvider) Descriptor() ([]byte, []int)

Deprecated: Use ForexProvider.ProtoReflect.Descriptor instead.

func (*ForexProvider) GetApiKey

func (x *ForexProvider) GetApiKey() string

func (*ForexProvider) GetApiKeyLevel

func (x *ForexProvider) GetApiKeyLevel() int64

func (*ForexProvider) GetEnabled

func (x *ForexProvider) GetEnabled() bool

func (*ForexProvider) GetName

func (x *ForexProvider) GetName() string

func (*ForexProvider) GetPrimaryProvider

func (x *ForexProvider) GetPrimaryProvider() bool

func (*ForexProvider) GetRestPollingDelay

func (x *ForexProvider) GetRestPollingDelay() string

func (*ForexProvider) GetVerbose

func (x *ForexProvider) GetVerbose() bool

func (*ForexProvider) ProtoMessage

func (*ForexProvider) ProtoMessage()

func (*ForexProvider) ProtoReflect

func (x *ForexProvider) ProtoReflect() protoreflect.Message

func (*ForexProvider) Reset

func (x *ForexProvider) Reset()

func (*ForexProvider) String

func (x *ForexProvider) String() string

type ForexRatesConversion

type ForexRatesConversion struct {
	From        string  `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
	To          string  `protobuf:"bytes,2,opt,name=to,proto3" json:"to,omitempty"`
	Rate        float64 `protobuf:"fixed64,3,opt,name=rate,proto3" json:"rate,omitempty"`
	InverseRate float64 `protobuf:"fixed64,4,opt,name=inverse_rate,json=inverseRate,proto3" json:"inverse_rate,omitempty"`
	// contains filtered or unexported fields
}

func (*ForexRatesConversion) Descriptor deprecated

func (*ForexRatesConversion) Descriptor() ([]byte, []int)

Deprecated: Use ForexRatesConversion.ProtoReflect.Descriptor instead.

func (*ForexRatesConversion) GetFrom

func (x *ForexRatesConversion) GetFrom() string

func (*ForexRatesConversion) GetInverseRate

func (x *ForexRatesConversion) GetInverseRate() float64

func (*ForexRatesConversion) GetRate

func (x *ForexRatesConversion) GetRate() float64

func (*ForexRatesConversion) GetTo

func (x *ForexRatesConversion) GetTo() string

func (*ForexRatesConversion) ProtoMessage

func (*ForexRatesConversion) ProtoMessage()

func (*ForexRatesConversion) ProtoReflect

func (x *ForexRatesConversion) ProtoReflect() protoreflect.Message

func (*ForexRatesConversion) Reset

func (x *ForexRatesConversion) Reset()

func (*ForexRatesConversion) String

func (x *ForexRatesConversion) String() string

type FundingData

type FundingData struct {
	Exchange        string         `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset           string         `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair            *CurrencyPair  `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	PaymentCurrency string         `protobuf:"bytes,4,opt,name=payment_currency,json=paymentCurrency,proto3" json:"payment_currency,omitempty"`
	StartDate       string         `protobuf:"bytes,5,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`
	EndDate         string         `protobuf:"bytes,6,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`
	Rates           []*FundingRate `protobuf:"bytes,7,rep,name=rates,proto3" json:"rates,omitempty"`
	LatestRate      *FundingRate   `protobuf:"bytes,8,opt,name=latest_rate,json=latestRate,proto3" json:"latest_rate,omitempty"`
	UpcomingRate    *FundingRate   `protobuf:"bytes,9,opt,name=upcoming_rate,json=upcomingRate,proto3" json:"upcoming_rate,omitempty"`
	PaymentSum      string         `protobuf:"bytes,10,opt,name=payment_sum,json=paymentSum,proto3" json:"payment_sum,omitempty"`
	PaymentMessage  string         `protobuf:"bytes,11,opt,name=payment_message,json=paymentMessage,proto3" json:"payment_message,omitempty"`
	TimeOfNextRate  string         `protobuf:"bytes,12,opt,name=time_of_next_rate,json=timeOfNextRate,proto3" json:"time_of_next_rate,omitempty"`
	// contains filtered or unexported fields
}

func (*FundingData) Descriptor deprecated

func (*FundingData) Descriptor() ([]byte, []int)

Deprecated: Use FundingData.ProtoReflect.Descriptor instead.

func (*FundingData) GetAsset

func (x *FundingData) GetAsset() string

func (*FundingData) GetEndDate

func (x *FundingData) GetEndDate() string

func (*FundingData) GetExchange

func (x *FundingData) GetExchange() string

func (*FundingData) GetLatestRate

func (x *FundingData) GetLatestRate() *FundingRate

func (*FundingData) GetPair

func (x *FundingData) GetPair() *CurrencyPair

func (*FundingData) GetPaymentCurrency

func (x *FundingData) GetPaymentCurrency() string

func (*FundingData) GetPaymentMessage

func (x *FundingData) GetPaymentMessage() string

func (*FundingData) GetPaymentSum

func (x *FundingData) GetPaymentSum() string

func (*FundingData) GetRates

func (x *FundingData) GetRates() []*FundingRate

func (*FundingData) GetStartDate

func (x *FundingData) GetStartDate() string

func (*FundingData) GetTimeOfNextRate

func (x *FundingData) GetTimeOfNextRate() string

func (*FundingData) GetUpcomingRate

func (x *FundingData) GetUpcomingRate() *FundingRate

func (*FundingData) ProtoMessage

func (*FundingData) ProtoMessage()

func (*FundingData) ProtoReflect

func (x *FundingData) ProtoReflect() protoreflect.Message

func (*FundingData) Reset

func (x *FundingData) Reset()

func (*FundingData) String

func (x *FundingData) String() string

type FundingRate

type FundingRate struct {
	Date    string `protobuf:"bytes,1,opt,name=date,proto3" json:"date,omitempty"`
	Rate    string `protobuf:"bytes,2,opt,name=rate,proto3" json:"rate,omitempty"`
	Payment string `protobuf:"bytes,3,opt,name=payment,proto3" json:"payment,omitempty"`
	// contains filtered or unexported fields
}

func (*FundingRate) Descriptor deprecated

func (*FundingRate) Descriptor() ([]byte, []int)

Deprecated: Use FundingRate.ProtoReflect.Descriptor instead.

func (*FundingRate) GetDate

func (x *FundingRate) GetDate() string

func (*FundingRate) GetPayment

func (x *FundingRate) GetPayment() string

func (*FundingRate) GetRate

func (x *FundingRate) GetRate() string

func (*FundingRate) ProtoMessage

func (*FundingRate) ProtoMessage()

func (*FundingRate) ProtoReflect

func (x *FundingRate) ProtoReflect() protoreflect.Message

func (*FundingRate) Reset

func (x *FundingRate) Reset()

func (*FundingRate) String

func (x *FundingRate) String() string

type FuturePosition

type FuturePosition struct {
	Exchange               string                `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset                  string                `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair                   *CurrencyPair         `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	Status                 string                `protobuf:"bytes,4,opt,name=status,proto3" json:"status,omitempty"`
	OpeningDate            string                `protobuf:"bytes,5,opt,name=opening_date,json=openingDate,proto3" json:"opening_date,omitempty"`
	OpeningDirection       string                `protobuf:"bytes,6,opt,name=opening_direction,json=openingDirection,proto3" json:"opening_direction,omitempty"`
	OpeningPrice           string                `protobuf:"bytes,7,opt,name=opening_price,json=openingPrice,proto3" json:"opening_price,omitempty"`
	OpeningSize            string                `protobuf:"bytes,8,opt,name=opening_size,json=openingSize,proto3" json:"opening_size,omitempty"`
	CurrentDirection       string                `protobuf:"bytes,9,opt,name=current_direction,json=currentDirection,proto3" json:"current_direction,omitempty"`
	CurrentPrice           string                `protobuf:"bytes,10,opt,name=current_price,json=currentPrice,proto3" json:"current_price,omitempty"`
	CurrentSize            string                `protobuf:"bytes,11,opt,name=current_size,json=currentSize,proto3" json:"current_size,omitempty"`
	UnrealisedPnl          string                `protobuf:"bytes,12,opt,name=unrealised_pnl,json=unrealisedPnl,proto3" json:"unrealised_pnl,omitempty"`
	RealisedPnl            string                `protobuf:"bytes,13,opt,name=realised_pnl,json=realisedPnl,proto3" json:"realised_pnl,omitempty"`
	ClosingDate            string                `protobuf:"bytes,14,opt,name=closing_date,json=closingDate,proto3" json:"closing_date,omitempty"`
	OrderCount             int64                 `protobuf:"varint,15,opt,name=order_count,json=orderCount,proto3" json:"order_count,omitempty"`
	ContractSettlementType string                `` /* 130-byte string literal not displayed */
	Orders                 []*OrderDetails       `protobuf:"bytes,17,rep,name=orders,proto3" json:"orders,omitempty"`
	PositionStats          *FuturesPositionStats `protobuf:"bytes,18,opt,name=position_stats,json=positionStats,proto3" json:"position_stats,omitempty"`
	FundingData            *FundingData          `protobuf:"bytes,19,opt,name=funding_data,json=fundingData,proto3" json:"funding_data,omitempty"`
	// contains filtered or unexported fields
}

func (*FuturePosition) Descriptor deprecated

func (*FuturePosition) Descriptor() ([]byte, []int)

Deprecated: Use FuturePosition.ProtoReflect.Descriptor instead.

func (*FuturePosition) GetAsset

func (x *FuturePosition) GetAsset() string

func (*FuturePosition) GetClosingDate

func (x *FuturePosition) GetClosingDate() string

func (*FuturePosition) GetContractSettlementType

func (x *FuturePosition) GetContractSettlementType() string

func (*FuturePosition) GetCurrentDirection

func (x *FuturePosition) GetCurrentDirection() string

func (*FuturePosition) GetCurrentPrice

func (x *FuturePosition) GetCurrentPrice() string

func (*FuturePosition) GetCurrentSize

func (x *FuturePosition) GetCurrentSize() string

func (*FuturePosition) GetExchange

func (x *FuturePosition) GetExchange() string

func (*FuturePosition) GetFundingData

func (x *FuturePosition) GetFundingData() *FundingData

func (*FuturePosition) GetOpeningDate

func (x *FuturePosition) GetOpeningDate() string

func (*FuturePosition) GetOpeningDirection

func (x *FuturePosition) GetOpeningDirection() string

func (*FuturePosition) GetOpeningPrice

func (x *FuturePosition) GetOpeningPrice() string

func (*FuturePosition) GetOpeningSize

func (x *FuturePosition) GetOpeningSize() string

func (*FuturePosition) GetOrderCount

func (x *FuturePosition) GetOrderCount() int64

func (*FuturePosition) GetOrders

func (x *FuturePosition) GetOrders() []*OrderDetails

func (*FuturePosition) GetPair

func (x *FuturePosition) GetPair() *CurrencyPair

func (*FuturePosition) GetPositionStats

func (x *FuturePosition) GetPositionStats() *FuturesPositionStats

func (*FuturePosition) GetRealisedPnl

func (x *FuturePosition) GetRealisedPnl() string

func (*FuturePosition) GetStatus

func (x *FuturePosition) GetStatus() string

func (*FuturePosition) GetUnrealisedPnl

func (x *FuturePosition) GetUnrealisedPnl() string

func (*FuturePosition) ProtoMessage

func (*FuturePosition) ProtoMessage()

func (*FuturePosition) ProtoReflect

func (x *FuturePosition) ProtoReflect() protoreflect.Message

func (*FuturePosition) Reset

func (x *FuturePosition) Reset()

func (*FuturePosition) String

func (x *FuturePosition) String() string

type FuturesPositionStats

type FuturesPositionStats struct {
	MaintenanceMarginRequirement string `` /* 147-byte string literal not displayed */
	InitialMarginRequirement     string `` /* 135-byte string literal not displayed */
	EstimatedLiquidationPrice    string `` /* 138-byte string literal not displayed */
	CollateralUsed               string `protobuf:"bytes,4,opt,name=collateral_used,json=collateralUsed,proto3" json:"collateral_used,omitempty"`
	MarkPrice                    string `protobuf:"bytes,5,opt,name=mark_price,json=markPrice,proto3" json:"mark_price,omitempty"`
	CurrentSize                  string `protobuf:"bytes,6,opt,name=current_size,json=currentSize,proto3" json:"current_size,omitempty"`
	ContractSize                 string `protobuf:"bytes,7,opt,name=contract_size,json=contractSize,proto3" json:"contract_size,omitempty"`
	ContractMultiplier           string `protobuf:"bytes,8,opt,name=contract_multiplier,json=contractMultiplier,proto3" json:"contract_multiplier,omitempty"`
	ContractSettlementType       string `` /* 129-byte string literal not displayed */
	BreakEvenPrice               string `protobuf:"bytes,10,opt,name=break_even_price,json=breakEvenPrice,proto3" json:"break_even_price,omitempty"`
	AverageOpenPrice             string `protobuf:"bytes,11,opt,name=average_open_price,json=averageOpenPrice,proto3" json:"average_open_price,omitempty"`
	RecentPnl                    string `protobuf:"bytes,12,opt,name=recent_pnl,json=recentPnl,proto3" json:"recent_pnl,omitempty"`
	MarginFraction               string `protobuf:"bytes,13,opt,name=margin_fraction,json=marginFraction,proto3" json:"margin_fraction,omitempty"`
	FreeCollateral               string `protobuf:"bytes,14,opt,name=free_collateral,json=freeCollateral,proto3" json:"free_collateral,omitempty"`
	TotalCollateral              string `protobuf:"bytes,15,opt,name=total_collateral,json=totalCollateral,proto3" json:"total_collateral,omitempty"`
	FrozenBalance                string `protobuf:"bytes,16,opt,name=frozen_balance,json=frozenBalance,proto3" json:"frozen_balance,omitempty"`
	EquityOfCurrency             string `protobuf:"bytes,17,opt,name=equity_of_currency,json=equityOfCurrency,proto3" json:"equity_of_currency,omitempty"`
	AvailableEquity              string `protobuf:"bytes,18,opt,name=available_equity,json=availableEquity,proto3" json:"available_equity,omitempty"`
	CashBalance                  string `protobuf:"bytes,19,opt,name=cash_balance,json=cashBalance,proto3" json:"cash_balance,omitempty"`
	DiscountEquity               string `protobuf:"bytes,20,opt,name=discount_equity,json=discountEquity,proto3" json:"discount_equity,omitempty"`
	EquityUsd                    string `protobuf:"bytes,21,opt,name=equity_usd,json=equityUsd,proto3" json:"equity_usd,omitempty"`
	IsolatedEquity               string `protobuf:"bytes,22,opt,name=isolated_equity,json=isolatedEquity,proto3" json:"isolated_equity,omitempty"`
	IsolatedLiabilities          string `protobuf:"bytes,23,opt,name=isolated_liabilities,json=isolatedLiabilities,proto3" json:"isolated_liabilities,omitempty"`
	IsolatedUpl                  string `protobuf:"bytes,24,opt,name=isolated_upl,json=isolatedUpl,proto3" json:"isolated_upl,omitempty"`
	NotionalLeverage             string `protobuf:"bytes,25,opt,name=notional_leverage,json=notionalLeverage,proto3" json:"notional_leverage,omitempty"`
	TotalEquity                  string `protobuf:"bytes,26,opt,name=total_equity,json=totalEquity,proto3" json:"total_equity,omitempty"`
	StrategyEquity               string `protobuf:"bytes,27,opt,name=strategy_equity,json=strategyEquity,proto3" json:"strategy_equity,omitempty"`
	// contains filtered or unexported fields
}

func (*FuturesPositionStats) Descriptor deprecated

func (*FuturesPositionStats) Descriptor() ([]byte, []int)

Deprecated: Use FuturesPositionStats.ProtoReflect.Descriptor instead.

func (*FuturesPositionStats) GetAvailableEquity

func (x *FuturesPositionStats) GetAvailableEquity() string

func (*FuturesPositionStats) GetAverageOpenPrice

func (x *FuturesPositionStats) GetAverageOpenPrice() string

func (*FuturesPositionStats) GetBreakEvenPrice

func (x *FuturesPositionStats) GetBreakEvenPrice() string

func (*FuturesPositionStats) GetCashBalance

func (x *FuturesPositionStats) GetCashBalance() string

func (*FuturesPositionStats) GetCollateralUsed

func (x *FuturesPositionStats) GetCollateralUsed() string

func (*FuturesPositionStats) GetContractMultiplier

func (x *FuturesPositionStats) GetContractMultiplier() string

func (*FuturesPositionStats) GetContractSettlementType

func (x *FuturesPositionStats) GetContractSettlementType() string

func (*FuturesPositionStats) GetContractSize

func (x *FuturesPositionStats) GetContractSize() string

func (*FuturesPositionStats) GetCurrentSize

func (x *FuturesPositionStats) GetCurrentSize() string

func (*FuturesPositionStats) GetDiscountEquity

func (x *FuturesPositionStats) GetDiscountEquity() string

func (*FuturesPositionStats) GetEquityOfCurrency

func (x *FuturesPositionStats) GetEquityOfCurrency() string

func (*FuturesPositionStats) GetEquityUsd

func (x *FuturesPositionStats) GetEquityUsd() string

func (*FuturesPositionStats) GetEstimatedLiquidationPrice

func (x *FuturesPositionStats) GetEstimatedLiquidationPrice() string

func (*FuturesPositionStats) GetFreeCollateral

func (x *FuturesPositionStats) GetFreeCollateral() string

func (*FuturesPositionStats) GetFrozenBalance

func (x *FuturesPositionStats) GetFrozenBalance() string

func (*FuturesPositionStats) GetInitialMarginRequirement

func (x *FuturesPositionStats) GetInitialMarginRequirement() string

func (*FuturesPositionStats) GetIsolatedEquity

func (x *FuturesPositionStats) GetIsolatedEquity() string

func (*FuturesPositionStats) GetIsolatedLiabilities

func (x *FuturesPositionStats) GetIsolatedLiabilities() string

func (*FuturesPositionStats) GetIsolatedUpl

func (x *FuturesPositionStats) GetIsolatedUpl() string

func (*FuturesPositionStats) GetMaintenanceMarginRequirement

func (x *FuturesPositionStats) GetMaintenanceMarginRequirement() string

func (*FuturesPositionStats) GetMarginFraction

func (x *FuturesPositionStats) GetMarginFraction() string

func (*FuturesPositionStats) GetMarkPrice

func (x *FuturesPositionStats) GetMarkPrice() string

func (*FuturesPositionStats) GetNotionalLeverage

func (x *FuturesPositionStats) GetNotionalLeverage() string

func (*FuturesPositionStats) GetRecentPnl

func (x *FuturesPositionStats) GetRecentPnl() string

func (*FuturesPositionStats) GetStrategyEquity

func (x *FuturesPositionStats) GetStrategyEquity() string

func (*FuturesPositionStats) GetTotalCollateral

func (x *FuturesPositionStats) GetTotalCollateral() string

func (*FuturesPositionStats) GetTotalEquity

func (x *FuturesPositionStats) GetTotalEquity() string

func (*FuturesPositionStats) ProtoMessage

func (*FuturesPositionStats) ProtoMessage()

func (*FuturesPositionStats) ProtoReflect

func (x *FuturesPositionStats) ProtoReflect() protoreflect.Message

func (*FuturesPositionStats) Reset

func (x *FuturesPositionStats) Reset()

func (*FuturesPositionStats) String

func (x *FuturesPositionStats) String() string

type GCTScript

type GCTScript struct {
	Uuid    string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Path    string `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
	NextRun string `protobuf:"bytes,4,opt,name=next_run,json=nextRun,proto3" json:"next_run,omitempty"`
	// contains filtered or unexported fields
}

func (*GCTScript) Descriptor deprecated

func (*GCTScript) Descriptor() ([]byte, []int)

Deprecated: Use GCTScript.ProtoReflect.Descriptor instead.

func (*GCTScript) GetName

func (x *GCTScript) GetName() string

func (*GCTScript) GetNextRun

func (x *GCTScript) GetNextRun() string

func (*GCTScript) GetPath

func (x *GCTScript) GetPath() string

func (*GCTScript) GetUuid

func (x *GCTScript) GetUuid() string

func (*GCTScript) ProtoMessage

func (*GCTScript) ProtoMessage()

func (*GCTScript) ProtoReflect

func (x *GCTScript) ProtoReflect() protoreflect.Message

func (*GCTScript) Reset

func (x *GCTScript) Reset()

func (*GCTScript) String

func (x *GCTScript) String() string

type GCTScriptAutoLoadRequest

type GCTScriptAutoLoadRequest struct {
	Script string `protobuf:"bytes,1,opt,name=script,proto3" json:"script,omitempty"`
	Status bool   `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*GCTScriptAutoLoadRequest) Descriptor deprecated

func (*GCTScriptAutoLoadRequest) Descriptor() ([]byte, []int)

Deprecated: Use GCTScriptAutoLoadRequest.ProtoReflect.Descriptor instead.

func (*GCTScriptAutoLoadRequest) GetScript

func (x *GCTScriptAutoLoadRequest) GetScript() string

func (*GCTScriptAutoLoadRequest) GetStatus

func (x *GCTScriptAutoLoadRequest) GetStatus() bool

func (*GCTScriptAutoLoadRequest) ProtoMessage

func (*GCTScriptAutoLoadRequest) ProtoMessage()

func (*GCTScriptAutoLoadRequest) ProtoReflect

func (x *GCTScriptAutoLoadRequest) ProtoReflect() protoreflect.Message

func (*GCTScriptAutoLoadRequest) Reset

func (x *GCTScriptAutoLoadRequest) Reset()

func (*GCTScriptAutoLoadRequest) String

func (x *GCTScriptAutoLoadRequest) String() string

type GCTScriptExecuteRequest

type GCTScriptExecuteRequest struct {
	Script *GCTScript `protobuf:"bytes,1,opt,name=script,proto3" json:"script,omitempty"`
	// contains filtered or unexported fields
}

func (*GCTScriptExecuteRequest) Descriptor deprecated

func (*GCTScriptExecuteRequest) Descriptor() ([]byte, []int)

Deprecated: Use GCTScriptExecuteRequest.ProtoReflect.Descriptor instead.

func (*GCTScriptExecuteRequest) GetScript

func (x *GCTScriptExecuteRequest) GetScript() *GCTScript

func (*GCTScriptExecuteRequest) ProtoMessage

func (*GCTScriptExecuteRequest) ProtoMessage()

func (*GCTScriptExecuteRequest) ProtoReflect

func (x *GCTScriptExecuteRequest) ProtoReflect() protoreflect.Message

func (*GCTScriptExecuteRequest) Reset

func (x *GCTScriptExecuteRequest) Reset()

func (*GCTScriptExecuteRequest) String

func (x *GCTScriptExecuteRequest) String() string

type GCTScriptListAllRequest

type GCTScriptListAllRequest struct {
	// contains filtered or unexported fields
}

func (*GCTScriptListAllRequest) Descriptor deprecated

func (*GCTScriptListAllRequest) Descriptor() ([]byte, []int)

Deprecated: Use GCTScriptListAllRequest.ProtoReflect.Descriptor instead.

func (*GCTScriptListAllRequest) ProtoMessage

func (*GCTScriptListAllRequest) ProtoMessage()

func (*GCTScriptListAllRequest) ProtoReflect

func (x *GCTScriptListAllRequest) ProtoReflect() protoreflect.Message

func (*GCTScriptListAllRequest) Reset

func (x *GCTScriptListAllRequest) Reset()

func (*GCTScriptListAllRequest) String

func (x *GCTScriptListAllRequest) String() string

type GCTScriptQueryRequest

type GCTScriptQueryRequest struct {
	Script *GCTScript `protobuf:"bytes,1,opt,name=script,proto3" json:"script,omitempty"`
	// contains filtered or unexported fields
}

func (*GCTScriptQueryRequest) Descriptor deprecated

func (*GCTScriptQueryRequest) Descriptor() ([]byte, []int)

Deprecated: Use GCTScriptQueryRequest.ProtoReflect.Descriptor instead.

func (*GCTScriptQueryRequest) GetScript

func (x *GCTScriptQueryRequest) GetScript() *GCTScript

func (*GCTScriptQueryRequest) ProtoMessage

func (*GCTScriptQueryRequest) ProtoMessage()

func (*GCTScriptQueryRequest) ProtoReflect

func (x *GCTScriptQueryRequest) ProtoReflect() protoreflect.Message

func (*GCTScriptQueryRequest) Reset

func (x *GCTScriptQueryRequest) Reset()

func (*GCTScriptQueryRequest) String

func (x *GCTScriptQueryRequest) String() string

type GCTScriptQueryResponse

type GCTScriptQueryResponse struct {
	Status string     `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Script *GCTScript `protobuf:"bytes,2,opt,name=script,proto3" json:"script,omitempty"`
	Data   string     `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GCTScriptQueryResponse) Descriptor deprecated

func (*GCTScriptQueryResponse) Descriptor() ([]byte, []int)

Deprecated: Use GCTScriptQueryResponse.ProtoReflect.Descriptor instead.

func (*GCTScriptQueryResponse) GetData

func (x *GCTScriptQueryResponse) GetData() string

func (*GCTScriptQueryResponse) GetScript

func (x *GCTScriptQueryResponse) GetScript() *GCTScript

func (*GCTScriptQueryResponse) GetStatus

func (x *GCTScriptQueryResponse) GetStatus() string

func (*GCTScriptQueryResponse) ProtoMessage

func (*GCTScriptQueryResponse) ProtoMessage()

func (*GCTScriptQueryResponse) ProtoReflect

func (x *GCTScriptQueryResponse) ProtoReflect() protoreflect.Message

func (*GCTScriptQueryResponse) Reset

func (x *GCTScriptQueryResponse) Reset()

func (*GCTScriptQueryResponse) String

func (x *GCTScriptQueryResponse) String() string

type GCTScriptReadScriptRequest

type GCTScriptReadScriptRequest struct {
	Script *GCTScript `protobuf:"bytes,1,opt,name=script,proto3" json:"script,omitempty"`
	// contains filtered or unexported fields
}

func (*GCTScriptReadScriptRequest) Descriptor deprecated

func (*GCTScriptReadScriptRequest) Descriptor() ([]byte, []int)

Deprecated: Use GCTScriptReadScriptRequest.ProtoReflect.Descriptor instead.

func (*GCTScriptReadScriptRequest) GetScript

func (x *GCTScriptReadScriptRequest) GetScript() *GCTScript

func (*GCTScriptReadScriptRequest) ProtoMessage

func (*GCTScriptReadScriptRequest) ProtoMessage()

func (*GCTScriptReadScriptRequest) ProtoReflect

func (*GCTScriptReadScriptRequest) Reset

func (x *GCTScriptReadScriptRequest) Reset()

func (*GCTScriptReadScriptRequest) String

func (x *GCTScriptReadScriptRequest) String() string

type GCTScriptStatusRequest

type GCTScriptStatusRequest struct {
	// contains filtered or unexported fields
}

func (*GCTScriptStatusRequest) Descriptor deprecated

func (*GCTScriptStatusRequest) Descriptor() ([]byte, []int)

Deprecated: Use GCTScriptStatusRequest.ProtoReflect.Descriptor instead.

func (*GCTScriptStatusRequest) ProtoMessage

func (*GCTScriptStatusRequest) ProtoMessage()

func (*GCTScriptStatusRequest) ProtoReflect

func (x *GCTScriptStatusRequest) ProtoReflect() protoreflect.Message

func (*GCTScriptStatusRequest) Reset

func (x *GCTScriptStatusRequest) Reset()

func (*GCTScriptStatusRequest) String

func (x *GCTScriptStatusRequest) String() string

type GCTScriptStatusResponse

type GCTScriptStatusResponse struct {
	Status  string       `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Scripts []*GCTScript `protobuf:"bytes,2,rep,name=scripts,proto3" json:"scripts,omitempty"`
	// contains filtered or unexported fields
}

func (*GCTScriptStatusResponse) Descriptor deprecated

func (*GCTScriptStatusResponse) Descriptor() ([]byte, []int)

Deprecated: Use GCTScriptStatusResponse.ProtoReflect.Descriptor instead.

func (*GCTScriptStatusResponse) GetScripts

func (x *GCTScriptStatusResponse) GetScripts() []*GCTScript

func (*GCTScriptStatusResponse) GetStatus

func (x *GCTScriptStatusResponse) GetStatus() string

func (*GCTScriptStatusResponse) ProtoMessage

func (*GCTScriptStatusResponse) ProtoMessage()

func (*GCTScriptStatusResponse) ProtoReflect

func (x *GCTScriptStatusResponse) ProtoReflect() protoreflect.Message

func (*GCTScriptStatusResponse) Reset

func (x *GCTScriptStatusResponse) Reset()

func (*GCTScriptStatusResponse) String

func (x *GCTScriptStatusResponse) String() string

type GCTScriptStopAllRequest

type GCTScriptStopAllRequest struct {
	// contains filtered or unexported fields
}

func (*GCTScriptStopAllRequest) Descriptor deprecated

func (*GCTScriptStopAllRequest) Descriptor() ([]byte, []int)

Deprecated: Use GCTScriptStopAllRequest.ProtoReflect.Descriptor instead.

func (*GCTScriptStopAllRequest) ProtoMessage

func (*GCTScriptStopAllRequest) ProtoMessage()

func (*GCTScriptStopAllRequest) ProtoReflect

func (x *GCTScriptStopAllRequest) ProtoReflect() protoreflect.Message

func (*GCTScriptStopAllRequest) Reset

func (x *GCTScriptStopAllRequest) Reset()

func (*GCTScriptStopAllRequest) String

func (x *GCTScriptStopAllRequest) String() string

type GCTScriptStopRequest

type GCTScriptStopRequest struct {
	Script *GCTScript `protobuf:"bytes,1,opt,name=script,proto3" json:"script,omitempty"`
	// contains filtered or unexported fields
}

func (*GCTScriptStopRequest) Descriptor deprecated

func (*GCTScriptStopRequest) Descriptor() ([]byte, []int)

Deprecated: Use GCTScriptStopRequest.ProtoReflect.Descriptor instead.

func (*GCTScriptStopRequest) GetScript

func (x *GCTScriptStopRequest) GetScript() *GCTScript

func (*GCTScriptStopRequest) ProtoMessage

func (*GCTScriptStopRequest) ProtoMessage()

func (*GCTScriptStopRequest) ProtoReflect

func (x *GCTScriptStopRequest) ProtoReflect() protoreflect.Message

func (*GCTScriptStopRequest) Reset

func (x *GCTScriptStopRequest) Reset()

func (*GCTScriptStopRequest) String

func (x *GCTScriptStopRequest) String() string

type GCTScriptUploadRequest

type GCTScriptUploadRequest struct {
	ScriptName string `protobuf:"bytes,1,opt,name=script_name,json=scriptName,proto3" json:"script_name,omitempty"`
	ScriptData string `protobuf:"bytes,2,opt,name=script_data,json=scriptData,proto3" json:"script_data,omitempty"`
	Data       []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	Archived   bool   `protobuf:"varint,4,opt,name=archived,proto3" json:"archived,omitempty"`
	Overwrite  bool   `protobuf:"varint,5,opt,name=overwrite,proto3" json:"overwrite,omitempty"`
	// contains filtered or unexported fields
}

func (*GCTScriptUploadRequest) Descriptor deprecated

func (*GCTScriptUploadRequest) Descriptor() ([]byte, []int)

Deprecated: Use GCTScriptUploadRequest.ProtoReflect.Descriptor instead.

func (*GCTScriptUploadRequest) GetArchived

func (x *GCTScriptUploadRequest) GetArchived() bool

func (*GCTScriptUploadRequest) GetData

func (x *GCTScriptUploadRequest) GetData() []byte

func (*GCTScriptUploadRequest) GetOverwrite

func (x *GCTScriptUploadRequest) GetOverwrite() bool

func (*GCTScriptUploadRequest) GetScriptData

func (x *GCTScriptUploadRequest) GetScriptData() string

func (*GCTScriptUploadRequest) GetScriptName

func (x *GCTScriptUploadRequest) GetScriptName() string

func (*GCTScriptUploadRequest) ProtoMessage

func (*GCTScriptUploadRequest) ProtoMessage()

func (*GCTScriptUploadRequest) ProtoReflect

func (x *GCTScriptUploadRequest) ProtoReflect() protoreflect.Message

func (*GCTScriptUploadRequest) Reset

func (x *GCTScriptUploadRequest) Reset()

func (*GCTScriptUploadRequest) String

func (x *GCTScriptUploadRequest) String() string

type GenericExchangeNameRequest

type GenericExchangeNameRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	// contains filtered or unexported fields
}

func (*GenericExchangeNameRequest) Descriptor deprecated

func (*GenericExchangeNameRequest) Descriptor() ([]byte, []int)

Deprecated: Use GenericExchangeNameRequest.ProtoReflect.Descriptor instead.

func (*GenericExchangeNameRequest) GetExchange

func (x *GenericExchangeNameRequest) GetExchange() string

func (*GenericExchangeNameRequest) ProtoMessage

func (*GenericExchangeNameRequest) ProtoMessage()

func (*GenericExchangeNameRequest) ProtoReflect

func (*GenericExchangeNameRequest) Reset

func (x *GenericExchangeNameRequest) Reset()

func (*GenericExchangeNameRequest) String

func (x *GenericExchangeNameRequest) String() string

type GenericResponse

type GenericResponse struct {
	Status string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Data   string `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GenericResponse) Descriptor deprecated

func (*GenericResponse) Descriptor() ([]byte, []int)

Deprecated: Use GenericResponse.ProtoReflect.Descriptor instead.

func (*GenericResponse) GetData

func (x *GenericResponse) GetData() string

func (*GenericResponse) GetStatus

func (x *GenericResponse) GetStatus() string

func (*GenericResponse) ProtoMessage

func (*GenericResponse) ProtoMessage()

func (*GenericResponse) ProtoReflect

func (x *GenericResponse) ProtoReflect() protoreflect.Message

func (*GenericResponse) Reset

func (x *GenericResponse) Reset()

func (*GenericResponse) String

func (x *GenericResponse) String() string

type GenericSubsystemRequest

type GenericSubsystemRequest struct {
	Subsystem string `protobuf:"bytes,1,opt,name=subsystem,proto3" json:"subsystem,omitempty"`
	// contains filtered or unexported fields
}

func (*GenericSubsystemRequest) Descriptor deprecated

func (*GenericSubsystemRequest) Descriptor() ([]byte, []int)

Deprecated: Use GenericSubsystemRequest.ProtoReflect.Descriptor instead.

func (*GenericSubsystemRequest) GetSubsystem

func (x *GenericSubsystemRequest) GetSubsystem() string

func (*GenericSubsystemRequest) ProtoMessage

func (*GenericSubsystemRequest) ProtoMessage()

func (*GenericSubsystemRequest) ProtoReflect

func (x *GenericSubsystemRequest) ProtoReflect() protoreflect.Message

func (*GenericSubsystemRequest) Reset

func (x *GenericSubsystemRequest) Reset()

func (*GenericSubsystemRequest) String

func (x *GenericSubsystemRequest) String() string

type GetAccountInfoRequest

type GetAccountInfoRequest struct {
	Exchange  string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	AssetType string `protobuf:"bytes,2,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAccountInfoRequest) Descriptor deprecated

func (*GetAccountInfoRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetAccountInfoRequest.ProtoReflect.Descriptor instead.

func (*GetAccountInfoRequest) GetAssetType

func (x *GetAccountInfoRequest) GetAssetType() string

func (*GetAccountInfoRequest) GetExchange

func (x *GetAccountInfoRequest) GetExchange() string

func (*GetAccountInfoRequest) ProtoMessage

func (*GetAccountInfoRequest) ProtoMessage()

func (*GetAccountInfoRequest) ProtoReflect

func (x *GetAccountInfoRequest) ProtoReflect() protoreflect.Message

func (*GetAccountInfoRequest) Reset

func (x *GetAccountInfoRequest) Reset()

func (*GetAccountInfoRequest) String

func (x *GetAccountInfoRequest) String() string

type GetAccountInfoResponse

type GetAccountInfoResponse struct {
	Exchange string     `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Accounts []*Account `protobuf:"bytes,2,rep,name=accounts,proto3" json:"accounts,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAccountInfoResponse) Descriptor deprecated

func (*GetAccountInfoResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetAccountInfoResponse.ProtoReflect.Descriptor instead.

func (*GetAccountInfoResponse) GetAccounts

func (x *GetAccountInfoResponse) GetAccounts() []*Account

func (*GetAccountInfoResponse) GetExchange

func (x *GetAccountInfoResponse) GetExchange() string

func (*GetAccountInfoResponse) ProtoMessage

func (*GetAccountInfoResponse) ProtoMessage()

func (*GetAccountInfoResponse) ProtoReflect

func (x *GetAccountInfoResponse) ProtoReflect() protoreflect.Message

func (*GetAccountInfoResponse) Reset

func (x *GetAccountInfoResponse) Reset()

func (*GetAccountInfoResponse) String

func (x *GetAccountInfoResponse) String() string

type GetAllManagedPositionsRequest

type GetAllManagedPositionsRequest struct {
	IncludeFullOrderData    bool `` /* 126-byte string literal not displayed */
	GetFundingPayments      bool `protobuf:"varint,2,opt,name=get_funding_payments,json=getFundingPayments,proto3" json:"get_funding_payments,omitempty"`
	IncludeFullFundingRates bool `` /* 135-byte string literal not displayed */
	IncludePredictedRate    bool `protobuf:"varint,4,opt,name=include_predicted_rate,json=includePredictedRate,proto3" json:"include_predicted_rate,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAllManagedPositionsRequest) Descriptor deprecated

func (*GetAllManagedPositionsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetAllManagedPositionsRequest.ProtoReflect.Descriptor instead.

func (*GetAllManagedPositionsRequest) GetGetFundingPayments

func (x *GetAllManagedPositionsRequest) GetGetFundingPayments() bool

func (*GetAllManagedPositionsRequest) GetIncludeFullFundingRates

func (x *GetAllManagedPositionsRequest) GetIncludeFullFundingRates() bool

func (*GetAllManagedPositionsRequest) GetIncludeFullOrderData

func (x *GetAllManagedPositionsRequest) GetIncludeFullOrderData() bool

func (*GetAllManagedPositionsRequest) GetIncludePredictedRate

func (x *GetAllManagedPositionsRequest) GetIncludePredictedRate() bool

func (*GetAllManagedPositionsRequest) ProtoMessage

func (*GetAllManagedPositionsRequest) ProtoMessage()

func (*GetAllManagedPositionsRequest) ProtoReflect

func (*GetAllManagedPositionsRequest) Reset

func (x *GetAllManagedPositionsRequest) Reset()

func (*GetAllManagedPositionsRequest) String

type GetAuditEventRequest

type GetAuditEventRequest struct {
	StartDate string `protobuf:"bytes,1,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`
	EndDate   string `protobuf:"bytes,2,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`
	OrderBy   string `protobuf:"bytes,3,opt,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"`
	Limit     int32  `protobuf:"varint,4,opt,name=limit,proto3" json:"limit,omitempty"`
	Offset    int32  `protobuf:"varint,5,opt,name=offset,proto3" json:"offset,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAuditEventRequest) Descriptor deprecated

func (*GetAuditEventRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetAuditEventRequest.ProtoReflect.Descriptor instead.

func (*GetAuditEventRequest) GetEndDate

func (x *GetAuditEventRequest) GetEndDate() string

func (*GetAuditEventRequest) GetLimit

func (x *GetAuditEventRequest) GetLimit() int32

func (*GetAuditEventRequest) GetOffset

func (x *GetAuditEventRequest) GetOffset() int32

func (*GetAuditEventRequest) GetOrderBy

func (x *GetAuditEventRequest) GetOrderBy() string

func (*GetAuditEventRequest) GetStartDate

func (x *GetAuditEventRequest) GetStartDate() string

func (*GetAuditEventRequest) ProtoMessage

func (*GetAuditEventRequest) ProtoMessage()

func (*GetAuditEventRequest) ProtoReflect

func (x *GetAuditEventRequest) ProtoReflect() protoreflect.Message

func (*GetAuditEventRequest) Reset

func (x *GetAuditEventRequest) Reset()

func (*GetAuditEventRequest) String

func (x *GetAuditEventRequest) String() string

type GetAuditEventResponse

type GetAuditEventResponse struct {
	Events []*AuditEvent `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAuditEventResponse) Descriptor deprecated

func (*GetAuditEventResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetAuditEventResponse.ProtoReflect.Descriptor instead.

func (*GetAuditEventResponse) GetEvents

func (x *GetAuditEventResponse) GetEvents() []*AuditEvent

func (*GetAuditEventResponse) ProtoMessage

func (*GetAuditEventResponse) ProtoMessage()

func (*GetAuditEventResponse) ProtoReflect

func (x *GetAuditEventResponse) ProtoReflect() protoreflect.Message

func (*GetAuditEventResponse) Reset

func (x *GetAuditEventResponse) Reset()

func (*GetAuditEventResponse) String

func (x *GetAuditEventResponse) String() string

type GetAvailableTransferChainsRequest

type GetAvailableTransferChainsRequest struct {
	Exchange       string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Cryptocurrency string `protobuf:"bytes,2,opt,name=cryptocurrency,proto3" json:"cryptocurrency,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAvailableTransferChainsRequest) Descriptor deprecated

func (*GetAvailableTransferChainsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetAvailableTransferChainsRequest.ProtoReflect.Descriptor instead.

func (*GetAvailableTransferChainsRequest) GetCryptocurrency

func (x *GetAvailableTransferChainsRequest) GetCryptocurrency() string

func (*GetAvailableTransferChainsRequest) GetExchange

func (x *GetAvailableTransferChainsRequest) GetExchange() string

func (*GetAvailableTransferChainsRequest) ProtoMessage

func (*GetAvailableTransferChainsRequest) ProtoMessage()

func (*GetAvailableTransferChainsRequest) ProtoReflect

func (*GetAvailableTransferChainsRequest) Reset

func (*GetAvailableTransferChainsRequest) String

type GetAvailableTransferChainsResponse

type GetAvailableTransferChainsResponse struct {
	Chains []string `protobuf:"bytes,1,rep,name=chains,proto3" json:"chains,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAvailableTransferChainsResponse) Descriptor deprecated

func (*GetAvailableTransferChainsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetAvailableTransferChainsResponse.ProtoReflect.Descriptor instead.

func (*GetAvailableTransferChainsResponse) GetChains

func (x *GetAvailableTransferChainsResponse) GetChains() []string

func (*GetAvailableTransferChainsResponse) ProtoMessage

func (*GetAvailableTransferChainsResponse) ProtoMessage()

func (*GetAvailableTransferChainsResponse) ProtoReflect

func (*GetAvailableTransferChainsResponse) Reset

func (*GetAvailableTransferChainsResponse) String

type GetCollateralModeRequest

type GetCollateralModeRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset    string `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCollateralModeRequest) Descriptor deprecated

func (*GetCollateralModeRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetCollateralModeRequest.ProtoReflect.Descriptor instead.

func (*GetCollateralModeRequest) GetAsset

func (x *GetCollateralModeRequest) GetAsset() string

func (*GetCollateralModeRequest) GetExchange

func (x *GetCollateralModeRequest) GetExchange() string

func (*GetCollateralModeRequest) ProtoMessage

func (*GetCollateralModeRequest) ProtoMessage()

func (*GetCollateralModeRequest) ProtoReflect

func (x *GetCollateralModeRequest) ProtoReflect() protoreflect.Message

func (*GetCollateralModeRequest) Reset

func (x *GetCollateralModeRequest) Reset()

func (*GetCollateralModeRequest) String

func (x *GetCollateralModeRequest) String() string

type GetCollateralModeResponse

type GetCollateralModeResponse struct {
	Exchange       string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset          string `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	CollateralMode string `protobuf:"bytes,3,opt,name=collateral_mode,json=collateralMode,proto3" json:"collateral_mode,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCollateralModeResponse) Descriptor deprecated

func (*GetCollateralModeResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetCollateralModeResponse.ProtoReflect.Descriptor instead.

func (*GetCollateralModeResponse) GetAsset

func (x *GetCollateralModeResponse) GetAsset() string

func (*GetCollateralModeResponse) GetCollateralMode

func (x *GetCollateralModeResponse) GetCollateralMode() string

func (*GetCollateralModeResponse) GetExchange

func (x *GetCollateralModeResponse) GetExchange() string

func (*GetCollateralModeResponse) ProtoMessage

func (*GetCollateralModeResponse) ProtoMessage()

func (*GetCollateralModeResponse) ProtoReflect

func (*GetCollateralModeResponse) Reset

func (x *GetCollateralModeResponse) Reset()

func (*GetCollateralModeResponse) String

func (x *GetCollateralModeResponse) String() string

type GetCollateralRequest

type GetCollateralRequest struct {
	Exchange          string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset             string `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	IncludeBreakdown  bool   `protobuf:"varint,3,opt,name=include_breakdown,json=includeBreakdown,proto3" json:"include_breakdown,omitempty"`
	CalculateOffline  bool   `protobuf:"varint,4,opt,name=calculate_offline,json=calculateOffline,proto3" json:"calculate_offline,omitempty"`
	IncludeZeroValues bool   `protobuf:"varint,5,opt,name=include_zero_values,json=includeZeroValues,proto3" json:"include_zero_values,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCollateralRequest) Descriptor deprecated

func (*GetCollateralRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetCollateralRequest.ProtoReflect.Descriptor instead.

func (*GetCollateralRequest) GetAsset

func (x *GetCollateralRequest) GetAsset() string

func (*GetCollateralRequest) GetCalculateOffline

func (x *GetCollateralRequest) GetCalculateOffline() bool

func (*GetCollateralRequest) GetExchange

func (x *GetCollateralRequest) GetExchange() string

func (*GetCollateralRequest) GetIncludeBreakdown

func (x *GetCollateralRequest) GetIncludeBreakdown() bool

func (*GetCollateralRequest) GetIncludeZeroValues

func (x *GetCollateralRequest) GetIncludeZeroValues() bool

func (*GetCollateralRequest) ProtoMessage

func (*GetCollateralRequest) ProtoMessage()

func (*GetCollateralRequest) ProtoReflect

func (x *GetCollateralRequest) ProtoReflect() protoreflect.Message

func (*GetCollateralRequest) Reset

func (x *GetCollateralRequest) Reset()

func (*GetCollateralRequest) String

func (x *GetCollateralRequest) String() string

type GetCollateralResponse

type GetCollateralResponse struct {
	SubAccount                                  string                   `protobuf:"bytes,1,opt,name=sub_account,json=subAccount,proto3" json:"sub_account,omitempty"`
	CollateralCurrency                          string                   `protobuf:"bytes,2,opt,name=collateral_currency,json=collateralCurrency,proto3" json:"collateral_currency,omitempty"`
	TotalValueOfPositiveSpotBalances            string                   `` /* 165-byte string literal not displayed */
	CollateralContributedByPositiveSpotBalances string                   `` /* 198-byte string literal not displayed */
	UsedCollateral                              string                   `protobuf:"bytes,5,opt,name=used_collateral,json=usedCollateral,proto3" json:"used_collateral,omitempty"`
	UsedBreakdown                               *CollateralUsedBreakdown `protobuf:"bytes,6,opt,name=used_breakdown,json=usedBreakdown,proto3" json:"used_breakdown,omitempty"`
	AvailableCollateral                         string                   `protobuf:"bytes,7,opt,name=available_collateral,json=availableCollateral,proto3" json:"available_collateral,omitempty"`
	MaintenanceCollateral                       string                   `protobuf:"bytes,8,opt,name=maintenance_collateral,json=maintenanceCollateral,proto3" json:"maintenance_collateral,omitempty"`
	UnrealisedPnl                               string                   `protobuf:"bytes,9,opt,name=unrealised_pnl,json=unrealisedPnl,proto3" json:"unrealised_pnl,omitempty"`
	CurrencyBreakdown                           []*CollateralForCurrency `protobuf:"bytes,10,rep,name=currency_breakdown,json=currencyBreakdown,proto3" json:"currency_breakdown,omitempty"`
	PositionBreakdown                           []*CollateralByPosition  `protobuf:"bytes,11,rep,name=position_breakdown,json=positionBreakdown,proto3" json:"position_breakdown,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCollateralResponse) Descriptor deprecated

func (*GetCollateralResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetCollateralResponse.ProtoReflect.Descriptor instead.

func (*GetCollateralResponse) GetAvailableCollateral

func (x *GetCollateralResponse) GetAvailableCollateral() string

func (*GetCollateralResponse) GetCollateralContributedByPositiveSpotBalances

func (x *GetCollateralResponse) GetCollateralContributedByPositiveSpotBalances() string

func (*GetCollateralResponse) GetCollateralCurrency

func (x *GetCollateralResponse) GetCollateralCurrency() string

func (*GetCollateralResponse) GetCurrencyBreakdown

func (x *GetCollateralResponse) GetCurrencyBreakdown() []*CollateralForCurrency

func (*GetCollateralResponse) GetMaintenanceCollateral

func (x *GetCollateralResponse) GetMaintenanceCollateral() string

func (*GetCollateralResponse) GetPositionBreakdown

func (x *GetCollateralResponse) GetPositionBreakdown() []*CollateralByPosition

func (*GetCollateralResponse) GetSubAccount

func (x *GetCollateralResponse) GetSubAccount() string

func (*GetCollateralResponse) GetTotalValueOfPositiveSpotBalances

func (x *GetCollateralResponse) GetTotalValueOfPositiveSpotBalances() string

func (*GetCollateralResponse) GetUnrealisedPnl

func (x *GetCollateralResponse) GetUnrealisedPnl() string

func (*GetCollateralResponse) GetUsedBreakdown

func (x *GetCollateralResponse) GetUsedBreakdown() *CollateralUsedBreakdown

func (*GetCollateralResponse) GetUsedCollateral

func (x *GetCollateralResponse) GetUsedCollateral() string

func (*GetCollateralResponse) ProtoMessage

func (*GetCollateralResponse) ProtoMessage()

func (*GetCollateralResponse) ProtoReflect

func (x *GetCollateralResponse) ProtoReflect() protoreflect.Message

func (*GetCollateralResponse) Reset

func (x *GetCollateralResponse) Reset()

func (*GetCollateralResponse) String

func (x *GetCollateralResponse) String() string

type GetCommunicationRelayersRequest

type GetCommunicationRelayersRequest struct {
	// contains filtered or unexported fields
}

func (*GetCommunicationRelayersRequest) Descriptor deprecated

func (*GetCommunicationRelayersRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetCommunicationRelayersRequest.ProtoReflect.Descriptor instead.

func (*GetCommunicationRelayersRequest) ProtoMessage

func (*GetCommunicationRelayersRequest) ProtoMessage()

func (*GetCommunicationRelayersRequest) ProtoReflect

func (*GetCommunicationRelayersRequest) Reset

func (*GetCommunicationRelayersRequest) String

type GetCommunicationRelayersResponse

type GetCommunicationRelayersResponse struct {
	CommunicationRelayers map[string]*CommunicationRelayer `` /* 212-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetCommunicationRelayersResponse) Descriptor deprecated

func (*GetCommunicationRelayersResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetCommunicationRelayersResponse.ProtoReflect.Descriptor instead.

func (*GetCommunicationRelayersResponse) GetCommunicationRelayers

func (x *GetCommunicationRelayersResponse) GetCommunicationRelayers() map[string]*CommunicationRelayer

func (*GetCommunicationRelayersResponse) ProtoMessage

func (*GetCommunicationRelayersResponse) ProtoMessage()

func (*GetCommunicationRelayersResponse) ProtoReflect

func (*GetCommunicationRelayersResponse) Reset

func (*GetCommunicationRelayersResponse) String

type GetConfigRequest

type GetConfigRequest struct {
	// contains filtered or unexported fields
}

func (*GetConfigRequest) Descriptor deprecated

func (*GetConfigRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetConfigRequest.ProtoReflect.Descriptor instead.

func (*GetConfigRequest) ProtoMessage

func (*GetConfigRequest) ProtoMessage()

func (*GetConfigRequest) ProtoReflect

func (x *GetConfigRequest) ProtoReflect() protoreflect.Message

func (*GetConfigRequest) Reset

func (x *GetConfigRequest) Reset()

func (*GetConfigRequest) String

func (x *GetConfigRequest) String() string

type GetConfigResponse

type GetConfigResponse struct {
	Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetConfigResponse) Descriptor deprecated

func (*GetConfigResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetConfigResponse.ProtoReflect.Descriptor instead.

func (*GetConfigResponse) GetData

func (x *GetConfigResponse) GetData() []byte

func (*GetConfigResponse) ProtoMessage

func (*GetConfigResponse) ProtoMessage()

func (*GetConfigResponse) ProtoReflect

func (x *GetConfigResponse) ProtoReflect() protoreflect.Message

func (*GetConfigResponse) Reset

func (x *GetConfigResponse) Reset()

func (*GetConfigResponse) String

func (x *GetConfigResponse) String() string

type GetCryptocurrencyDepositAddressRequest

type GetCryptocurrencyDepositAddressRequest struct {
	Exchange       string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Cryptocurrency string `protobuf:"bytes,2,opt,name=cryptocurrency,proto3" json:"cryptocurrency,omitempty"`
	Chain          string `protobuf:"bytes,3,opt,name=chain,proto3" json:"chain,omitempty"`
	Bypass         bool   `protobuf:"varint,4,opt,name=bypass,proto3" json:"bypass,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCryptocurrencyDepositAddressRequest) Descriptor deprecated

func (*GetCryptocurrencyDepositAddressRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetCryptocurrencyDepositAddressRequest.ProtoReflect.Descriptor instead.

func (*GetCryptocurrencyDepositAddressRequest) GetBypass

func (*GetCryptocurrencyDepositAddressRequest) GetChain

func (*GetCryptocurrencyDepositAddressRequest) GetCryptocurrency

func (x *GetCryptocurrencyDepositAddressRequest) GetCryptocurrency() string

func (*GetCryptocurrencyDepositAddressRequest) GetExchange

func (*GetCryptocurrencyDepositAddressRequest) ProtoMessage

func (*GetCryptocurrencyDepositAddressRequest) ProtoReflect

func (*GetCryptocurrencyDepositAddressRequest) Reset

func (*GetCryptocurrencyDepositAddressRequest) String

type GetCryptocurrencyDepositAddressResponse

type GetCryptocurrencyDepositAddressResponse struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Tag     string `protobuf:"bytes,2,opt,name=tag,proto3" json:"tag,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCryptocurrencyDepositAddressResponse) Descriptor deprecated

func (*GetCryptocurrencyDepositAddressResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetCryptocurrencyDepositAddressResponse.ProtoReflect.Descriptor instead.

func (*GetCryptocurrencyDepositAddressResponse) GetAddress

func (*GetCryptocurrencyDepositAddressResponse) GetTag

func (*GetCryptocurrencyDepositAddressResponse) ProtoMessage

func (*GetCryptocurrencyDepositAddressResponse) ProtoReflect

func (*GetCryptocurrencyDepositAddressResponse) Reset

func (*GetCryptocurrencyDepositAddressResponse) String

type GetCryptocurrencyDepositAddressesRequest

type GetCryptocurrencyDepositAddressesRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCryptocurrencyDepositAddressesRequest) Descriptor deprecated

func (*GetCryptocurrencyDepositAddressesRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetCryptocurrencyDepositAddressesRequest.ProtoReflect.Descriptor instead.

func (*GetCryptocurrencyDepositAddressesRequest) GetExchange

func (*GetCryptocurrencyDepositAddressesRequest) ProtoMessage

func (*GetCryptocurrencyDepositAddressesRequest) ProtoReflect

func (*GetCryptocurrencyDepositAddressesRequest) Reset

func (*GetCryptocurrencyDepositAddressesRequest) String

type GetCryptocurrencyDepositAddressesResponse

type GetCryptocurrencyDepositAddressesResponse struct {
	Addresses map[string]*DepositAddresses `` /* 159-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetCryptocurrencyDepositAddressesResponse) Descriptor deprecated

func (*GetCryptocurrencyDepositAddressesResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetCryptocurrencyDepositAddressesResponse.ProtoReflect.Descriptor instead.

func (*GetCryptocurrencyDepositAddressesResponse) GetAddresses

func (*GetCryptocurrencyDepositAddressesResponse) ProtoMessage

func (*GetCryptocurrencyDepositAddressesResponse) ProtoReflect

func (*GetCryptocurrencyDepositAddressesResponse) Reset

func (*GetCryptocurrencyDepositAddressesResponse) String

type GetCurrencyTradeURLRequest

type GetCurrencyTradeURLRequest struct {
	Exchange string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset    string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair     *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCurrencyTradeURLRequest) Descriptor deprecated

func (*GetCurrencyTradeURLRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetCurrencyTradeURLRequest.ProtoReflect.Descriptor instead.

func (*GetCurrencyTradeURLRequest) GetAsset

func (x *GetCurrencyTradeURLRequest) GetAsset() string

func (*GetCurrencyTradeURLRequest) GetExchange

func (x *GetCurrencyTradeURLRequest) GetExchange() string

func (*GetCurrencyTradeURLRequest) GetPair

func (*GetCurrencyTradeURLRequest) ProtoMessage

func (*GetCurrencyTradeURLRequest) ProtoMessage()

func (*GetCurrencyTradeURLRequest) ProtoReflect

func (*GetCurrencyTradeURLRequest) Reset

func (x *GetCurrencyTradeURLRequest) Reset()

func (*GetCurrencyTradeURLRequest) String

func (x *GetCurrencyTradeURLRequest) String() string

type GetCurrencyTradeURLResponse

type GetCurrencyTradeURLResponse struct {
	Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCurrencyTradeURLResponse) Descriptor deprecated

func (*GetCurrencyTradeURLResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetCurrencyTradeURLResponse.ProtoReflect.Descriptor instead.

func (*GetCurrencyTradeURLResponse) GetUrl

func (x *GetCurrencyTradeURLResponse) GetUrl() string

func (*GetCurrencyTradeURLResponse) ProtoMessage

func (*GetCurrencyTradeURLResponse) ProtoMessage()

func (*GetCurrencyTradeURLResponse) ProtoReflect

func (*GetCurrencyTradeURLResponse) Reset

func (x *GetCurrencyTradeURLResponse) Reset()

func (*GetCurrencyTradeURLResponse) String

func (x *GetCurrencyTradeURLResponse) String() string

type GetDataHistoryJobDetailsRequest

type GetDataHistoryJobDetailsRequest struct {
	Id          string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Nickname    string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"`
	FullDetails bool   `protobuf:"varint,3,opt,name=full_details,json=fullDetails,proto3" json:"full_details,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDataHistoryJobDetailsRequest) Descriptor deprecated

func (*GetDataHistoryJobDetailsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetDataHistoryJobDetailsRequest.ProtoReflect.Descriptor instead.

func (*GetDataHistoryJobDetailsRequest) GetFullDetails

func (x *GetDataHistoryJobDetailsRequest) GetFullDetails() bool

func (*GetDataHistoryJobDetailsRequest) GetId

func (*GetDataHistoryJobDetailsRequest) GetNickname

func (x *GetDataHistoryJobDetailsRequest) GetNickname() string

func (*GetDataHistoryJobDetailsRequest) ProtoMessage

func (*GetDataHistoryJobDetailsRequest) ProtoMessage()

func (*GetDataHistoryJobDetailsRequest) ProtoReflect

func (*GetDataHistoryJobDetailsRequest) Reset

func (*GetDataHistoryJobDetailsRequest) String

type GetDataHistoryJobsBetweenRequest

type GetDataHistoryJobsBetweenRequest struct {
	StartDate string `protobuf:"bytes,1,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`
	EndDate   string `protobuf:"bytes,2,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDataHistoryJobsBetweenRequest) Descriptor deprecated

func (*GetDataHistoryJobsBetweenRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetDataHistoryJobsBetweenRequest.ProtoReflect.Descriptor instead.

func (*GetDataHistoryJobsBetweenRequest) GetEndDate

func (x *GetDataHistoryJobsBetweenRequest) GetEndDate() string

func (*GetDataHistoryJobsBetweenRequest) GetStartDate

func (x *GetDataHistoryJobsBetweenRequest) GetStartDate() string

func (*GetDataHistoryJobsBetweenRequest) ProtoMessage

func (*GetDataHistoryJobsBetweenRequest) ProtoMessage()

func (*GetDataHistoryJobsBetweenRequest) ProtoReflect

func (*GetDataHistoryJobsBetweenRequest) Reset

func (*GetDataHistoryJobsBetweenRequest) String

type GetEventsRequest

type GetEventsRequest struct {
	// contains filtered or unexported fields
}

func (*GetEventsRequest) Descriptor deprecated

func (*GetEventsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetEventsRequest.ProtoReflect.Descriptor instead.

func (*GetEventsRequest) ProtoMessage

func (*GetEventsRequest) ProtoMessage()

func (*GetEventsRequest) ProtoReflect

func (x *GetEventsRequest) ProtoReflect() protoreflect.Message

func (*GetEventsRequest) Reset

func (x *GetEventsRequest) Reset()

func (*GetEventsRequest) String

func (x *GetEventsRequest) String() string

type GetEventsResponse

type GetEventsResponse struct {
	Id              int64            `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Exchange        string           `protobuf:"bytes,2,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Item            string           `protobuf:"bytes,3,opt,name=item,proto3" json:"item,omitempty"`
	ConditionParams *ConditionParams `protobuf:"bytes,4,opt,name=condition_params,json=conditionParams,proto3" json:"condition_params,omitempty"`
	Pair            *CurrencyPair    `protobuf:"bytes,5,opt,name=pair,proto3" json:"pair,omitempty"`
	Action          string           `protobuf:"bytes,6,opt,name=action,proto3" json:"action,omitempty"`
	Executed        bool             `protobuf:"varint,7,opt,name=executed,proto3" json:"executed,omitempty"`
	// contains filtered or unexported fields
}

func (*GetEventsResponse) Descriptor deprecated

func (*GetEventsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetEventsResponse.ProtoReflect.Descriptor instead.

func (*GetEventsResponse) GetAction

func (x *GetEventsResponse) GetAction() string

func (*GetEventsResponse) GetConditionParams

func (x *GetEventsResponse) GetConditionParams() *ConditionParams

func (*GetEventsResponse) GetExchange

func (x *GetEventsResponse) GetExchange() string

func (*GetEventsResponse) GetExecuted

func (x *GetEventsResponse) GetExecuted() bool

func (*GetEventsResponse) GetId

func (x *GetEventsResponse) GetId() int64

func (*GetEventsResponse) GetItem

func (x *GetEventsResponse) GetItem() string

func (*GetEventsResponse) GetPair

func (x *GetEventsResponse) GetPair() *CurrencyPair

func (*GetEventsResponse) ProtoMessage

func (*GetEventsResponse) ProtoMessage()

func (*GetEventsResponse) ProtoReflect

func (x *GetEventsResponse) ProtoReflect() protoreflect.Message

func (*GetEventsResponse) Reset

func (x *GetEventsResponse) Reset()

func (*GetEventsResponse) String

func (x *GetEventsResponse) String() string

type GetExchangeAssetsRequest

type GetExchangeAssetsRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	// contains filtered or unexported fields
}

func (*GetExchangeAssetsRequest) Descriptor deprecated

func (*GetExchangeAssetsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetExchangeAssetsRequest.ProtoReflect.Descriptor instead.

func (*GetExchangeAssetsRequest) GetExchange

func (x *GetExchangeAssetsRequest) GetExchange() string

func (*GetExchangeAssetsRequest) ProtoMessage

func (*GetExchangeAssetsRequest) ProtoMessage()

func (*GetExchangeAssetsRequest) ProtoReflect

func (x *GetExchangeAssetsRequest) ProtoReflect() protoreflect.Message

func (*GetExchangeAssetsRequest) Reset

func (x *GetExchangeAssetsRequest) Reset()

func (*GetExchangeAssetsRequest) String

func (x *GetExchangeAssetsRequest) String() string

type GetExchangeAssetsResponse

type GetExchangeAssetsResponse struct {
	Assets string `protobuf:"bytes,1,opt,name=assets,proto3" json:"assets,omitempty"`
	// contains filtered or unexported fields
}

func (*GetExchangeAssetsResponse) Descriptor deprecated

func (*GetExchangeAssetsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetExchangeAssetsResponse.ProtoReflect.Descriptor instead.

func (*GetExchangeAssetsResponse) GetAssets

func (x *GetExchangeAssetsResponse) GetAssets() string

func (*GetExchangeAssetsResponse) ProtoMessage

func (*GetExchangeAssetsResponse) ProtoMessage()

func (*GetExchangeAssetsResponse) ProtoReflect

func (*GetExchangeAssetsResponse) Reset

func (x *GetExchangeAssetsResponse) Reset()

func (*GetExchangeAssetsResponse) String

func (x *GetExchangeAssetsResponse) String() string

type GetExchangeInfoResponse

type GetExchangeInfoResponse struct {
	Name             string                     `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Enabled          bool                       `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
	Verbose          bool                       `protobuf:"varint,3,opt,name=verbose,proto3" json:"verbose,omitempty"`
	UsingSandbox     bool                       `protobuf:"varint,4,opt,name=using_sandbox,json=usingSandbox,proto3" json:"using_sandbox,omitempty"`
	HttpTimeout      string                     `protobuf:"bytes,5,opt,name=http_timeout,json=httpTimeout,proto3" json:"http_timeout,omitempty"`
	HttpUseragent    string                     `protobuf:"bytes,6,opt,name=http_useragent,json=httpUseragent,proto3" json:"http_useragent,omitempty"`
	HttpProxy        string                     `protobuf:"bytes,7,opt,name=http_proxy,json=httpProxy,proto3" json:"http_proxy,omitempty"`
	BaseCurrencies   string                     `protobuf:"bytes,8,opt,name=base_currencies,json=baseCurrencies,proto3" json:"base_currencies,omitempty"`
	SupportedAssets  map[string]*PairsSupported `` /* 194-byte string literal not displayed */
	AuthenticatedApi bool                       `protobuf:"varint,10,opt,name=authenticated_api,json=authenticatedApi,proto3" json:"authenticated_api,omitempty"`
	// contains filtered or unexported fields
}

func (*GetExchangeInfoResponse) Descriptor deprecated

func (*GetExchangeInfoResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetExchangeInfoResponse.ProtoReflect.Descriptor instead.

func (*GetExchangeInfoResponse) GetAuthenticatedApi

func (x *GetExchangeInfoResponse) GetAuthenticatedApi() bool

func (*GetExchangeInfoResponse) GetBaseCurrencies

func (x *GetExchangeInfoResponse) GetBaseCurrencies() string

func (*GetExchangeInfoResponse) GetEnabled

func (x *GetExchangeInfoResponse) GetEnabled() bool

func (*GetExchangeInfoResponse) GetHttpProxy

func (x *GetExchangeInfoResponse) GetHttpProxy() string

func (*GetExchangeInfoResponse) GetHttpTimeout

func (x *GetExchangeInfoResponse) GetHttpTimeout() string

func (*GetExchangeInfoResponse) GetHttpUseragent

func (x *GetExchangeInfoResponse) GetHttpUseragent() string

func (*GetExchangeInfoResponse) GetName

func (x *GetExchangeInfoResponse) GetName() string

func (*GetExchangeInfoResponse) GetSupportedAssets

func (x *GetExchangeInfoResponse) GetSupportedAssets() map[string]*PairsSupported

func (*GetExchangeInfoResponse) GetUsingSandbox

func (x *GetExchangeInfoResponse) GetUsingSandbox() bool

func (*GetExchangeInfoResponse) GetVerbose

func (x *GetExchangeInfoResponse) GetVerbose() bool

func (*GetExchangeInfoResponse) ProtoMessage

func (*GetExchangeInfoResponse) ProtoMessage()

func (*GetExchangeInfoResponse) ProtoReflect

func (x *GetExchangeInfoResponse) ProtoReflect() protoreflect.Message

func (*GetExchangeInfoResponse) Reset

func (x *GetExchangeInfoResponse) Reset()

func (*GetExchangeInfoResponse) String

func (x *GetExchangeInfoResponse) String() string

type GetExchangeOTPResponse

type GetExchangeOTPResponse struct {
	OtpCode string `protobuf:"bytes,1,opt,name=otp_code,json=otpCode,proto3" json:"otp_code,omitempty"`
	// contains filtered or unexported fields
}

func (*GetExchangeOTPResponse) Descriptor deprecated

func (*GetExchangeOTPResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetExchangeOTPResponse.ProtoReflect.Descriptor instead.

func (*GetExchangeOTPResponse) GetOtpCode

func (x *GetExchangeOTPResponse) GetOtpCode() string

func (*GetExchangeOTPResponse) ProtoMessage

func (*GetExchangeOTPResponse) ProtoMessage()

func (*GetExchangeOTPResponse) ProtoReflect

func (x *GetExchangeOTPResponse) ProtoReflect() protoreflect.Message

func (*GetExchangeOTPResponse) Reset

func (x *GetExchangeOTPResponse) Reset()

func (*GetExchangeOTPResponse) String

func (x *GetExchangeOTPResponse) String() string

type GetExchangeOTPsRequest

type GetExchangeOTPsRequest struct {
	// contains filtered or unexported fields
}

func (*GetExchangeOTPsRequest) Descriptor deprecated

func (*GetExchangeOTPsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetExchangeOTPsRequest.ProtoReflect.Descriptor instead.

func (*GetExchangeOTPsRequest) ProtoMessage

func (*GetExchangeOTPsRequest) ProtoMessage()

func (*GetExchangeOTPsRequest) ProtoReflect

func (x *GetExchangeOTPsRequest) ProtoReflect() protoreflect.Message

func (*GetExchangeOTPsRequest) Reset

func (x *GetExchangeOTPsRequest) Reset()

func (*GetExchangeOTPsRequest) String

func (x *GetExchangeOTPsRequest) String() string

type GetExchangeOTPsResponse

type GetExchangeOTPsResponse struct {
	OtpCodes map[string]string `` /* 173-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetExchangeOTPsResponse) Descriptor deprecated

func (*GetExchangeOTPsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetExchangeOTPsResponse.ProtoReflect.Descriptor instead.

func (*GetExchangeOTPsResponse) GetOtpCodes

func (x *GetExchangeOTPsResponse) GetOtpCodes() map[string]string

func (*GetExchangeOTPsResponse) ProtoMessage

func (*GetExchangeOTPsResponse) ProtoMessage()

func (*GetExchangeOTPsResponse) ProtoReflect

func (x *GetExchangeOTPsResponse) ProtoReflect() protoreflect.Message

func (*GetExchangeOTPsResponse) Reset

func (x *GetExchangeOTPsResponse) Reset()

func (*GetExchangeOTPsResponse) String

func (x *GetExchangeOTPsResponse) String() string

type GetExchangeOrderbookStreamRequest

type GetExchangeOrderbookStreamRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	// contains filtered or unexported fields
}

func (*GetExchangeOrderbookStreamRequest) Descriptor deprecated

func (*GetExchangeOrderbookStreamRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetExchangeOrderbookStreamRequest.ProtoReflect.Descriptor instead.

func (*GetExchangeOrderbookStreamRequest) GetExchange

func (x *GetExchangeOrderbookStreamRequest) GetExchange() string

func (*GetExchangeOrderbookStreamRequest) ProtoMessage

func (*GetExchangeOrderbookStreamRequest) ProtoMessage()

func (*GetExchangeOrderbookStreamRequest) ProtoReflect

func (*GetExchangeOrderbookStreamRequest) Reset

func (*GetExchangeOrderbookStreamRequest) String

type GetExchangePairsRequest

type GetExchangePairsRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset    string `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	// contains filtered or unexported fields
}

func (*GetExchangePairsRequest) Descriptor deprecated

func (*GetExchangePairsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetExchangePairsRequest.ProtoReflect.Descriptor instead.

func (*GetExchangePairsRequest) GetAsset

func (x *GetExchangePairsRequest) GetAsset() string

func (*GetExchangePairsRequest) GetExchange

func (x *GetExchangePairsRequest) GetExchange() string

func (*GetExchangePairsRequest) ProtoMessage

func (*GetExchangePairsRequest) ProtoMessage()

func (*GetExchangePairsRequest) ProtoReflect

func (x *GetExchangePairsRequest) ProtoReflect() protoreflect.Message

func (*GetExchangePairsRequest) Reset

func (x *GetExchangePairsRequest) Reset()

func (*GetExchangePairsRequest) String

func (x *GetExchangePairsRequest) String() string

type GetExchangePairsResponse

type GetExchangePairsResponse struct {
	SupportedAssets map[string]*PairsSupported `` /* 194-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetExchangePairsResponse) Descriptor deprecated

func (*GetExchangePairsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetExchangePairsResponse.ProtoReflect.Descriptor instead.

func (*GetExchangePairsResponse) GetSupportedAssets

func (x *GetExchangePairsResponse) GetSupportedAssets() map[string]*PairsSupported

func (*GetExchangePairsResponse) ProtoMessage

func (*GetExchangePairsResponse) ProtoMessage()

func (*GetExchangePairsResponse) ProtoReflect

func (x *GetExchangePairsResponse) ProtoReflect() protoreflect.Message

func (*GetExchangePairsResponse) Reset

func (x *GetExchangePairsResponse) Reset()

func (*GetExchangePairsResponse) String

func (x *GetExchangePairsResponse) String() string

type GetExchangeTickerStreamRequest

type GetExchangeTickerStreamRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	// contains filtered or unexported fields
}

func (*GetExchangeTickerStreamRequest) Descriptor deprecated

func (*GetExchangeTickerStreamRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetExchangeTickerStreamRequest.ProtoReflect.Descriptor instead.

func (*GetExchangeTickerStreamRequest) GetExchange

func (x *GetExchangeTickerStreamRequest) GetExchange() string

func (*GetExchangeTickerStreamRequest) ProtoMessage

func (*GetExchangeTickerStreamRequest) ProtoMessage()

func (*GetExchangeTickerStreamRequest) ProtoReflect

func (*GetExchangeTickerStreamRequest) Reset

func (x *GetExchangeTickerStreamRequest) Reset()

func (*GetExchangeTickerStreamRequest) String

type GetExchangesRequest

type GetExchangesRequest struct {
	Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	// contains filtered or unexported fields
}

func (*GetExchangesRequest) Descriptor deprecated

func (*GetExchangesRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetExchangesRequest.ProtoReflect.Descriptor instead.

func (*GetExchangesRequest) GetEnabled

func (x *GetExchangesRequest) GetEnabled() bool

func (*GetExchangesRequest) ProtoMessage

func (*GetExchangesRequest) ProtoMessage()

func (*GetExchangesRequest) ProtoReflect

func (x *GetExchangesRequest) ProtoReflect() protoreflect.Message

func (*GetExchangesRequest) Reset

func (x *GetExchangesRequest) Reset()

func (*GetExchangesRequest) String

func (x *GetExchangesRequest) String() string

type GetExchangesResponse

type GetExchangesResponse struct {
	Exchanges string `protobuf:"bytes,1,opt,name=exchanges,proto3" json:"exchanges,omitempty"`
	// contains filtered or unexported fields
}

func (*GetExchangesResponse) Descriptor deprecated

func (*GetExchangesResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetExchangesResponse.ProtoReflect.Descriptor instead.

func (*GetExchangesResponse) GetExchanges

func (x *GetExchangesResponse) GetExchanges() string

func (*GetExchangesResponse) ProtoMessage

func (*GetExchangesResponse) ProtoMessage()

func (*GetExchangesResponse) ProtoReflect

func (x *GetExchangesResponse) ProtoReflect() protoreflect.Message

func (*GetExchangesResponse) Reset

func (x *GetExchangesResponse) Reset()

func (*GetExchangesResponse) String

func (x *GetExchangesResponse) String() string

type GetForexProvidersRequest

type GetForexProvidersRequest struct {
	// contains filtered or unexported fields
}

func (*GetForexProvidersRequest) Descriptor deprecated

func (*GetForexProvidersRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetForexProvidersRequest.ProtoReflect.Descriptor instead.

func (*GetForexProvidersRequest) ProtoMessage

func (*GetForexProvidersRequest) ProtoMessage()

func (*GetForexProvidersRequest) ProtoReflect

func (x *GetForexProvidersRequest) ProtoReflect() protoreflect.Message

func (*GetForexProvidersRequest) Reset

func (x *GetForexProvidersRequest) Reset()

func (*GetForexProvidersRequest) String

func (x *GetForexProvidersRequest) String() string

type GetForexProvidersResponse

type GetForexProvidersResponse struct {
	ForexProviders []*ForexProvider `protobuf:"bytes,1,rep,name=forex_providers,json=forexProviders,proto3" json:"forex_providers,omitempty"`
	// contains filtered or unexported fields
}

func (*GetForexProvidersResponse) Descriptor deprecated

func (*GetForexProvidersResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetForexProvidersResponse.ProtoReflect.Descriptor instead.

func (*GetForexProvidersResponse) GetForexProviders

func (x *GetForexProvidersResponse) GetForexProviders() []*ForexProvider

func (*GetForexProvidersResponse) ProtoMessage

func (*GetForexProvidersResponse) ProtoMessage()

func (*GetForexProvidersResponse) ProtoReflect

func (*GetForexProvidersResponse) Reset

func (x *GetForexProvidersResponse) Reset()

func (*GetForexProvidersResponse) String

func (x *GetForexProvidersResponse) String() string

type GetForexRatesRequest

type GetForexRatesRequest struct {
	// contains filtered or unexported fields
}

func (*GetForexRatesRequest) Descriptor deprecated

func (*GetForexRatesRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetForexRatesRequest.ProtoReflect.Descriptor instead.

func (*GetForexRatesRequest) ProtoMessage

func (*GetForexRatesRequest) ProtoMessage()

func (*GetForexRatesRequest) ProtoReflect

func (x *GetForexRatesRequest) ProtoReflect() protoreflect.Message

func (*GetForexRatesRequest) Reset

func (x *GetForexRatesRequest) Reset()

func (*GetForexRatesRequest) String

func (x *GetForexRatesRequest) String() string

type GetForexRatesResponse

type GetForexRatesResponse struct {
	ForexRates []*ForexRatesConversion `protobuf:"bytes,1,rep,name=forex_rates,json=forexRates,proto3" json:"forex_rates,omitempty"`
	// contains filtered or unexported fields
}

func (*GetForexRatesResponse) Descriptor deprecated

func (*GetForexRatesResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetForexRatesResponse.ProtoReflect.Descriptor instead.

func (*GetForexRatesResponse) GetForexRates

func (x *GetForexRatesResponse) GetForexRates() []*ForexRatesConversion

func (*GetForexRatesResponse) ProtoMessage

func (*GetForexRatesResponse) ProtoMessage()

func (*GetForexRatesResponse) ProtoReflect

func (x *GetForexRatesResponse) ProtoReflect() protoreflect.Message

func (*GetForexRatesResponse) Reset

func (x *GetForexRatesResponse) Reset()

func (*GetForexRatesResponse) String

func (x *GetForexRatesResponse) String() string

type GetFundingRatesRequest

type GetFundingRatesRequest struct {
	Exchange             string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset                string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair                 *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	StartDate            string        `protobuf:"bytes,4,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`
	EndDate              string        `protobuf:"bytes,5,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`
	PaymentCurrency      string        `protobuf:"bytes,6,opt,name=payment_currency,json=paymentCurrency,proto3" json:"payment_currency,omitempty"`
	IncludePredicted     bool          `protobuf:"varint,7,opt,name=include_predicted,json=includePredicted,proto3" json:"include_predicted,omitempty"`
	IncludePayments      bool          `protobuf:"varint,8,opt,name=include_payments,json=includePayments,proto3" json:"include_payments,omitempty"`
	RespectHistoryLimits bool          `protobuf:"varint,9,opt,name=respect_history_limits,json=respectHistoryLimits,proto3" json:"respect_history_limits,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFundingRatesRequest) Descriptor deprecated

func (*GetFundingRatesRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetFundingRatesRequest.ProtoReflect.Descriptor instead.

func (*GetFundingRatesRequest) GetAsset

func (x *GetFundingRatesRequest) GetAsset() string

func (*GetFundingRatesRequest) GetEndDate

func (x *GetFundingRatesRequest) GetEndDate() string

func (*GetFundingRatesRequest) GetExchange

func (x *GetFundingRatesRequest) GetExchange() string

func (*GetFundingRatesRequest) GetIncludePayments

func (x *GetFundingRatesRequest) GetIncludePayments() bool

func (*GetFundingRatesRequest) GetIncludePredicted

func (x *GetFundingRatesRequest) GetIncludePredicted() bool

func (*GetFundingRatesRequest) GetPair

func (x *GetFundingRatesRequest) GetPair() *CurrencyPair

func (*GetFundingRatesRequest) GetPaymentCurrency

func (x *GetFundingRatesRequest) GetPaymentCurrency() string

func (*GetFundingRatesRequest) GetRespectHistoryLimits

func (x *GetFundingRatesRequest) GetRespectHistoryLimits() bool

func (*GetFundingRatesRequest) GetStartDate

func (x *GetFundingRatesRequest) GetStartDate() string

func (*GetFundingRatesRequest) ProtoMessage

func (*GetFundingRatesRequest) ProtoMessage()

func (*GetFundingRatesRequest) ProtoReflect

func (x *GetFundingRatesRequest) ProtoReflect() protoreflect.Message

func (*GetFundingRatesRequest) Reset

func (x *GetFundingRatesRequest) Reset()

func (*GetFundingRatesRequest) String

func (x *GetFundingRatesRequest) String() string

type GetFundingRatesResponse

type GetFundingRatesResponse struct {
	Rates *FundingData `protobuf:"bytes,1,opt,name=rates,proto3" json:"rates,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFundingRatesResponse) Descriptor deprecated

func (*GetFundingRatesResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetFundingRatesResponse.ProtoReflect.Descriptor instead.

func (*GetFundingRatesResponse) GetRates

func (x *GetFundingRatesResponse) GetRates() *FundingData

func (*GetFundingRatesResponse) ProtoMessage

func (*GetFundingRatesResponse) ProtoMessage()

func (*GetFundingRatesResponse) ProtoReflect

func (x *GetFundingRatesResponse) ProtoReflect() protoreflect.Message

func (*GetFundingRatesResponse) Reset

func (x *GetFundingRatesResponse) Reset()

func (*GetFundingRatesResponse) String

func (x *GetFundingRatesResponse) String() string

type GetFuturesPositionsOrdersRequest

type GetFuturesPositionsOrdersRequest struct {
	Exchange                  string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset                     string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair                      *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	UnderlyingPair            *CurrencyPair `protobuf:"bytes,4,opt,name=underlying_pair,json=underlyingPair,proto3" json:"underlying_pair,omitempty"`
	StartDate                 string        `protobuf:"bytes,5,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`
	EndDate                   string        `protobuf:"bytes,6,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`
	RespectOrderHistoryLimits bool          `` /* 141-byte string literal not displayed */
	SyncWithOrderManager      bool          `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetFuturesPositionsOrdersRequest) Descriptor deprecated

func (*GetFuturesPositionsOrdersRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetFuturesPositionsOrdersRequest.ProtoReflect.Descriptor instead.

func (*GetFuturesPositionsOrdersRequest) GetAsset

func (*GetFuturesPositionsOrdersRequest) GetEndDate

func (x *GetFuturesPositionsOrdersRequest) GetEndDate() string

func (*GetFuturesPositionsOrdersRequest) GetExchange

func (x *GetFuturesPositionsOrdersRequest) GetExchange() string

func (*GetFuturesPositionsOrdersRequest) GetPair

func (*GetFuturesPositionsOrdersRequest) GetRespectOrderHistoryLimits

func (x *GetFuturesPositionsOrdersRequest) GetRespectOrderHistoryLimits() bool

func (*GetFuturesPositionsOrdersRequest) GetStartDate

func (x *GetFuturesPositionsOrdersRequest) GetStartDate() string

func (*GetFuturesPositionsOrdersRequest) GetSyncWithOrderManager

func (x *GetFuturesPositionsOrdersRequest) GetSyncWithOrderManager() bool

func (*GetFuturesPositionsOrdersRequest) GetUnderlyingPair

func (x *GetFuturesPositionsOrdersRequest) GetUnderlyingPair() *CurrencyPair

func (*GetFuturesPositionsOrdersRequest) ProtoMessage

func (*GetFuturesPositionsOrdersRequest) ProtoMessage()

func (*GetFuturesPositionsOrdersRequest) ProtoReflect

func (*GetFuturesPositionsOrdersRequest) Reset

func (*GetFuturesPositionsOrdersRequest) String

type GetFuturesPositionsOrdersResponse

type GetFuturesPositionsOrdersResponse struct {
	Positions []*FuturePosition `protobuf:"bytes,6,rep,name=positions,proto3" json:"positions,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFuturesPositionsOrdersResponse) Descriptor deprecated

func (*GetFuturesPositionsOrdersResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetFuturesPositionsOrdersResponse.ProtoReflect.Descriptor instead.

func (*GetFuturesPositionsOrdersResponse) GetPositions

func (*GetFuturesPositionsOrdersResponse) ProtoMessage

func (*GetFuturesPositionsOrdersResponse) ProtoMessage()

func (*GetFuturesPositionsOrdersResponse) ProtoReflect

func (*GetFuturesPositionsOrdersResponse) Reset

func (*GetFuturesPositionsOrdersResponse) String

type GetFuturesPositionsSummaryRequest

type GetFuturesPositionsSummaryRequest struct {
	Exchange       string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset          string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair           *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	UnderlyingPair *CurrencyPair `protobuf:"bytes,4,opt,name=underlying_pair,json=underlyingPair,proto3" json:"underlying_pair,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFuturesPositionsSummaryRequest) Descriptor deprecated

func (*GetFuturesPositionsSummaryRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetFuturesPositionsSummaryRequest.ProtoReflect.Descriptor instead.

func (*GetFuturesPositionsSummaryRequest) GetAsset

func (*GetFuturesPositionsSummaryRequest) GetExchange

func (x *GetFuturesPositionsSummaryRequest) GetExchange() string

func (*GetFuturesPositionsSummaryRequest) GetPair

func (*GetFuturesPositionsSummaryRequest) GetUnderlyingPair

func (x *GetFuturesPositionsSummaryRequest) GetUnderlyingPair() *CurrencyPair

func (*GetFuturesPositionsSummaryRequest) ProtoMessage

func (*GetFuturesPositionsSummaryRequest) ProtoMessage()

func (*GetFuturesPositionsSummaryRequest) ProtoReflect

func (*GetFuturesPositionsSummaryRequest) Reset

func (*GetFuturesPositionsSummaryRequest) String

type GetFuturesPositionsSummaryResponse

type GetFuturesPositionsSummaryResponse struct {
	Exchange      string                `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset         string                `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair          *CurrencyPair         `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	PositionStats *FuturesPositionStats `protobuf:"bytes,4,opt,name=position_stats,json=positionStats,proto3" json:"position_stats,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFuturesPositionsSummaryResponse) Descriptor deprecated

func (*GetFuturesPositionsSummaryResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetFuturesPositionsSummaryResponse.ProtoReflect.Descriptor instead.

func (*GetFuturesPositionsSummaryResponse) GetAsset

func (*GetFuturesPositionsSummaryResponse) GetExchange

func (x *GetFuturesPositionsSummaryResponse) GetExchange() string

func (*GetFuturesPositionsSummaryResponse) GetPair

func (*GetFuturesPositionsSummaryResponse) GetPositionStats

func (*GetFuturesPositionsSummaryResponse) ProtoMessage

func (*GetFuturesPositionsSummaryResponse) ProtoMessage()

func (*GetFuturesPositionsSummaryResponse) ProtoReflect

func (*GetFuturesPositionsSummaryResponse) Reset

func (*GetFuturesPositionsSummaryResponse) String

type GetHistoricCandlesRequest

type GetHistoricCandlesRequest struct {
	Exchange              string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair                  *CurrencyPair `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	AssetType             string        `protobuf:"bytes,3,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	Start                 string        `protobuf:"bytes,4,opt,name=start,proto3" json:"start,omitempty"`
	End                   string        `protobuf:"bytes,5,opt,name=end,proto3" json:"end,omitempty"`
	TimeInterval          int64         `protobuf:"varint,6,opt,name=time_interval,json=timeInterval,proto3" json:"time_interval,omitempty"`
	ExRequest             bool          `protobuf:"varint,7,opt,name=ex_request,json=exRequest,proto3" json:"ex_request,omitempty"`
	Sync                  bool          `protobuf:"varint,8,opt,name=sync,proto3" json:"sync,omitempty"`
	UseDb                 bool          `protobuf:"varint,9,opt,name=use_db,json=useDb,proto3" json:"use_db,omitempty"`
	FillMissingWithTrades bool          `` /* 130-byte string literal not displayed */
	Force                 bool          `protobuf:"varint,11,opt,name=force,proto3" json:"force,omitempty"`
	// contains filtered or unexported fields
}

func (*GetHistoricCandlesRequest) Descriptor deprecated

func (*GetHistoricCandlesRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetHistoricCandlesRequest.ProtoReflect.Descriptor instead.

func (*GetHistoricCandlesRequest) GetAssetType

func (x *GetHistoricCandlesRequest) GetAssetType() string

func (*GetHistoricCandlesRequest) GetEnd

func (x *GetHistoricCandlesRequest) GetEnd() string

func (*GetHistoricCandlesRequest) GetExRequest

func (x *GetHistoricCandlesRequest) GetExRequest() bool

func (*GetHistoricCandlesRequest) GetExchange

func (x *GetHistoricCandlesRequest) GetExchange() string

func (*GetHistoricCandlesRequest) GetFillMissingWithTrades

func (x *GetHistoricCandlesRequest) GetFillMissingWithTrades() bool

func (*GetHistoricCandlesRequest) GetForce

func (x *GetHistoricCandlesRequest) GetForce() bool

func (*GetHistoricCandlesRequest) GetPair

func (*GetHistoricCandlesRequest) GetStart

func (x *GetHistoricCandlesRequest) GetStart() string

func (*GetHistoricCandlesRequest) GetSync

func (x *GetHistoricCandlesRequest) GetSync() bool

func (*GetHistoricCandlesRequest) GetTimeInterval

func (x *GetHistoricCandlesRequest) GetTimeInterval() int64

func (*GetHistoricCandlesRequest) GetUseDb

func (x *GetHistoricCandlesRequest) GetUseDb() bool

func (*GetHistoricCandlesRequest) ProtoMessage

func (*GetHistoricCandlesRequest) ProtoMessage()

func (*GetHistoricCandlesRequest) ProtoReflect

func (*GetHistoricCandlesRequest) Reset

func (x *GetHistoricCandlesRequest) Reset()

func (*GetHistoricCandlesRequest) String

func (x *GetHistoricCandlesRequest) String() string

type GetHistoricCandlesResponse

type GetHistoricCandlesResponse struct {
	Exchange string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair     *CurrencyPair `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	Start    string        `protobuf:"bytes,3,opt,name=start,proto3" json:"start,omitempty"`
	End      string        `protobuf:"bytes,4,opt,name=end,proto3" json:"end,omitempty"`
	Interval string        `protobuf:"bytes,6,opt,name=interval,proto3" json:"interval,omitempty"`
	Candle   []*Candle     `protobuf:"bytes,5,rep,name=candle,proto3" json:"candle,omitempty"`
	// contains filtered or unexported fields
}

func (*GetHistoricCandlesResponse) Descriptor deprecated

func (*GetHistoricCandlesResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetHistoricCandlesResponse.ProtoReflect.Descriptor instead.

func (*GetHistoricCandlesResponse) GetCandle

func (x *GetHistoricCandlesResponse) GetCandle() []*Candle

func (*GetHistoricCandlesResponse) GetEnd

func (x *GetHistoricCandlesResponse) GetEnd() string

func (*GetHistoricCandlesResponse) GetExchange

func (x *GetHistoricCandlesResponse) GetExchange() string

func (*GetHistoricCandlesResponse) GetInterval

func (x *GetHistoricCandlesResponse) GetInterval() string

func (*GetHistoricCandlesResponse) GetPair

func (*GetHistoricCandlesResponse) GetStart

func (x *GetHistoricCandlesResponse) GetStart() string

func (*GetHistoricCandlesResponse) ProtoMessage

func (*GetHistoricCandlesResponse) ProtoMessage()

func (*GetHistoricCandlesResponse) ProtoReflect

func (*GetHistoricCandlesResponse) Reset

func (x *GetHistoricCandlesResponse) Reset()

func (*GetHistoricCandlesResponse) String

func (x *GetHistoricCandlesResponse) String() string

type GetInfoRequest

type GetInfoRequest struct {
	// contains filtered or unexported fields
}

func (*GetInfoRequest) Descriptor deprecated

func (*GetInfoRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetInfoRequest.ProtoReflect.Descriptor instead.

func (*GetInfoRequest) ProtoMessage

func (*GetInfoRequest) ProtoMessage()

func (*GetInfoRequest) ProtoReflect

func (x *GetInfoRequest) ProtoReflect() protoreflect.Message

func (*GetInfoRequest) Reset

func (x *GetInfoRequest) Reset()

func (*GetInfoRequest) String

func (x *GetInfoRequest) String() string

type GetInfoResponse

type GetInfoResponse struct {
	Uptime               string                  `protobuf:"bytes,1,opt,name=uptime,proto3" json:"uptime,omitempty"`
	AvailableExchanges   int64                   `protobuf:"varint,2,opt,name=available_exchanges,json=availableExchanges,proto3" json:"available_exchanges,omitempty"`
	EnabledExchanges     int64                   `protobuf:"varint,3,opt,name=enabled_exchanges,json=enabledExchanges,proto3" json:"enabled_exchanges,omitempty"`
	DefaultForexProvider string                  `protobuf:"bytes,4,opt,name=default_forex_provider,json=defaultForexProvider,proto3" json:"default_forex_provider,omitempty"`
	DefaultFiatCurrency  string                  `protobuf:"bytes,5,opt,name=default_fiat_currency,json=defaultFiatCurrency,proto3" json:"default_fiat_currency,omitempty"`
	SubsystemStatus      map[string]bool         `` /* 195-byte string literal not displayed */
	RpcEndpoints         map[string]*RPCEndpoint `` /* 185-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetInfoResponse) Descriptor deprecated

func (*GetInfoResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetInfoResponse.ProtoReflect.Descriptor instead.

func (*GetInfoResponse) GetAvailableExchanges

func (x *GetInfoResponse) GetAvailableExchanges() int64

func (*GetInfoResponse) GetDefaultFiatCurrency

func (x *GetInfoResponse) GetDefaultFiatCurrency() string

func (*GetInfoResponse) GetDefaultForexProvider

func (x *GetInfoResponse) GetDefaultForexProvider() string

func (*GetInfoResponse) GetEnabledExchanges

func (x *GetInfoResponse) GetEnabledExchanges() int64

func (*GetInfoResponse) GetRpcEndpoints

func (x *GetInfoResponse) GetRpcEndpoints() map[string]*RPCEndpoint

func (*GetInfoResponse) GetSubsystemStatus

func (x *GetInfoResponse) GetSubsystemStatus() map[string]bool

func (*GetInfoResponse) GetUptime

func (x *GetInfoResponse) GetUptime() string

func (*GetInfoResponse) ProtoMessage

func (*GetInfoResponse) ProtoMessage()

func (*GetInfoResponse) ProtoReflect

func (x *GetInfoResponse) ProtoReflect() protoreflect.Message

func (*GetInfoResponse) Reset

func (x *GetInfoResponse) Reset()

func (*GetInfoResponse) String

func (x *GetInfoResponse) String() string

type GetLatestFundingRateRequest

type GetLatestFundingRateRequest struct {
	Exchange         string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset            string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair             *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	IncludePredicted bool          `protobuf:"varint,4,opt,name=include_predicted,json=includePredicted,proto3" json:"include_predicted,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLatestFundingRateRequest) Descriptor deprecated

func (*GetLatestFundingRateRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetLatestFundingRateRequest.ProtoReflect.Descriptor instead.

func (*GetLatestFundingRateRequest) GetAsset

func (x *GetLatestFundingRateRequest) GetAsset() string

func (*GetLatestFundingRateRequest) GetExchange

func (x *GetLatestFundingRateRequest) GetExchange() string

func (*GetLatestFundingRateRequest) GetIncludePredicted

func (x *GetLatestFundingRateRequest) GetIncludePredicted() bool

func (*GetLatestFundingRateRequest) GetPair

func (*GetLatestFundingRateRequest) ProtoMessage

func (*GetLatestFundingRateRequest) ProtoMessage()

func (*GetLatestFundingRateRequest) ProtoReflect

func (*GetLatestFundingRateRequest) Reset

func (x *GetLatestFundingRateRequest) Reset()

func (*GetLatestFundingRateRequest) String

func (x *GetLatestFundingRateRequest) String() string

type GetLatestFundingRateResponse

type GetLatestFundingRateResponse struct {
	Rate *FundingData `protobuf:"bytes,1,opt,name=rate,proto3" json:"rate,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLatestFundingRateResponse) Descriptor deprecated

func (*GetLatestFundingRateResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetLatestFundingRateResponse.ProtoReflect.Descriptor instead.

func (*GetLatestFundingRateResponse) GetRate

func (*GetLatestFundingRateResponse) ProtoMessage

func (*GetLatestFundingRateResponse) ProtoMessage()

func (*GetLatestFundingRateResponse) ProtoReflect

func (*GetLatestFundingRateResponse) Reset

func (x *GetLatestFundingRateResponse) Reset()

func (*GetLatestFundingRateResponse) String

type GetLeverageRequest

type GetLeverageRequest struct {
	Exchange       string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset          string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair           *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	UnderlyingPair *CurrencyPair `protobuf:"bytes,4,opt,name=underlying_pair,json=underlyingPair,proto3" json:"underlying_pair,omitempty"`
	MarginType     string        `protobuf:"bytes,5,opt,name=margin_type,json=marginType,proto3" json:"margin_type,omitempty"`
	OrderSide      string        `protobuf:"bytes,6,opt,name=order_side,json=orderSide,proto3" json:"order_side,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLeverageRequest) Descriptor deprecated

func (*GetLeverageRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetLeverageRequest.ProtoReflect.Descriptor instead.

func (*GetLeverageRequest) GetAsset

func (x *GetLeverageRequest) GetAsset() string

func (*GetLeverageRequest) GetExchange

func (x *GetLeverageRequest) GetExchange() string

func (*GetLeverageRequest) GetMarginType

func (x *GetLeverageRequest) GetMarginType() string

func (*GetLeverageRequest) GetOrderSide

func (x *GetLeverageRequest) GetOrderSide() string

func (*GetLeverageRequest) GetPair

func (x *GetLeverageRequest) GetPair() *CurrencyPair

func (*GetLeverageRequest) GetUnderlyingPair

func (x *GetLeverageRequest) GetUnderlyingPair() *CurrencyPair

func (*GetLeverageRequest) ProtoMessage

func (*GetLeverageRequest) ProtoMessage()

func (*GetLeverageRequest) ProtoReflect

func (x *GetLeverageRequest) ProtoReflect() protoreflect.Message

func (*GetLeverageRequest) Reset

func (x *GetLeverageRequest) Reset()

func (*GetLeverageRequest) String

func (x *GetLeverageRequest) String() string

type GetLeverageResponse

type GetLeverageResponse struct {
	Exchange       string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset          string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair           *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	UnderlyingPair *CurrencyPair `protobuf:"bytes,4,opt,name=underlying_pair,json=underlyingPair,proto3" json:"underlying_pair,omitempty"`
	MarginType     string        `protobuf:"bytes,5,opt,name=margin_type,json=marginType,proto3" json:"margin_type,omitempty"`
	Leverage       float64       `protobuf:"fixed64,6,opt,name=leverage,proto3" json:"leverage,omitempty"`
	OrderSide      string        `protobuf:"bytes,7,opt,name=order_side,json=orderSide,proto3" json:"order_side,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLeverageResponse) Descriptor deprecated

func (*GetLeverageResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetLeverageResponse.ProtoReflect.Descriptor instead.

func (*GetLeverageResponse) GetAsset

func (x *GetLeverageResponse) GetAsset() string

func (*GetLeverageResponse) GetExchange

func (x *GetLeverageResponse) GetExchange() string

func (*GetLeverageResponse) GetLeverage

func (x *GetLeverageResponse) GetLeverage() float64

func (*GetLeverageResponse) GetMarginType

func (x *GetLeverageResponse) GetMarginType() string

func (*GetLeverageResponse) GetOrderSide

func (x *GetLeverageResponse) GetOrderSide() string

func (*GetLeverageResponse) GetPair

func (x *GetLeverageResponse) GetPair() *CurrencyPair

func (*GetLeverageResponse) GetUnderlyingPair

func (x *GetLeverageResponse) GetUnderlyingPair() *CurrencyPair

func (*GetLeverageResponse) ProtoMessage

func (*GetLeverageResponse) ProtoMessage()

func (*GetLeverageResponse) ProtoReflect

func (x *GetLeverageResponse) ProtoReflect() protoreflect.Message

func (*GetLeverageResponse) Reset

func (x *GetLeverageResponse) Reset()

func (*GetLeverageResponse) String

func (x *GetLeverageResponse) String() string

type GetLoggerDetailsRequest

type GetLoggerDetailsRequest struct {
	Logger string `protobuf:"bytes,1,opt,name=logger,proto3" json:"logger,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLoggerDetailsRequest) Descriptor deprecated

func (*GetLoggerDetailsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetLoggerDetailsRequest.ProtoReflect.Descriptor instead.

func (*GetLoggerDetailsRequest) GetLogger

func (x *GetLoggerDetailsRequest) GetLogger() string

func (*GetLoggerDetailsRequest) ProtoMessage

func (*GetLoggerDetailsRequest) ProtoMessage()

func (*GetLoggerDetailsRequest) ProtoReflect

func (x *GetLoggerDetailsRequest) ProtoReflect() protoreflect.Message

func (*GetLoggerDetailsRequest) Reset

func (x *GetLoggerDetailsRequest) Reset()

func (*GetLoggerDetailsRequest) String

func (x *GetLoggerDetailsRequest) String() string

type GetLoggerDetailsResponse

type GetLoggerDetailsResponse struct {
	Info  bool `protobuf:"varint,1,opt,name=info,proto3" json:"info,omitempty"`
	Debug bool `protobuf:"varint,2,opt,name=debug,proto3" json:"debug,omitempty"`
	Warn  bool `protobuf:"varint,3,opt,name=warn,proto3" json:"warn,omitempty"`
	Error bool `protobuf:"varint,4,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLoggerDetailsResponse) Descriptor deprecated

func (*GetLoggerDetailsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetLoggerDetailsResponse.ProtoReflect.Descriptor instead.

func (*GetLoggerDetailsResponse) GetDebug

func (x *GetLoggerDetailsResponse) GetDebug() bool

func (*GetLoggerDetailsResponse) GetError

func (x *GetLoggerDetailsResponse) GetError() bool

func (*GetLoggerDetailsResponse) GetInfo

func (x *GetLoggerDetailsResponse) GetInfo() bool

func (*GetLoggerDetailsResponse) GetWarn

func (x *GetLoggerDetailsResponse) GetWarn() bool

func (*GetLoggerDetailsResponse) ProtoMessage

func (*GetLoggerDetailsResponse) ProtoMessage()

func (*GetLoggerDetailsResponse) ProtoReflect

func (x *GetLoggerDetailsResponse) ProtoReflect() protoreflect.Message

func (*GetLoggerDetailsResponse) Reset

func (x *GetLoggerDetailsResponse) Reset()

func (*GetLoggerDetailsResponse) String

func (x *GetLoggerDetailsResponse) String() string

type GetManagedPositionRequest

type GetManagedPositionRequest struct {
	Exchange                string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset                   string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair                    *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	IncludeFullOrderData    bool          `` /* 126-byte string literal not displayed */
	GetFundingPayments      bool          `protobuf:"varint,5,opt,name=get_funding_payments,json=getFundingPayments,proto3" json:"get_funding_payments,omitempty"`
	IncludeFullFundingRates bool          `` /* 135-byte string literal not displayed */
	IncludePredictedRate    bool          `protobuf:"varint,7,opt,name=include_predicted_rate,json=includePredictedRate,proto3" json:"include_predicted_rate,omitempty"`
	// contains filtered or unexported fields
}

func (*GetManagedPositionRequest) Descriptor deprecated

func (*GetManagedPositionRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetManagedPositionRequest.ProtoReflect.Descriptor instead.

func (*GetManagedPositionRequest) GetAsset

func (x *GetManagedPositionRequest) GetAsset() string

func (*GetManagedPositionRequest) GetExchange

func (x *GetManagedPositionRequest) GetExchange() string

func (*GetManagedPositionRequest) GetGetFundingPayments

func (x *GetManagedPositionRequest) GetGetFundingPayments() bool

func (*GetManagedPositionRequest) GetIncludeFullFundingRates

func (x *GetManagedPositionRequest) GetIncludeFullFundingRates() bool

func (*GetManagedPositionRequest) GetIncludeFullOrderData

func (x *GetManagedPositionRequest) GetIncludeFullOrderData() bool

func (*GetManagedPositionRequest) GetIncludePredictedRate

func (x *GetManagedPositionRequest) GetIncludePredictedRate() bool

func (*GetManagedPositionRequest) GetPair

func (*GetManagedPositionRequest) ProtoMessage

func (*GetManagedPositionRequest) ProtoMessage()

func (*GetManagedPositionRequest) ProtoReflect

func (*GetManagedPositionRequest) Reset

func (x *GetManagedPositionRequest) Reset()

func (*GetManagedPositionRequest) String

func (x *GetManagedPositionRequest) String() string

type GetManagedPositionsResponse

type GetManagedPositionsResponse struct {
	Positions []*FuturePosition `protobuf:"bytes,1,rep,name=positions,proto3" json:"positions,omitempty"`
	// contains filtered or unexported fields
}

func (*GetManagedPositionsResponse) Descriptor deprecated

func (*GetManagedPositionsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetManagedPositionsResponse.ProtoReflect.Descriptor instead.

func (*GetManagedPositionsResponse) GetPositions

func (x *GetManagedPositionsResponse) GetPositions() []*FuturePosition

func (*GetManagedPositionsResponse) ProtoMessage

func (*GetManagedPositionsResponse) ProtoMessage()

func (*GetManagedPositionsResponse) ProtoReflect

func (*GetManagedPositionsResponse) Reset

func (x *GetManagedPositionsResponse) Reset()

func (*GetManagedPositionsResponse) String

func (x *GetManagedPositionsResponse) String() string

type GetMarginRatesHistoryRequest

type GetMarginRatesHistoryRequest struct {
	Exchange           string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset              string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Currency           string        `protobuf:"bytes,3,opt,name=currency,proto3" json:"currency,omitempty"`
	StartDate          string        `protobuf:"bytes,4,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`
	EndDate            string        `protobuf:"bytes,5,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`
	GetPredictedRate   bool          `protobuf:"varint,6,opt,name=get_predicted_rate,json=getPredictedRate,proto3" json:"get_predicted_rate,omitempty"`
	GetLendingPayments bool          `protobuf:"varint,7,opt,name=get_lending_payments,json=getLendingPayments,proto3" json:"get_lending_payments,omitempty"`
	GetBorrowRates     bool          `protobuf:"varint,8,opt,name=get_borrow_rates,json=getBorrowRates,proto3" json:"get_borrow_rates,omitempty"`
	GetBorrowCosts     bool          `protobuf:"varint,9,opt,name=get_borrow_costs,json=getBorrowCosts,proto3" json:"get_borrow_costs,omitempty"`
	IncludeAllRates    bool          `protobuf:"varint,10,opt,name=include_all_rates,json=includeAllRates,proto3" json:"include_all_rates,omitempty"`
	CalculateOffline   bool          `protobuf:"varint,11,opt,name=calculate_offline,json=calculateOffline,proto3" json:"calculate_offline,omitempty"`
	TakerFeeRate       string        `protobuf:"bytes,12,opt,name=taker_fee_rate,json=takerFeeRate,proto3" json:"taker_fee_rate,omitempty"`
	Rates              []*MarginRate `protobuf:"bytes,13,rep,name=rates,proto3" json:"rates,omitempty"`
	// contains filtered or unexported fields
}

func (*GetMarginRatesHistoryRequest) Descriptor deprecated

func (*GetMarginRatesHistoryRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetMarginRatesHistoryRequest.ProtoReflect.Descriptor instead.

func (*GetMarginRatesHistoryRequest) GetAsset

func (x *GetMarginRatesHistoryRequest) GetAsset() string

func (*GetMarginRatesHistoryRequest) GetCalculateOffline

func (x *GetMarginRatesHistoryRequest) GetCalculateOffline() bool

func (*GetMarginRatesHistoryRequest) GetCurrency

func (x *GetMarginRatesHistoryRequest) GetCurrency() string

func (*GetMarginRatesHistoryRequest) GetEndDate

func (x *GetMarginRatesHistoryRequest) GetEndDate() string

func (*GetMarginRatesHistoryRequest) GetExchange

func (x *GetMarginRatesHistoryRequest) GetExchange() string

func (*GetMarginRatesHistoryRequest) GetGetBorrowCosts

func (x *GetMarginRatesHistoryRequest) GetGetBorrowCosts() bool

func (*GetMarginRatesHistoryRequest) GetGetBorrowRates

func (x *GetMarginRatesHistoryRequest) GetGetBorrowRates() bool

func (*GetMarginRatesHistoryRequest) GetGetLendingPayments

func (x *GetMarginRatesHistoryRequest) GetGetLendingPayments() bool

func (*GetMarginRatesHistoryRequest) GetGetPredictedRate

func (x *GetMarginRatesHistoryRequest) GetGetPredictedRate() bool

func (*GetMarginRatesHistoryRequest) GetIncludeAllRates

func (x *GetMarginRatesHistoryRequest) GetIncludeAllRates() bool

func (*GetMarginRatesHistoryRequest) GetRates

func (x *GetMarginRatesHistoryRequest) GetRates() []*MarginRate

func (*GetMarginRatesHistoryRequest) GetStartDate

func (x *GetMarginRatesHistoryRequest) GetStartDate() string

func (*GetMarginRatesHistoryRequest) GetTakerFeeRate

func (x *GetMarginRatesHistoryRequest) GetTakerFeeRate() string

func (*GetMarginRatesHistoryRequest) ProtoMessage

func (*GetMarginRatesHistoryRequest) ProtoMessage()

func (*GetMarginRatesHistoryRequest) ProtoReflect

func (*GetMarginRatesHistoryRequest) Reset

func (x *GetMarginRatesHistoryRequest) Reset()

func (*GetMarginRatesHistoryRequest) String

type GetMarginRatesHistoryResponse

type GetMarginRatesHistoryResponse struct {
	Rates              []*MarginRate `protobuf:"bytes,1,rep,name=rates,proto3" json:"rates,omitempty"`
	TotalRates         int64         `protobuf:"varint,2,opt,name=total_rates,json=totalRates,proto3" json:"total_rates,omitempty"`
	SumBorrowCosts     string        `protobuf:"bytes,3,opt,name=sum_borrow_costs,json=sumBorrowCosts,proto3" json:"sum_borrow_costs,omitempty"`
	AvgBorrowSize      string        `protobuf:"bytes,4,opt,name=avg_borrow_size,json=avgBorrowSize,proto3" json:"avg_borrow_size,omitempty"`
	SumLendingPayments string        `protobuf:"bytes,5,opt,name=sum_lending_payments,json=sumLendingPayments,proto3" json:"sum_lending_payments,omitempty"`
	AvgLendingSize     string        `protobuf:"bytes,6,opt,name=avg_lending_size,json=avgLendingSize,proto3" json:"avg_lending_size,omitempty"`
	LatestRate         *MarginRate   `protobuf:"bytes,7,opt,name=latest_rate,json=latestRate,proto3" json:"latest_rate,omitempty"`
	PredictedRate      *MarginRate   `protobuf:"bytes,8,opt,name=predicted_rate,json=predictedRate,proto3" json:"predicted_rate,omitempty"`
	TakerFeeRate       string        `protobuf:"bytes,9,opt,name=taker_fee_rate,json=takerFeeRate,proto3" json:"taker_fee_rate,omitempty"`
	// contains filtered or unexported fields
}

func (*GetMarginRatesHistoryResponse) Descriptor deprecated

func (*GetMarginRatesHistoryResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetMarginRatesHistoryResponse.ProtoReflect.Descriptor instead.

func (*GetMarginRatesHistoryResponse) GetAvgBorrowSize

func (x *GetMarginRatesHistoryResponse) GetAvgBorrowSize() string

func (*GetMarginRatesHistoryResponse) GetAvgLendingSize

func (x *GetMarginRatesHistoryResponse) GetAvgLendingSize() string

func (*GetMarginRatesHistoryResponse) GetLatestRate

func (x *GetMarginRatesHistoryResponse) GetLatestRate() *MarginRate

func (*GetMarginRatesHistoryResponse) GetPredictedRate

func (x *GetMarginRatesHistoryResponse) GetPredictedRate() *MarginRate

func (*GetMarginRatesHistoryResponse) GetRates

func (x *GetMarginRatesHistoryResponse) GetRates() []*MarginRate

func (*GetMarginRatesHistoryResponse) GetSumBorrowCosts

func (x *GetMarginRatesHistoryResponse) GetSumBorrowCosts() string

func (*GetMarginRatesHistoryResponse) GetSumLendingPayments

func (x *GetMarginRatesHistoryResponse) GetSumLendingPayments() string

func (*GetMarginRatesHistoryResponse) GetTakerFeeRate

func (x *GetMarginRatesHistoryResponse) GetTakerFeeRate() string

func (*GetMarginRatesHistoryResponse) GetTotalRates

func (x *GetMarginRatesHistoryResponse) GetTotalRates() int64

func (*GetMarginRatesHistoryResponse) ProtoMessage

func (*GetMarginRatesHistoryResponse) ProtoMessage()

func (*GetMarginRatesHistoryResponse) ProtoReflect

func (*GetMarginRatesHistoryResponse) Reset

func (x *GetMarginRatesHistoryResponse) Reset()

func (*GetMarginRatesHistoryResponse) String

type GetMarginTypeRequest

type GetMarginTypeRequest struct {
	Exchange string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset    string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair     *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	// contains filtered or unexported fields
}

func (*GetMarginTypeRequest) Descriptor deprecated

func (*GetMarginTypeRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetMarginTypeRequest.ProtoReflect.Descriptor instead.

func (*GetMarginTypeRequest) GetAsset

func (x *GetMarginTypeRequest) GetAsset() string

func (*GetMarginTypeRequest) GetExchange

func (x *GetMarginTypeRequest) GetExchange() string

func (*GetMarginTypeRequest) GetPair

func (x *GetMarginTypeRequest) GetPair() *CurrencyPair

func (*GetMarginTypeRequest) ProtoMessage

func (*GetMarginTypeRequest) ProtoMessage()

func (*GetMarginTypeRequest) ProtoReflect

func (x *GetMarginTypeRequest) ProtoReflect() protoreflect.Message

func (*GetMarginTypeRequest) Reset

func (x *GetMarginTypeRequest) Reset()

func (*GetMarginTypeRequest) String

func (x *GetMarginTypeRequest) String() string

type GetMarginTypeResponse

type GetMarginTypeResponse struct {
	Exchange   string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset      string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair       *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	MarginType string        `protobuf:"bytes,4,opt,name=margin_type,json=marginType,proto3" json:"margin_type,omitempty"`
	// contains filtered or unexported fields
}

func (*GetMarginTypeResponse) Descriptor deprecated

func (*GetMarginTypeResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetMarginTypeResponse.ProtoReflect.Descriptor instead.

func (*GetMarginTypeResponse) GetAsset

func (x *GetMarginTypeResponse) GetAsset() string

func (*GetMarginTypeResponse) GetExchange

func (x *GetMarginTypeResponse) GetExchange() string

func (*GetMarginTypeResponse) GetMarginType

func (x *GetMarginTypeResponse) GetMarginType() string

func (*GetMarginTypeResponse) GetPair

func (x *GetMarginTypeResponse) GetPair() *CurrencyPair

func (*GetMarginTypeResponse) ProtoMessage

func (*GetMarginTypeResponse) ProtoMessage()

func (*GetMarginTypeResponse) ProtoReflect

func (x *GetMarginTypeResponse) ProtoReflect() protoreflect.Message

func (*GetMarginTypeResponse) Reset

func (x *GetMarginTypeResponse) Reset()

func (*GetMarginTypeResponse) String

func (x *GetMarginTypeResponse) String() string

type GetOpenInterestRequest

type GetOpenInterestRequest struct {
	Exchange string                     `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Data     []*OpenInterestDataRequest `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOpenInterestRequest) Descriptor deprecated

func (*GetOpenInterestRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOpenInterestRequest.ProtoReflect.Descriptor instead.

func (*GetOpenInterestRequest) GetData

func (*GetOpenInterestRequest) GetExchange

func (x *GetOpenInterestRequest) GetExchange() string

func (*GetOpenInterestRequest) ProtoMessage

func (*GetOpenInterestRequest) ProtoMessage()

func (*GetOpenInterestRequest) ProtoReflect

func (x *GetOpenInterestRequest) ProtoReflect() protoreflect.Message

func (*GetOpenInterestRequest) Reset

func (x *GetOpenInterestRequest) Reset()

func (*GetOpenInterestRequest) String

func (x *GetOpenInterestRequest) String() string

type GetOpenInterestResponse

type GetOpenInterestResponse struct {
	Data []*OpenInterestDataResponse `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOpenInterestResponse) Descriptor deprecated

func (*GetOpenInterestResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetOpenInterestResponse.ProtoReflect.Descriptor instead.

func (*GetOpenInterestResponse) GetData

func (*GetOpenInterestResponse) ProtoMessage

func (*GetOpenInterestResponse) ProtoMessage()

func (*GetOpenInterestResponse) ProtoReflect

func (x *GetOpenInterestResponse) ProtoReflect() protoreflect.Message

func (*GetOpenInterestResponse) Reset

func (x *GetOpenInterestResponse) Reset()

func (*GetOpenInterestResponse) String

func (x *GetOpenInterestResponse) String() string

type GetOrderRequest

type GetOrderRequest struct {
	Exchange string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	OrderId  string        `protobuf:"bytes,2,opt,name=order_id,json=orderId,proto3" json:"order_id,omitempty"`
	Pair     *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	Asset    string        `protobuf:"bytes,4,opt,name=asset,proto3" json:"asset,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOrderRequest) Descriptor deprecated

func (*GetOrderRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOrderRequest.ProtoReflect.Descriptor instead.

func (*GetOrderRequest) GetAsset

func (x *GetOrderRequest) GetAsset() string

func (*GetOrderRequest) GetExchange

func (x *GetOrderRequest) GetExchange() string

func (*GetOrderRequest) GetOrderId

func (x *GetOrderRequest) GetOrderId() string

func (*GetOrderRequest) GetPair

func (x *GetOrderRequest) GetPair() *CurrencyPair

func (*GetOrderRequest) ProtoMessage

func (*GetOrderRequest) ProtoMessage()

func (*GetOrderRequest) ProtoReflect

func (x *GetOrderRequest) ProtoReflect() protoreflect.Message

func (*GetOrderRequest) Reset

func (x *GetOrderRequest) Reset()

func (*GetOrderRequest) String

func (x *GetOrderRequest) String() string

type GetOrderbookAmountByImpactRequest

type GetOrderbookAmountByImpactRequest struct {
	Exchange              string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset                 string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair                  *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	ImpactPercentage      float64       `protobuf:"fixed64,6,opt,name=impact_percentage,json=impactPercentage,proto3" json:"impact_percentage,omitempty"`
	Sell                  bool          `protobuf:"varint,7,opt,name=sell,proto3" json:"sell,omitempty"`
	RequiresRestOrderbook bool          `` /* 127-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetOrderbookAmountByImpactRequest) Descriptor deprecated

func (*GetOrderbookAmountByImpactRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOrderbookAmountByImpactRequest.ProtoReflect.Descriptor instead.

func (*GetOrderbookAmountByImpactRequest) GetAsset

func (*GetOrderbookAmountByImpactRequest) GetExchange

func (x *GetOrderbookAmountByImpactRequest) GetExchange() string

func (*GetOrderbookAmountByImpactRequest) GetImpactPercentage

func (x *GetOrderbookAmountByImpactRequest) GetImpactPercentage() float64

func (*GetOrderbookAmountByImpactRequest) GetPair

func (*GetOrderbookAmountByImpactRequest) GetRequiresRestOrderbook

func (x *GetOrderbookAmountByImpactRequest) GetRequiresRestOrderbook() bool

func (*GetOrderbookAmountByImpactRequest) GetSell

func (*GetOrderbookAmountByImpactRequest) ProtoMessage

func (*GetOrderbookAmountByImpactRequest) ProtoMessage()

func (*GetOrderbookAmountByImpactRequest) ProtoReflect

func (*GetOrderbookAmountByImpactRequest) Reset

func (*GetOrderbookAmountByImpactRequest) String

type GetOrderbookAmountByImpactResponse

type GetOrderbookAmountByImpactResponse struct {
	AmountRequired                      float64 `protobuf:"fixed64,1,opt,name=amount_required,json=amountRequired,proto3" json:"amount_required,omitempty"`
	CurrencySelling                     string  `protobuf:"bytes,2,opt,name=currency_selling,json=currencySelling,proto3" json:"currency_selling,omitempty"`
	AmountReceived                      float64 `protobuf:"fixed64,3,opt,name=amount_received,json=amountReceived,proto3" json:"amount_received,omitempty"`
	CurrencyBuying                      string  `protobuf:"bytes,4,opt,name=currency_buying,json=currencyBuying,proto3" json:"currency_buying,omitempty"`
	StartPrice                          float64 `protobuf:"fixed64,5,opt,name=start_price,json=startPrice,proto3" json:"start_price,omitempty"`
	EndPrice                            float64 `protobuf:"fixed64,6,opt,name=end_price,json=endPrice,proto3" json:"end_price,omitempty"`
	AverageOrderCost                    float64 `protobuf:"fixed64,7,opt,name=average_order_cost,json=averageOrderCost,proto3" json:"average_order_cost,omitempty"`
	SideAffected                        string  `protobuf:"bytes,8,opt,name=side_affected,json=sideAffected,proto3" json:"side_affected,omitempty"`
	ApproximateImpactSlippagePercentage float64 `` /* 172-byte string literal not displayed */
	UpdateProtocol                      string  `protobuf:"bytes,10,opt,name=update_protocol,json=updateProtocol,proto3" json:"update_protocol,omitempty"`
	FullOrderbookSideConsumed           bool    `` /* 142-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetOrderbookAmountByImpactResponse) Descriptor deprecated

func (*GetOrderbookAmountByImpactResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetOrderbookAmountByImpactResponse.ProtoReflect.Descriptor instead.

func (*GetOrderbookAmountByImpactResponse) GetAmountReceived

func (x *GetOrderbookAmountByImpactResponse) GetAmountReceived() float64

func (*GetOrderbookAmountByImpactResponse) GetAmountRequired

func (x *GetOrderbookAmountByImpactResponse) GetAmountRequired() float64

func (*GetOrderbookAmountByImpactResponse) GetApproximateImpactSlippagePercentage

func (x *GetOrderbookAmountByImpactResponse) GetApproximateImpactSlippagePercentage() float64

func (*GetOrderbookAmountByImpactResponse) GetAverageOrderCost

func (x *GetOrderbookAmountByImpactResponse) GetAverageOrderCost() float64

func (*GetOrderbookAmountByImpactResponse) GetCurrencyBuying

func (x *GetOrderbookAmountByImpactResponse) GetCurrencyBuying() string

func (*GetOrderbookAmountByImpactResponse) GetCurrencySelling

func (x *GetOrderbookAmountByImpactResponse) GetCurrencySelling() string

func (*GetOrderbookAmountByImpactResponse) GetEndPrice

func (*GetOrderbookAmountByImpactResponse) GetFullOrderbookSideConsumed

func (x *GetOrderbookAmountByImpactResponse) GetFullOrderbookSideConsumed() bool

func (*GetOrderbookAmountByImpactResponse) GetSideAffected

func (x *GetOrderbookAmountByImpactResponse) GetSideAffected() string

func (*GetOrderbookAmountByImpactResponse) GetStartPrice

func (x *GetOrderbookAmountByImpactResponse) GetStartPrice() float64

func (*GetOrderbookAmountByImpactResponse) GetUpdateProtocol

func (x *GetOrderbookAmountByImpactResponse) GetUpdateProtocol() string

func (*GetOrderbookAmountByImpactResponse) ProtoMessage

func (*GetOrderbookAmountByImpactResponse) ProtoMessage()

func (*GetOrderbookAmountByImpactResponse) ProtoReflect

func (*GetOrderbookAmountByImpactResponse) Reset

func (*GetOrderbookAmountByImpactResponse) String

type GetOrderbookAmountByNominalRequest

type GetOrderbookAmountByNominalRequest struct {
	Exchange              string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset                 string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair                  *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	NominalPercentage     float64       `protobuf:"fixed64,6,opt,name=nominal_percentage,json=nominalPercentage,proto3" json:"nominal_percentage,omitempty"`
	Sell                  bool          `protobuf:"varint,7,opt,name=sell,proto3" json:"sell,omitempty"`
	RequiresRestOrderbook bool          `` /* 127-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetOrderbookAmountByNominalRequest) Descriptor deprecated

func (*GetOrderbookAmountByNominalRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOrderbookAmountByNominalRequest.ProtoReflect.Descriptor instead.

func (*GetOrderbookAmountByNominalRequest) GetAsset

func (*GetOrderbookAmountByNominalRequest) GetExchange

func (x *GetOrderbookAmountByNominalRequest) GetExchange() string

func (*GetOrderbookAmountByNominalRequest) GetNominalPercentage

func (x *GetOrderbookAmountByNominalRequest) GetNominalPercentage() float64

func (*GetOrderbookAmountByNominalRequest) GetPair

func (*GetOrderbookAmountByNominalRequest) GetRequiresRestOrderbook

func (x *GetOrderbookAmountByNominalRequest) GetRequiresRestOrderbook() bool

func (*GetOrderbookAmountByNominalRequest) GetSell

func (*GetOrderbookAmountByNominalRequest) ProtoMessage

func (*GetOrderbookAmountByNominalRequest) ProtoMessage()

func (*GetOrderbookAmountByNominalRequest) ProtoReflect

func (*GetOrderbookAmountByNominalRequest) Reset

func (*GetOrderbookAmountByNominalRequest) String

type GetOrderbookAmountByNominalResponse

type GetOrderbookAmountByNominalResponse struct {
	AmountRequired                       float64 `protobuf:"fixed64,1,opt,name=amount_required,json=amountRequired,proto3" json:"amount_required,omitempty"`
	CurrencySelling                      string  `protobuf:"bytes,2,opt,name=currency_selling,json=currencySelling,proto3" json:"currency_selling,omitempty"`
	AmountReceived                       float64 `protobuf:"fixed64,3,opt,name=amount_received,json=amountReceived,proto3" json:"amount_received,omitempty"`
	CurrencyBuying                       string  `protobuf:"bytes,4,opt,name=currency_buying,json=currencyBuying,proto3" json:"currency_buying,omitempty"`
	StartPrice                           float64 `protobuf:"fixed64,5,opt,name=start_price,json=startPrice,proto3" json:"start_price,omitempty"`
	EndPrice                             float64 `protobuf:"fixed64,6,opt,name=end_price,json=endPrice,proto3" json:"end_price,omitempty"`
	AverageOrderCost                     float64 `protobuf:"fixed64,7,opt,name=average_order_cost,json=averageOrderCost,proto3" json:"average_order_cost,omitempty"`
	SideAffected                         string  `protobuf:"bytes,8,opt,name=side_affected,json=sideAffected,proto3" json:"side_affected,omitempty"`
	ApproximateNominalSlippagePercentage float64 `` /* 175-byte string literal not displayed */
	UpdateProtocol                       string  `protobuf:"bytes,10,opt,name=update_protocol,json=updateProtocol,proto3" json:"update_protocol,omitempty"`
	FullOrderbookSideConsumed            bool    `` /* 142-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetOrderbookAmountByNominalResponse) Descriptor deprecated

func (*GetOrderbookAmountByNominalResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetOrderbookAmountByNominalResponse.ProtoReflect.Descriptor instead.

func (*GetOrderbookAmountByNominalResponse) GetAmountReceived

func (x *GetOrderbookAmountByNominalResponse) GetAmountReceived() float64

func (*GetOrderbookAmountByNominalResponse) GetAmountRequired

func (x *GetOrderbookAmountByNominalResponse) GetAmountRequired() float64

func (*GetOrderbookAmountByNominalResponse) GetApproximateNominalSlippagePercentage

func (x *GetOrderbookAmountByNominalResponse) GetApproximateNominalSlippagePercentage() float64

func (*GetOrderbookAmountByNominalResponse) GetAverageOrderCost

func (x *GetOrderbookAmountByNominalResponse) GetAverageOrderCost() float64

func (*GetOrderbookAmountByNominalResponse) GetCurrencyBuying

func (x *GetOrderbookAmountByNominalResponse) GetCurrencyBuying() string

func (*GetOrderbookAmountByNominalResponse) GetCurrencySelling

func (x *GetOrderbookAmountByNominalResponse) GetCurrencySelling() string

func (*GetOrderbookAmountByNominalResponse) GetEndPrice

func (*GetOrderbookAmountByNominalResponse) GetFullOrderbookSideConsumed

func (x *GetOrderbookAmountByNominalResponse) GetFullOrderbookSideConsumed() bool

func (*GetOrderbookAmountByNominalResponse) GetSideAffected

func (x *GetOrderbookAmountByNominalResponse) GetSideAffected() string

func (*GetOrderbookAmountByNominalResponse) GetStartPrice

func (x *GetOrderbookAmountByNominalResponse) GetStartPrice() float64

func (*GetOrderbookAmountByNominalResponse) GetUpdateProtocol

func (x *GetOrderbookAmountByNominalResponse) GetUpdateProtocol() string

func (*GetOrderbookAmountByNominalResponse) ProtoMessage

func (*GetOrderbookAmountByNominalResponse) ProtoMessage()

func (*GetOrderbookAmountByNominalResponse) ProtoReflect

func (*GetOrderbookAmountByNominalResponse) Reset

func (*GetOrderbookAmountByNominalResponse) String

type GetOrderbookMovementRequest

type GetOrderbookMovementRequest struct {
	Exchange              string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset                 string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair                  *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	Amount                float64       `protobuf:"fixed64,6,opt,name=amount,proto3" json:"amount,omitempty"`
	Sell                  bool          `protobuf:"varint,7,opt,name=sell,proto3" json:"sell,omitempty"`
	RequiresRestOrderbook bool          `` /* 127-byte string literal not displayed */
	Purchase              bool          `protobuf:"varint,9,opt,name=purchase,proto3" json:"purchase,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOrderbookMovementRequest) Descriptor deprecated

func (*GetOrderbookMovementRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOrderbookMovementRequest.ProtoReflect.Descriptor instead.

func (*GetOrderbookMovementRequest) GetAmount

func (x *GetOrderbookMovementRequest) GetAmount() float64

func (*GetOrderbookMovementRequest) GetAsset

func (x *GetOrderbookMovementRequest) GetAsset() string

func (*GetOrderbookMovementRequest) GetExchange

func (x *GetOrderbookMovementRequest) GetExchange() string

func (*GetOrderbookMovementRequest) GetPair

func (*GetOrderbookMovementRequest) GetPurchase

func (x *GetOrderbookMovementRequest) GetPurchase() bool

func (*GetOrderbookMovementRequest) GetRequiresRestOrderbook

func (x *GetOrderbookMovementRequest) GetRequiresRestOrderbook() bool

func (*GetOrderbookMovementRequest) GetSell

func (x *GetOrderbookMovementRequest) GetSell() bool

func (*GetOrderbookMovementRequest) ProtoMessage

func (*GetOrderbookMovementRequest) ProtoMessage()

func (*GetOrderbookMovementRequest) ProtoReflect

func (*GetOrderbookMovementRequest) Reset

func (x *GetOrderbookMovementRequest) Reset()

func (*GetOrderbookMovementRequest) String

func (x *GetOrderbookMovementRequest) String() string

type GetOrderbookMovementResponse

type GetOrderbookMovementResponse struct {
	NominalPercentage         float64 `protobuf:"fixed64,1,opt,name=nominal_percentage,json=nominalPercentage,proto3" json:"nominal_percentage,omitempty"`
	ImpactPercentage          float64 `protobuf:"fixed64,2,opt,name=impact_percentage,json=impactPercentage,proto3" json:"impact_percentage,omitempty"`
	SlippageCost              float64 `protobuf:"fixed64,3,opt,name=slippage_cost,json=slippageCost,proto3" json:"slippage_cost,omitempty"`
	CurrencyBought            string  `protobuf:"bytes,4,opt,name=currency_bought,json=currencyBought,proto3" json:"currency_bought,omitempty"`
	Bought                    float64 `protobuf:"fixed64,5,opt,name=bought,proto3" json:"bought,omitempty"`
	CurrencySold              string  `protobuf:"bytes,6,opt,name=currency_sold,json=currencySold,proto3" json:"currency_sold,omitempty"`
	Sold                      float64 `protobuf:"fixed64,7,opt,name=sold,proto3" json:"sold,omitempty"`
	SideAffected              string  `protobuf:"bytes,8,opt,name=side_affected,json=sideAffected,proto3" json:"side_affected,omitempty"`
	UpdateProtocol            string  `protobuf:"bytes,9,opt,name=update_protocol,json=updateProtocol,proto3" json:"update_protocol,omitempty"`
	FullOrderbookSideConsumed bool    `` /* 142-byte string literal not displayed */
	StartPrice                float64 `protobuf:"fixed64,11,opt,name=start_price,json=startPrice,proto3" json:"start_price,omitempty"`
	EndPrice                  float64 `protobuf:"fixed64,12,opt,name=end_price,json=endPrice,proto3" json:"end_price,omitempty"`
	NoSlippageOccurred        bool    `protobuf:"varint,13,opt,name=no_slippage_occurred,json=noSlippageOccurred,proto3" json:"no_slippage_occurred,omitempty"`
	AverageOrderCost          float64 `protobuf:"fixed64,14,opt,name=average_order_cost,json=averageOrderCost,proto3" json:"average_order_cost,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOrderbookMovementResponse) Descriptor deprecated

func (*GetOrderbookMovementResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetOrderbookMovementResponse.ProtoReflect.Descriptor instead.

func (*GetOrderbookMovementResponse) GetAverageOrderCost

func (x *GetOrderbookMovementResponse) GetAverageOrderCost() float64

func (*GetOrderbookMovementResponse) GetBought

func (x *GetOrderbookMovementResponse) GetBought() float64

func (*GetOrderbookMovementResponse) GetCurrencyBought

func (x *GetOrderbookMovementResponse) GetCurrencyBought() string

func (*GetOrderbookMovementResponse) GetCurrencySold

func (x *GetOrderbookMovementResponse) GetCurrencySold() string

func (*GetOrderbookMovementResponse) GetEndPrice

func (x *GetOrderbookMovementResponse) GetEndPrice() float64

func (*GetOrderbookMovementResponse) GetFullOrderbookSideConsumed

func (x *GetOrderbookMovementResponse) GetFullOrderbookSideConsumed() bool

func (*GetOrderbookMovementResponse) GetImpactPercentage

func (x *GetOrderbookMovementResponse) GetImpactPercentage() float64

func (*GetOrderbookMovementResponse) GetNoSlippageOccurred

func (x *GetOrderbookMovementResponse) GetNoSlippageOccurred() bool

func (*GetOrderbookMovementResponse) GetNominalPercentage

func (x *GetOrderbookMovementResponse) GetNominalPercentage() float64

func (*GetOrderbookMovementResponse) GetSideAffected

func (x *GetOrderbookMovementResponse) GetSideAffected() string

func (*GetOrderbookMovementResponse) GetSlippageCost

func (x *GetOrderbookMovementResponse) GetSlippageCost() float64

func (*GetOrderbookMovementResponse) GetSold

func (*GetOrderbookMovementResponse) GetStartPrice

func (x *GetOrderbookMovementResponse) GetStartPrice() float64

func (*GetOrderbookMovementResponse) GetUpdateProtocol

func (x *GetOrderbookMovementResponse) GetUpdateProtocol() string

func (*GetOrderbookMovementResponse) ProtoMessage

func (*GetOrderbookMovementResponse) ProtoMessage()

func (*GetOrderbookMovementResponse) ProtoReflect

func (*GetOrderbookMovementResponse) Reset

func (x *GetOrderbookMovementResponse) Reset()

func (*GetOrderbookMovementResponse) String

type GetOrderbookRequest

type GetOrderbookRequest struct {
	Exchange  string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair      *CurrencyPair `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	AssetType string        `protobuf:"bytes,3,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOrderbookRequest) Descriptor deprecated

func (*GetOrderbookRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOrderbookRequest.ProtoReflect.Descriptor instead.

func (*GetOrderbookRequest) GetAssetType

func (x *GetOrderbookRequest) GetAssetType() string

func (*GetOrderbookRequest) GetExchange

func (x *GetOrderbookRequest) GetExchange() string

func (*GetOrderbookRequest) GetPair

func (x *GetOrderbookRequest) GetPair() *CurrencyPair

func (*GetOrderbookRequest) ProtoMessage

func (*GetOrderbookRequest) ProtoMessage()

func (*GetOrderbookRequest) ProtoReflect

func (x *GetOrderbookRequest) ProtoReflect() protoreflect.Message

func (*GetOrderbookRequest) Reset

func (x *GetOrderbookRequest) Reset()

func (*GetOrderbookRequest) String

func (x *GetOrderbookRequest) String() string

type GetOrderbookStreamRequest

type GetOrderbookStreamRequest struct {
	Exchange  string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair      *CurrencyPair `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	AssetType string        `protobuf:"bytes,3,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOrderbookStreamRequest) Descriptor deprecated

func (*GetOrderbookStreamRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOrderbookStreamRequest.ProtoReflect.Descriptor instead.

func (*GetOrderbookStreamRequest) GetAssetType

func (x *GetOrderbookStreamRequest) GetAssetType() string

func (*GetOrderbookStreamRequest) GetExchange

func (x *GetOrderbookStreamRequest) GetExchange() string

func (*GetOrderbookStreamRequest) GetPair

func (*GetOrderbookStreamRequest) ProtoMessage

func (*GetOrderbookStreamRequest) ProtoMessage()

func (*GetOrderbookStreamRequest) ProtoReflect

func (*GetOrderbookStreamRequest) Reset

func (x *GetOrderbookStreamRequest) Reset()

func (*GetOrderbookStreamRequest) String

func (x *GetOrderbookStreamRequest) String() string

type GetOrderbooksRequest

type GetOrderbooksRequest struct {
	// contains filtered or unexported fields
}

func (*GetOrderbooksRequest) Descriptor deprecated

func (*GetOrderbooksRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOrderbooksRequest.ProtoReflect.Descriptor instead.

func (*GetOrderbooksRequest) ProtoMessage

func (*GetOrderbooksRequest) ProtoMessage()

func (*GetOrderbooksRequest) ProtoReflect

func (x *GetOrderbooksRequest) ProtoReflect() protoreflect.Message

func (*GetOrderbooksRequest) Reset

func (x *GetOrderbooksRequest) Reset()

func (*GetOrderbooksRequest) String

func (x *GetOrderbooksRequest) String() string

type GetOrderbooksResponse

type GetOrderbooksResponse struct {
	Orderbooks []*Orderbooks `protobuf:"bytes,1,rep,name=orderbooks,proto3" json:"orderbooks,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOrderbooksResponse) Descriptor deprecated

func (*GetOrderbooksResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetOrderbooksResponse.ProtoReflect.Descriptor instead.

func (*GetOrderbooksResponse) GetOrderbooks

func (x *GetOrderbooksResponse) GetOrderbooks() []*Orderbooks

func (*GetOrderbooksResponse) ProtoMessage

func (*GetOrderbooksResponse) ProtoMessage()

func (*GetOrderbooksResponse) ProtoReflect

func (x *GetOrderbooksResponse) ProtoReflect() protoreflect.Message

func (*GetOrderbooksResponse) Reset

func (x *GetOrderbooksResponse) Reset()

func (*GetOrderbooksResponse) String

func (x *GetOrderbooksResponse) String() string

type GetOrdersRequest

type GetOrdersRequest struct {
	Exchange  string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	AssetType string        `protobuf:"bytes,2,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	Pair      *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	StartDate string        `protobuf:"bytes,4,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`
	EndDate   string        `protobuf:"bytes,5,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOrdersRequest) Descriptor deprecated

func (*GetOrdersRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOrdersRequest.ProtoReflect.Descriptor instead.

func (*GetOrdersRequest) GetAssetType

func (x *GetOrdersRequest) GetAssetType() string

func (*GetOrdersRequest) GetEndDate

func (x *GetOrdersRequest) GetEndDate() string

func (*GetOrdersRequest) GetExchange

func (x *GetOrdersRequest) GetExchange() string

func (*GetOrdersRequest) GetPair

func (x *GetOrdersRequest) GetPair() *CurrencyPair

func (*GetOrdersRequest) GetStartDate

func (x *GetOrdersRequest) GetStartDate() string

func (*GetOrdersRequest) ProtoMessage

func (*GetOrdersRequest) ProtoMessage()

func (*GetOrdersRequest) ProtoReflect

func (x *GetOrdersRequest) ProtoReflect() protoreflect.Message

func (*GetOrdersRequest) Reset

func (x *GetOrdersRequest) Reset()

func (*GetOrdersRequest) String

func (x *GetOrdersRequest) String() string

type GetOrdersResponse

type GetOrdersResponse struct {
	Orders []*OrderDetails `protobuf:"bytes,1,rep,name=orders,proto3" json:"orders,omitempty"`
	// contains filtered or unexported fields
}

func (*GetOrdersResponse) Descriptor deprecated

func (*GetOrdersResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetOrdersResponse.ProtoReflect.Descriptor instead.

func (*GetOrdersResponse) GetOrders

func (x *GetOrdersResponse) GetOrders() []*OrderDetails

func (*GetOrdersResponse) ProtoMessage

func (*GetOrdersResponse) ProtoMessage()

func (*GetOrdersResponse) ProtoReflect

func (x *GetOrdersResponse) ProtoReflect() protoreflect.Message

func (*GetOrdersResponse) Reset

func (x *GetOrdersResponse) Reset()

func (*GetOrdersResponse) String

func (x *GetOrdersResponse) String() string

type GetPortfolioRequest

type GetPortfolioRequest struct {
	// contains filtered or unexported fields
}

func (*GetPortfolioRequest) Descriptor deprecated

func (*GetPortfolioRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetPortfolioRequest.ProtoReflect.Descriptor instead.

func (*GetPortfolioRequest) ProtoMessage

func (*GetPortfolioRequest) ProtoMessage()

func (*GetPortfolioRequest) ProtoReflect

func (x *GetPortfolioRequest) ProtoReflect() protoreflect.Message

func (*GetPortfolioRequest) Reset

func (x *GetPortfolioRequest) Reset()

func (*GetPortfolioRequest) String

func (x *GetPortfolioRequest) String() string

type GetPortfolioResponse

type GetPortfolioResponse struct {
	Portfolio []*PortfolioAddress `protobuf:"bytes,1,rep,name=portfolio,proto3" json:"portfolio,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPortfolioResponse) Descriptor deprecated

func (*GetPortfolioResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetPortfolioResponse.ProtoReflect.Descriptor instead.

func (*GetPortfolioResponse) GetPortfolio

func (x *GetPortfolioResponse) GetPortfolio() []*PortfolioAddress

func (*GetPortfolioResponse) ProtoMessage

func (*GetPortfolioResponse) ProtoMessage()

func (*GetPortfolioResponse) ProtoReflect

func (x *GetPortfolioResponse) ProtoReflect() protoreflect.Message

func (*GetPortfolioResponse) Reset

func (x *GetPortfolioResponse) Reset()

func (*GetPortfolioResponse) String

func (x *GetPortfolioResponse) String() string

type GetPortfolioSummaryRequest

type GetPortfolioSummaryRequest struct {
	// contains filtered or unexported fields
}

func (*GetPortfolioSummaryRequest) Descriptor deprecated

func (*GetPortfolioSummaryRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetPortfolioSummaryRequest.ProtoReflect.Descriptor instead.

func (*GetPortfolioSummaryRequest) ProtoMessage

func (*GetPortfolioSummaryRequest) ProtoMessage()

func (*GetPortfolioSummaryRequest) ProtoReflect

func (*GetPortfolioSummaryRequest) Reset

func (x *GetPortfolioSummaryRequest) Reset()

func (*GetPortfolioSummaryRequest) String

func (x *GetPortfolioSummaryRequest) String() string

type GetPortfolioSummaryResponse

type GetPortfolioSummaryResponse struct {
	CoinTotals          []*Coin                  `protobuf:"bytes,1,rep,name=coin_totals,json=coinTotals,proto3" json:"coin_totals,omitempty"`
	CoinsOffline        []*Coin                  `protobuf:"bytes,2,rep,name=coins_offline,json=coinsOffline,proto3" json:"coins_offline,omitempty"`
	CoinsOfflineSummary map[string]*OfflineCoins `` /* 208-byte string literal not displayed */
	CoinsOnline         []*Coin                  `protobuf:"bytes,4,rep,name=coins_online,json=coinsOnline,proto3" json:"coins_online,omitempty"`
	CoinsOnlineSummary  map[string]*OnlineCoins  `` /* 205-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetPortfolioSummaryResponse) Descriptor deprecated

func (*GetPortfolioSummaryResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetPortfolioSummaryResponse.ProtoReflect.Descriptor instead.

func (*GetPortfolioSummaryResponse) GetCoinTotals

func (x *GetPortfolioSummaryResponse) GetCoinTotals() []*Coin

func (*GetPortfolioSummaryResponse) GetCoinsOffline

func (x *GetPortfolioSummaryResponse) GetCoinsOffline() []*Coin

func (*GetPortfolioSummaryResponse) GetCoinsOfflineSummary

func (x *GetPortfolioSummaryResponse) GetCoinsOfflineSummary() map[string]*OfflineCoins

func (*GetPortfolioSummaryResponse) GetCoinsOnline

func (x *GetPortfolioSummaryResponse) GetCoinsOnline() []*Coin

func (*GetPortfolioSummaryResponse) GetCoinsOnlineSummary

func (x *GetPortfolioSummaryResponse) GetCoinsOnlineSummary() map[string]*OnlineCoins

func (*GetPortfolioSummaryResponse) ProtoMessage

func (*GetPortfolioSummaryResponse) ProtoMessage()

func (*GetPortfolioSummaryResponse) ProtoReflect

func (*GetPortfolioSummaryResponse) Reset

func (x *GetPortfolioSummaryResponse) Reset()

func (*GetPortfolioSummaryResponse) String

func (x *GetPortfolioSummaryResponse) String() string

type GetRPCEndpointsRequest

type GetRPCEndpointsRequest struct {
	// contains filtered or unexported fields
}

func (*GetRPCEndpointsRequest) Descriptor deprecated

func (*GetRPCEndpointsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetRPCEndpointsRequest.ProtoReflect.Descriptor instead.

func (*GetRPCEndpointsRequest) ProtoMessage

func (*GetRPCEndpointsRequest) ProtoMessage()

func (*GetRPCEndpointsRequest) ProtoReflect

func (x *GetRPCEndpointsRequest) ProtoReflect() protoreflect.Message

func (*GetRPCEndpointsRequest) Reset

func (x *GetRPCEndpointsRequest) Reset()

func (*GetRPCEndpointsRequest) String

func (x *GetRPCEndpointsRequest) String() string

type GetRPCEndpointsResponse

type GetRPCEndpointsResponse struct {
	Endpoints map[string]*RPCEndpoint `` /* 159-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetRPCEndpointsResponse) Descriptor deprecated

func (*GetRPCEndpointsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetRPCEndpointsResponse.ProtoReflect.Descriptor instead.

func (*GetRPCEndpointsResponse) GetEndpoints

func (x *GetRPCEndpointsResponse) GetEndpoints() map[string]*RPCEndpoint

func (*GetRPCEndpointsResponse) ProtoMessage

func (*GetRPCEndpointsResponse) ProtoMessage()

func (*GetRPCEndpointsResponse) ProtoReflect

func (x *GetRPCEndpointsResponse) ProtoReflect() protoreflect.Message

func (*GetRPCEndpointsResponse) Reset

func (x *GetRPCEndpointsResponse) Reset()

func (*GetRPCEndpointsResponse) String

func (x *GetRPCEndpointsResponse) String() string

type GetSavedTradesRequest

type GetSavedTradesRequest struct {
	Exchange  string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair      *CurrencyPair `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	AssetType string        `protobuf:"bytes,3,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	Start     string        `protobuf:"bytes,4,opt,name=start,proto3" json:"start,omitempty"`
	End       string        `protobuf:"bytes,5,opt,name=end,proto3" json:"end,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSavedTradesRequest) Descriptor deprecated

func (*GetSavedTradesRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetSavedTradesRequest.ProtoReflect.Descriptor instead.

func (*GetSavedTradesRequest) GetAssetType

func (x *GetSavedTradesRequest) GetAssetType() string

func (*GetSavedTradesRequest) GetEnd

func (x *GetSavedTradesRequest) GetEnd() string

func (*GetSavedTradesRequest) GetExchange

func (x *GetSavedTradesRequest) GetExchange() string

func (*GetSavedTradesRequest) GetPair

func (x *GetSavedTradesRequest) GetPair() *CurrencyPair

func (*GetSavedTradesRequest) GetStart

func (x *GetSavedTradesRequest) GetStart() string

func (*GetSavedTradesRequest) ProtoMessage

func (*GetSavedTradesRequest) ProtoMessage()

func (*GetSavedTradesRequest) ProtoReflect

func (x *GetSavedTradesRequest) ProtoReflect() protoreflect.Message

func (*GetSavedTradesRequest) Reset

func (x *GetSavedTradesRequest) Reset()

func (*GetSavedTradesRequest) String

func (x *GetSavedTradesRequest) String() string

type GetSubsystemsRequest

type GetSubsystemsRequest struct {
	// contains filtered or unexported fields
}

func (*GetSubsystemsRequest) Descriptor deprecated

func (*GetSubsystemsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetSubsystemsRequest.ProtoReflect.Descriptor instead.

func (*GetSubsystemsRequest) ProtoMessage

func (*GetSubsystemsRequest) ProtoMessage()

func (*GetSubsystemsRequest) ProtoReflect

func (x *GetSubsystemsRequest) ProtoReflect() protoreflect.Message

func (*GetSubsystemsRequest) Reset

func (x *GetSubsystemsRequest) Reset()

func (*GetSubsystemsRequest) String

func (x *GetSubsystemsRequest) String() string

type GetSusbsytemsResponse

type GetSusbsytemsResponse struct {
	SubsystemsStatus map[string]bool `` /* 198-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetSusbsytemsResponse) Descriptor deprecated

func (*GetSusbsytemsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetSusbsytemsResponse.ProtoReflect.Descriptor instead.

func (*GetSusbsytemsResponse) GetSubsystemsStatus

func (x *GetSusbsytemsResponse) GetSubsystemsStatus() map[string]bool

func (*GetSusbsytemsResponse) ProtoMessage

func (*GetSusbsytemsResponse) ProtoMessage()

func (*GetSusbsytemsResponse) ProtoReflect

func (x *GetSusbsytemsResponse) ProtoReflect() protoreflect.Message

func (*GetSusbsytemsResponse) Reset

func (x *GetSusbsytemsResponse) Reset()

func (*GetSusbsytemsResponse) String

func (x *GetSusbsytemsResponse) String() string

type GetTechnicalAnalysisRequest

type GetTechnicalAnalysisRequest struct {
	Exchange              string                 `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair                  *CurrencyPair          `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	AssetType             string                 `protobuf:"bytes,3,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	AlgorithmType         string                 `protobuf:"bytes,4,opt,name=algorithm_type,json=algorithmType,proto3" json:"algorithm_type,omitempty"`
	Interval              int64                  `protobuf:"varint,5,opt,name=interval,proto3" json:"interval,omitempty"`
	Start                 *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=start,proto3" json:"start,omitempty"`
	End                   *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=end,proto3" json:"end,omitempty"`
	Period                int64                  `protobuf:"varint,8,opt,name=period,proto3" json:"period,omitempty"`
	FastPeriod            int64                  `protobuf:"varint,9,opt,name=fast_period,json=fastPeriod,proto3" json:"fast_period,omitempty"`
	SlowPeriod            int64                  `protobuf:"varint,10,opt,name=slow_period,json=slowPeriod,proto3" json:"slow_period,omitempty"`
	StandardDeviationUp   float64                `protobuf:"fixed64,11,opt,name=standard_deviation_up,json=standardDeviationUp,proto3" json:"standard_deviation_up,omitempty"`
	StandardDeviationDown float64                `` /* 129-byte string literal not displayed */
	MovingAverageType     int64                  `protobuf:"varint,13,opt,name=moving_average_type,json=movingAverageType,proto3" json:"moving_average_type,omitempty"`
	OtherExchange         string                 `protobuf:"bytes,14,opt,name=other_exchange,json=otherExchange,proto3" json:"other_exchange,omitempty"`
	OtherPair             *CurrencyPair          `protobuf:"bytes,15,opt,name=other_pair,json=otherPair,proto3" json:"other_pair,omitempty"`
	OtherAssetType        string                 `protobuf:"bytes,16,opt,name=other_asset_type,json=otherAssetType,proto3" json:"other_asset_type,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTechnicalAnalysisRequest) Descriptor deprecated

func (*GetTechnicalAnalysisRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetTechnicalAnalysisRequest.ProtoReflect.Descriptor instead.

func (*GetTechnicalAnalysisRequest) GetAlgorithmType

func (x *GetTechnicalAnalysisRequest) GetAlgorithmType() string

func (*GetTechnicalAnalysisRequest) GetAssetType

func (x *GetTechnicalAnalysisRequest) GetAssetType() string

func (*GetTechnicalAnalysisRequest) GetEnd

func (*GetTechnicalAnalysisRequest) GetExchange

func (x *GetTechnicalAnalysisRequest) GetExchange() string

func (*GetTechnicalAnalysisRequest) GetFastPeriod

func (x *GetTechnicalAnalysisRequest) GetFastPeriod() int64

func (*GetTechnicalAnalysisRequest) GetInterval

func (x *GetTechnicalAnalysisRequest) GetInterval() int64

func (*GetTechnicalAnalysisRequest) GetMovingAverageType

func (x *GetTechnicalAnalysisRequest) GetMovingAverageType() int64

func (*GetTechnicalAnalysisRequest) GetOtherAssetType

func (x *GetTechnicalAnalysisRequest) GetOtherAssetType() string

func (*GetTechnicalAnalysisRequest) GetOtherExchange

func (x *GetTechnicalAnalysisRequest) GetOtherExchange() string

func (*GetTechnicalAnalysisRequest) GetOtherPair

func (x *GetTechnicalAnalysisRequest) GetOtherPair() *CurrencyPair

func (*GetTechnicalAnalysisRequest) GetPair

func (*GetTechnicalAnalysisRequest) GetPeriod

func (x *GetTechnicalAnalysisRequest) GetPeriod() int64

func (*GetTechnicalAnalysisRequest) GetSlowPeriod

func (x *GetTechnicalAnalysisRequest) GetSlowPeriod() int64

func (*GetTechnicalAnalysisRequest) GetStandardDeviationDown

func (x *GetTechnicalAnalysisRequest) GetStandardDeviationDown() float64

func (*GetTechnicalAnalysisRequest) GetStandardDeviationUp

func (x *GetTechnicalAnalysisRequest) GetStandardDeviationUp() float64

func (*GetTechnicalAnalysisRequest) GetStart

func (*GetTechnicalAnalysisRequest) ProtoMessage

func (*GetTechnicalAnalysisRequest) ProtoMessage()

func (*GetTechnicalAnalysisRequest) ProtoReflect

func (*GetTechnicalAnalysisRequest) Reset

func (x *GetTechnicalAnalysisRequest) Reset()

func (*GetTechnicalAnalysisRequest) String

func (x *GetTechnicalAnalysisRequest) String() string

type GetTechnicalAnalysisResponse

type GetTechnicalAnalysisResponse struct {
	Signals map[string]*ListOfSignals `` /* 155-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetTechnicalAnalysisResponse) Descriptor deprecated

func (*GetTechnicalAnalysisResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetTechnicalAnalysisResponse.ProtoReflect.Descriptor instead.

func (*GetTechnicalAnalysisResponse) GetSignals

func (x *GetTechnicalAnalysisResponse) GetSignals() map[string]*ListOfSignals

func (*GetTechnicalAnalysisResponse) ProtoMessage

func (*GetTechnicalAnalysisResponse) ProtoMessage()

func (*GetTechnicalAnalysisResponse) ProtoReflect

func (*GetTechnicalAnalysisResponse) Reset

func (x *GetTechnicalAnalysisResponse) Reset()

func (*GetTechnicalAnalysisResponse) String

type GetTickerRequest

type GetTickerRequest struct {
	Exchange  string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair      *CurrencyPair `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	AssetType string        `protobuf:"bytes,3,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTickerRequest) Descriptor deprecated

func (*GetTickerRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetTickerRequest.ProtoReflect.Descriptor instead.

func (*GetTickerRequest) GetAssetType

func (x *GetTickerRequest) GetAssetType() string

func (*GetTickerRequest) GetExchange

func (x *GetTickerRequest) GetExchange() string

func (*GetTickerRequest) GetPair

func (x *GetTickerRequest) GetPair() *CurrencyPair

func (*GetTickerRequest) ProtoMessage

func (*GetTickerRequest) ProtoMessage()

func (*GetTickerRequest) ProtoReflect

func (x *GetTickerRequest) ProtoReflect() protoreflect.Message

func (*GetTickerRequest) Reset

func (x *GetTickerRequest) Reset()

func (*GetTickerRequest) String

func (x *GetTickerRequest) String() string

type GetTickerStreamRequest

type GetTickerStreamRequest struct {
	Exchange  string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair      *CurrencyPair `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	AssetType string        `protobuf:"bytes,3,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTickerStreamRequest) Descriptor deprecated

func (*GetTickerStreamRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetTickerStreamRequest.ProtoReflect.Descriptor instead.

func (*GetTickerStreamRequest) GetAssetType

func (x *GetTickerStreamRequest) GetAssetType() string

func (*GetTickerStreamRequest) GetExchange

func (x *GetTickerStreamRequest) GetExchange() string

func (*GetTickerStreamRequest) GetPair

func (x *GetTickerStreamRequest) GetPair() *CurrencyPair

func (*GetTickerStreamRequest) ProtoMessage

func (*GetTickerStreamRequest) ProtoMessage()

func (*GetTickerStreamRequest) ProtoReflect

func (x *GetTickerStreamRequest) ProtoReflect() protoreflect.Message

func (*GetTickerStreamRequest) Reset

func (x *GetTickerStreamRequest) Reset()

func (*GetTickerStreamRequest) String

func (x *GetTickerStreamRequest) String() string

type GetTickersRequest

type GetTickersRequest struct {
	// contains filtered or unexported fields
}

func (*GetTickersRequest) Descriptor deprecated

func (*GetTickersRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetTickersRequest.ProtoReflect.Descriptor instead.

func (*GetTickersRequest) ProtoMessage

func (*GetTickersRequest) ProtoMessage()

func (*GetTickersRequest) ProtoReflect

func (x *GetTickersRequest) ProtoReflect() protoreflect.Message

func (*GetTickersRequest) Reset

func (x *GetTickersRequest) Reset()

func (*GetTickersRequest) String

func (x *GetTickersRequest) String() string

type GetTickersResponse

type GetTickersResponse struct {
	Tickers []*Tickers `protobuf:"bytes,1,rep,name=tickers,proto3" json:"tickers,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTickersResponse) Descriptor deprecated

func (*GetTickersResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetTickersResponse.ProtoReflect.Descriptor instead.

func (*GetTickersResponse) GetTickers

func (x *GetTickersResponse) GetTickers() []*Tickers

func (*GetTickersResponse) ProtoMessage

func (*GetTickersResponse) ProtoMessage()

func (*GetTickersResponse) ProtoReflect

func (x *GetTickersResponse) ProtoReflect() protoreflect.Message

func (*GetTickersResponse) Reset

func (x *GetTickersResponse) Reset()

func (*GetTickersResponse) String

func (x *GetTickersResponse) String() string

type GoCryptoTraderServiceClient

type GoCryptoTraderServiceClient interface {
	GetInfo(ctx context.Context, in *GetInfoRequest, opts ...grpc.CallOption) (*GetInfoResponse, error)
	GetSubsystems(ctx context.Context, in *GetSubsystemsRequest, opts ...grpc.CallOption) (*GetSusbsytemsResponse, error)
	EnableSubsystem(ctx context.Context, in *GenericSubsystemRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	DisableSubsystem(ctx context.Context, in *GenericSubsystemRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GetRPCEndpoints(ctx context.Context, in *GetRPCEndpointsRequest, opts ...grpc.CallOption) (*GetRPCEndpointsResponse, error)
	GetCommunicationRelayers(ctx context.Context, in *GetCommunicationRelayersRequest, opts ...grpc.CallOption) (*GetCommunicationRelayersResponse, error)
	GetExchanges(ctx context.Context, in *GetExchangesRequest, opts ...grpc.CallOption) (*GetExchangesResponse, error)
	DisableExchange(ctx context.Context, in *GenericExchangeNameRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GetExchangeInfo(ctx context.Context, in *GenericExchangeNameRequest, opts ...grpc.CallOption) (*GetExchangeInfoResponse, error)
	GetExchangeOTPCode(ctx context.Context, in *GenericExchangeNameRequest, opts ...grpc.CallOption) (*GetExchangeOTPResponse, error)
	GetExchangeOTPCodes(ctx context.Context, in *GetExchangeOTPsRequest, opts ...grpc.CallOption) (*GetExchangeOTPsResponse, error)
	EnableExchange(ctx context.Context, in *GenericExchangeNameRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GetTicker(ctx context.Context, in *GetTickerRequest, opts ...grpc.CallOption) (*TickerResponse, error)
	GetTickers(ctx context.Context, in *GetTickersRequest, opts ...grpc.CallOption) (*GetTickersResponse, error)
	GetOrderbook(ctx context.Context, in *GetOrderbookRequest, opts ...grpc.CallOption) (*OrderbookResponse, error)
	GetOrderbooks(ctx context.Context, in *GetOrderbooksRequest, opts ...grpc.CallOption) (*GetOrderbooksResponse, error)
	GetAccountInfo(ctx context.Context, in *GetAccountInfoRequest, opts ...grpc.CallOption) (*GetAccountInfoResponse, error)
	UpdateAccountInfo(ctx context.Context, in *GetAccountInfoRequest, opts ...grpc.CallOption) (*GetAccountInfoResponse, error)
	GetAccountInfoStream(ctx context.Context, in *GetAccountInfoRequest, opts ...grpc.CallOption) (GoCryptoTraderService_GetAccountInfoStreamClient, error)
	GetConfig(ctx context.Context, in *GetConfigRequest, opts ...grpc.CallOption) (*GetConfigResponse, error)
	GetPortfolio(ctx context.Context, in *GetPortfolioRequest, opts ...grpc.CallOption) (*GetPortfolioResponse, error)
	GetPortfolioSummary(ctx context.Context, in *GetPortfolioSummaryRequest, opts ...grpc.CallOption) (*GetPortfolioSummaryResponse, error)
	AddPortfolioAddress(ctx context.Context, in *AddPortfolioAddressRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	RemovePortfolioAddress(ctx context.Context, in *RemovePortfolioAddressRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GetForexProviders(ctx context.Context, in *GetForexProvidersRequest, opts ...grpc.CallOption) (*GetForexProvidersResponse, error)
	GetForexRates(ctx context.Context, in *GetForexRatesRequest, opts ...grpc.CallOption) (*GetForexRatesResponse, error)
	GetOrders(ctx context.Context, in *GetOrdersRequest, opts ...grpc.CallOption) (*GetOrdersResponse, error)
	GetOrder(ctx context.Context, in *GetOrderRequest, opts ...grpc.CallOption) (*OrderDetails, error)
	SubmitOrder(ctx context.Context, in *SubmitOrderRequest, opts ...grpc.CallOption) (*SubmitOrderResponse, error)
	SimulateOrder(ctx context.Context, in *SimulateOrderRequest, opts ...grpc.CallOption) (*SimulateOrderResponse, error)
	WhaleBomb(ctx context.Context, in *WhaleBombRequest, opts ...grpc.CallOption) (*SimulateOrderResponse, error)
	CancelOrder(ctx context.Context, in *CancelOrderRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	CancelBatchOrders(ctx context.Context, in *CancelBatchOrdersRequest, opts ...grpc.CallOption) (*CancelBatchOrdersResponse, error)
	CancelAllOrders(ctx context.Context, in *CancelAllOrdersRequest, opts ...grpc.CallOption) (*CancelAllOrdersResponse, error)
	GetEvents(ctx context.Context, in *GetEventsRequest, opts ...grpc.CallOption) (*GetEventsResponse, error)
	AddEvent(ctx context.Context, in *AddEventRequest, opts ...grpc.CallOption) (*AddEventResponse, error)
	RemoveEvent(ctx context.Context, in *RemoveEventRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GetCryptocurrencyDepositAddresses(ctx context.Context, in *GetCryptocurrencyDepositAddressesRequest, opts ...grpc.CallOption) (*GetCryptocurrencyDepositAddressesResponse, error)
	GetCryptocurrencyDepositAddress(ctx context.Context, in *GetCryptocurrencyDepositAddressRequest, opts ...grpc.CallOption) (*GetCryptocurrencyDepositAddressResponse, error)
	GetAvailableTransferChains(ctx context.Context, in *GetAvailableTransferChainsRequest, opts ...grpc.CallOption) (*GetAvailableTransferChainsResponse, error)
	WithdrawFiatFunds(ctx context.Context, in *WithdrawFiatRequest, opts ...grpc.CallOption) (*WithdrawResponse, error)
	WithdrawCryptocurrencyFunds(ctx context.Context, in *WithdrawCryptoRequest, opts ...grpc.CallOption) (*WithdrawResponse, error)
	WithdrawalEventByID(ctx context.Context, in *WithdrawalEventByIDRequest, opts ...grpc.CallOption) (*WithdrawalEventByIDResponse, error)
	WithdrawalEventsByExchange(ctx context.Context, in *WithdrawalEventsByExchangeRequest, opts ...grpc.CallOption) (*WithdrawalEventsByExchangeResponse, error)
	WithdrawalEventsByDate(ctx context.Context, in *WithdrawalEventsByDateRequest, opts ...grpc.CallOption) (*WithdrawalEventsByExchangeResponse, error)
	GetLoggerDetails(ctx context.Context, in *GetLoggerDetailsRequest, opts ...grpc.CallOption) (*GetLoggerDetailsResponse, error)
	SetLoggerDetails(ctx context.Context, in *SetLoggerDetailsRequest, opts ...grpc.CallOption) (*GetLoggerDetailsResponse, error)
	GetExchangePairs(ctx context.Context, in *GetExchangePairsRequest, opts ...grpc.CallOption) (*GetExchangePairsResponse, error)
	SetExchangePair(ctx context.Context, in *SetExchangePairRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GetOrderbookStream(ctx context.Context, in *GetOrderbookStreamRequest, opts ...grpc.CallOption) (GoCryptoTraderService_GetOrderbookStreamClient, error)
	GetExchangeOrderbookStream(ctx context.Context, in *GetExchangeOrderbookStreamRequest, opts ...grpc.CallOption) (GoCryptoTraderService_GetExchangeOrderbookStreamClient, error)
	GetTickerStream(ctx context.Context, in *GetTickerStreamRequest, opts ...grpc.CallOption) (GoCryptoTraderService_GetTickerStreamClient, error)
	GetExchangeTickerStream(ctx context.Context, in *GetExchangeTickerStreamRequest, opts ...grpc.CallOption) (GoCryptoTraderService_GetExchangeTickerStreamClient, error)
	GetAuditEvent(ctx context.Context, in *GetAuditEventRequest, opts ...grpc.CallOption) (*GetAuditEventResponse, error)
	GCTScriptExecute(ctx context.Context, in *GCTScriptExecuteRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GCTScriptUpload(ctx context.Context, in *GCTScriptUploadRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GCTScriptReadScript(ctx context.Context, in *GCTScriptReadScriptRequest, opts ...grpc.CallOption) (*GCTScriptQueryResponse, error)
	GCTScriptStatus(ctx context.Context, in *GCTScriptStatusRequest, opts ...grpc.CallOption) (*GCTScriptStatusResponse, error)
	GCTScriptQuery(ctx context.Context, in *GCTScriptQueryRequest, opts ...grpc.CallOption) (*GCTScriptQueryResponse, error)
	GCTScriptStop(ctx context.Context, in *GCTScriptStopRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GCTScriptStopAll(ctx context.Context, in *GCTScriptStopAllRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GCTScriptListAll(ctx context.Context, in *GCTScriptListAllRequest, opts ...grpc.CallOption) (*GCTScriptStatusResponse, error)
	GCTScriptAutoLoadToggle(ctx context.Context, in *GCTScriptAutoLoadRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GetHistoricCandles(ctx context.Context, in *GetHistoricCandlesRequest, opts ...grpc.CallOption) (*GetHistoricCandlesResponse, error)
	SetExchangeAsset(ctx context.Context, in *SetExchangeAssetRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	SetAllExchangePairs(ctx context.Context, in *SetExchangeAllPairsRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	UpdateExchangeSupportedPairs(ctx context.Context, in *UpdateExchangeSupportedPairsRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GetExchangeAssets(ctx context.Context, in *GetExchangeAssetsRequest, opts ...grpc.CallOption) (*GetExchangeAssetsResponse, error)
	WebsocketGetInfo(ctx context.Context, in *WebsocketGetInfoRequest, opts ...grpc.CallOption) (*WebsocketGetInfoResponse, error)
	WebsocketSetEnabled(ctx context.Context, in *WebsocketSetEnabledRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	WebsocketGetSubscriptions(ctx context.Context, in *WebsocketGetSubscriptionsRequest, opts ...grpc.CallOption) (*WebsocketGetSubscriptionsResponse, error)
	WebsocketSetProxy(ctx context.Context, in *WebsocketSetProxyRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	WebsocketSetURL(ctx context.Context, in *WebsocketSetURLRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GetRecentTrades(ctx context.Context, in *GetSavedTradesRequest, opts ...grpc.CallOption) (*SavedTradesResponse, error)
	GetHistoricTrades(ctx context.Context, in *GetSavedTradesRequest, opts ...grpc.CallOption) (GoCryptoTraderService_GetHistoricTradesClient, error)
	GetSavedTrades(ctx context.Context, in *GetSavedTradesRequest, opts ...grpc.CallOption) (*SavedTradesResponse, error)
	ConvertTradesToCandles(ctx context.Context, in *ConvertTradesToCandlesRequest, opts ...grpc.CallOption) (*GetHistoricCandlesResponse, error)
	FindMissingSavedCandleIntervals(ctx context.Context, in *FindMissingCandlePeriodsRequest, opts ...grpc.CallOption) (*FindMissingIntervalsResponse, error)
	FindMissingSavedTradeIntervals(ctx context.Context, in *FindMissingTradePeriodsRequest, opts ...grpc.CallOption) (*FindMissingIntervalsResponse, error)
	SetExchangeTradeProcessing(ctx context.Context, in *SetExchangeTradeProcessingRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	UpsertDataHistoryJob(ctx context.Context, in *UpsertDataHistoryJobRequest, opts ...grpc.CallOption) (*UpsertDataHistoryJobResponse, error)
	GetDataHistoryJobDetails(ctx context.Context, in *GetDataHistoryJobDetailsRequest, opts ...grpc.CallOption) (*DataHistoryJob, error)
	GetActiveDataHistoryJobs(ctx context.Context, in *GetInfoRequest, opts ...grpc.CallOption) (*DataHistoryJobs, error)
	GetDataHistoryJobsBetween(ctx context.Context, in *GetDataHistoryJobsBetweenRequest, opts ...grpc.CallOption) (*DataHistoryJobs, error)
	GetDataHistoryJobSummary(ctx context.Context, in *GetDataHistoryJobDetailsRequest, opts ...grpc.CallOption) (*DataHistoryJob, error)
	SetDataHistoryJobStatus(ctx context.Context, in *SetDataHistoryJobStatusRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	UpdateDataHistoryJobPrerequisite(ctx context.Context, in *UpdateDataHistoryJobPrerequisiteRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GetManagedOrders(ctx context.Context, in *GetOrdersRequest, opts ...grpc.CallOption) (*GetOrdersResponse, error)
	ModifyOrder(ctx context.Context, in *ModifyOrderRequest, opts ...grpc.CallOption) (*ModifyOrderResponse, error)
	CurrencyStateGetAll(ctx context.Context, in *CurrencyStateGetAllRequest, opts ...grpc.CallOption) (*CurrencyStateResponse, error)
	CurrencyStateTrading(ctx context.Context, in *CurrencyStateTradingRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	CurrencyStateDeposit(ctx context.Context, in *CurrencyStateDepositRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	CurrencyStateWithdraw(ctx context.Context, in *CurrencyStateWithdrawRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	CurrencyStateTradingPair(ctx context.Context, in *CurrencyStateTradingPairRequest, opts ...grpc.CallOption) (*GenericResponse, error)
	GetFuturesPositionsSummary(ctx context.Context, in *GetFuturesPositionsSummaryRequest, opts ...grpc.CallOption) (*GetFuturesPositionsSummaryResponse, error)
	GetFuturesPositionsOrders(ctx context.Context, in *GetFuturesPositionsOrdersRequest, opts ...grpc.CallOption) (*GetFuturesPositionsOrdersResponse, error)
	GetCollateral(ctx context.Context, in *GetCollateralRequest, opts ...grpc.CallOption) (*GetCollateralResponse, error)
	Shutdown(ctx context.Context, in *ShutdownRequest, opts ...grpc.CallOption) (*ShutdownResponse, error)
	GetTechnicalAnalysis(ctx context.Context, in *GetTechnicalAnalysisRequest, opts ...grpc.CallOption) (*GetTechnicalAnalysisResponse, error)
	GetMarginRatesHistory(ctx context.Context, in *GetMarginRatesHistoryRequest, opts ...grpc.CallOption) (*GetMarginRatesHistoryResponse, error)
	GetManagedPosition(ctx context.Context, in *GetManagedPositionRequest, opts ...grpc.CallOption) (*GetManagedPositionsResponse, error)
	GetAllManagedPositions(ctx context.Context, in *GetAllManagedPositionsRequest, opts ...grpc.CallOption) (*GetManagedPositionsResponse, error)
	GetFundingRates(ctx context.Context, in *GetFundingRatesRequest, opts ...grpc.CallOption) (*GetFundingRatesResponse, error)
	GetLatestFundingRate(ctx context.Context, in *GetLatestFundingRateRequest, opts ...grpc.CallOption) (*GetLatestFundingRateResponse, error)
	GetOrderbookMovement(ctx context.Context, in *GetOrderbookMovementRequest, opts ...grpc.CallOption) (*GetOrderbookMovementResponse, error)
	GetOrderbookAmountByNominal(ctx context.Context, in *GetOrderbookAmountByNominalRequest, opts ...grpc.CallOption) (*GetOrderbookAmountByNominalResponse, error)
	GetOrderbookAmountByImpact(ctx context.Context, in *GetOrderbookAmountByImpactRequest, opts ...grpc.CallOption) (*GetOrderbookAmountByImpactResponse, error)
	GetCollateralMode(ctx context.Context, in *GetCollateralModeRequest, opts ...grpc.CallOption) (*GetCollateralModeResponse, error)
	GetLeverage(ctx context.Context, in *GetLeverageRequest, opts ...grpc.CallOption) (*GetLeverageResponse, error)
	SetCollateralMode(ctx context.Context, in *SetCollateralModeRequest, opts ...grpc.CallOption) (*SetCollateralModeResponse, error)
	SetMarginType(ctx context.Context, in *SetMarginTypeRequest, opts ...grpc.CallOption) (*SetMarginTypeResponse, error)
	SetLeverage(ctx context.Context, in *SetLeverageRequest, opts ...grpc.CallOption) (*SetLeverageResponse, error)
	ChangePositionMargin(ctx context.Context, in *ChangePositionMarginRequest, opts ...grpc.CallOption) (*ChangePositionMarginResponse, error)
	GetOpenInterest(ctx context.Context, in *GetOpenInterestRequest, opts ...grpc.CallOption) (*GetOpenInterestResponse, error)
	GetCurrencyTradeURL(ctx context.Context, in *GetCurrencyTradeURLRequest, opts ...grpc.CallOption) (*GetCurrencyTradeURLResponse, error)
}

GoCryptoTraderServiceClient is the client API for GoCryptoTraderService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type GoCryptoTraderServiceServer

type GoCryptoTraderServiceServer interface {
	GetInfo(context.Context, *GetInfoRequest) (*GetInfoResponse, error)
	GetSubsystems(context.Context, *GetSubsystemsRequest) (*GetSusbsytemsResponse, error)
	EnableSubsystem(context.Context, *GenericSubsystemRequest) (*GenericResponse, error)
	DisableSubsystem(context.Context, *GenericSubsystemRequest) (*GenericResponse, error)
	GetRPCEndpoints(context.Context, *GetRPCEndpointsRequest) (*GetRPCEndpointsResponse, error)
	GetCommunicationRelayers(context.Context, *GetCommunicationRelayersRequest) (*GetCommunicationRelayersResponse, error)
	GetExchanges(context.Context, *GetExchangesRequest) (*GetExchangesResponse, error)
	DisableExchange(context.Context, *GenericExchangeNameRequest) (*GenericResponse, error)
	GetExchangeInfo(context.Context, *GenericExchangeNameRequest) (*GetExchangeInfoResponse, error)
	GetExchangeOTPCode(context.Context, *GenericExchangeNameRequest) (*GetExchangeOTPResponse, error)
	GetExchangeOTPCodes(context.Context, *GetExchangeOTPsRequest) (*GetExchangeOTPsResponse, error)
	EnableExchange(context.Context, *GenericExchangeNameRequest) (*GenericResponse, error)
	GetTicker(context.Context, *GetTickerRequest) (*TickerResponse, error)
	GetTickers(context.Context, *GetTickersRequest) (*GetTickersResponse, error)
	GetOrderbook(context.Context, *GetOrderbookRequest) (*OrderbookResponse, error)
	GetOrderbooks(context.Context, *GetOrderbooksRequest) (*GetOrderbooksResponse, error)
	GetAccountInfo(context.Context, *GetAccountInfoRequest) (*GetAccountInfoResponse, error)
	UpdateAccountInfo(context.Context, *GetAccountInfoRequest) (*GetAccountInfoResponse, error)
	GetAccountInfoStream(*GetAccountInfoRequest, GoCryptoTraderService_GetAccountInfoStreamServer) error
	GetConfig(context.Context, *GetConfigRequest) (*GetConfigResponse, error)
	GetPortfolio(context.Context, *GetPortfolioRequest) (*GetPortfolioResponse, error)
	GetPortfolioSummary(context.Context, *GetPortfolioSummaryRequest) (*GetPortfolioSummaryResponse, error)
	AddPortfolioAddress(context.Context, *AddPortfolioAddressRequest) (*GenericResponse, error)
	RemovePortfolioAddress(context.Context, *RemovePortfolioAddressRequest) (*GenericResponse, error)
	GetForexProviders(context.Context, *GetForexProvidersRequest) (*GetForexProvidersResponse, error)
	GetForexRates(context.Context, *GetForexRatesRequest) (*GetForexRatesResponse, error)
	GetOrders(context.Context, *GetOrdersRequest) (*GetOrdersResponse, error)
	GetOrder(context.Context, *GetOrderRequest) (*OrderDetails, error)
	SubmitOrder(context.Context, *SubmitOrderRequest) (*SubmitOrderResponse, error)
	SimulateOrder(context.Context, *SimulateOrderRequest) (*SimulateOrderResponse, error)
	WhaleBomb(context.Context, *WhaleBombRequest) (*SimulateOrderResponse, error)
	CancelOrder(context.Context, *CancelOrderRequest) (*GenericResponse, error)
	CancelBatchOrders(context.Context, *CancelBatchOrdersRequest) (*CancelBatchOrdersResponse, error)
	CancelAllOrders(context.Context, *CancelAllOrdersRequest) (*CancelAllOrdersResponse, error)
	GetEvents(context.Context, *GetEventsRequest) (*GetEventsResponse, error)
	AddEvent(context.Context, *AddEventRequest) (*AddEventResponse, error)
	RemoveEvent(context.Context, *RemoveEventRequest) (*GenericResponse, error)
	GetCryptocurrencyDepositAddresses(context.Context, *GetCryptocurrencyDepositAddressesRequest) (*GetCryptocurrencyDepositAddressesResponse, error)
	GetCryptocurrencyDepositAddress(context.Context, *GetCryptocurrencyDepositAddressRequest) (*GetCryptocurrencyDepositAddressResponse, error)
	GetAvailableTransferChains(context.Context, *GetAvailableTransferChainsRequest) (*GetAvailableTransferChainsResponse, error)
	WithdrawFiatFunds(context.Context, *WithdrawFiatRequest) (*WithdrawResponse, error)
	WithdrawCryptocurrencyFunds(context.Context, *WithdrawCryptoRequest) (*WithdrawResponse, error)
	WithdrawalEventByID(context.Context, *WithdrawalEventByIDRequest) (*WithdrawalEventByIDResponse, error)
	WithdrawalEventsByExchange(context.Context, *WithdrawalEventsByExchangeRequest) (*WithdrawalEventsByExchangeResponse, error)
	WithdrawalEventsByDate(context.Context, *WithdrawalEventsByDateRequest) (*WithdrawalEventsByExchangeResponse, error)
	GetLoggerDetails(context.Context, *GetLoggerDetailsRequest) (*GetLoggerDetailsResponse, error)
	SetLoggerDetails(context.Context, *SetLoggerDetailsRequest) (*GetLoggerDetailsResponse, error)
	GetExchangePairs(context.Context, *GetExchangePairsRequest) (*GetExchangePairsResponse, error)
	SetExchangePair(context.Context, *SetExchangePairRequest) (*GenericResponse, error)
	GetOrderbookStream(*GetOrderbookStreamRequest, GoCryptoTraderService_GetOrderbookStreamServer) error
	GetExchangeOrderbookStream(*GetExchangeOrderbookStreamRequest, GoCryptoTraderService_GetExchangeOrderbookStreamServer) error
	GetTickerStream(*GetTickerStreamRequest, GoCryptoTraderService_GetTickerStreamServer) error
	GetExchangeTickerStream(*GetExchangeTickerStreamRequest, GoCryptoTraderService_GetExchangeTickerStreamServer) error
	GetAuditEvent(context.Context, *GetAuditEventRequest) (*GetAuditEventResponse, error)
	GCTScriptExecute(context.Context, *GCTScriptExecuteRequest) (*GenericResponse, error)
	GCTScriptUpload(context.Context, *GCTScriptUploadRequest) (*GenericResponse, error)
	GCTScriptReadScript(context.Context, *GCTScriptReadScriptRequest) (*GCTScriptQueryResponse, error)
	GCTScriptStatus(context.Context, *GCTScriptStatusRequest) (*GCTScriptStatusResponse, error)
	GCTScriptQuery(context.Context, *GCTScriptQueryRequest) (*GCTScriptQueryResponse, error)
	GCTScriptStop(context.Context, *GCTScriptStopRequest) (*GenericResponse, error)
	GCTScriptStopAll(context.Context, *GCTScriptStopAllRequest) (*GenericResponse, error)
	GCTScriptListAll(context.Context, *GCTScriptListAllRequest) (*GCTScriptStatusResponse, error)
	GCTScriptAutoLoadToggle(context.Context, *GCTScriptAutoLoadRequest) (*GenericResponse, error)
	GetHistoricCandles(context.Context, *GetHistoricCandlesRequest) (*GetHistoricCandlesResponse, error)
	SetExchangeAsset(context.Context, *SetExchangeAssetRequest) (*GenericResponse, error)
	SetAllExchangePairs(context.Context, *SetExchangeAllPairsRequest) (*GenericResponse, error)
	UpdateExchangeSupportedPairs(context.Context, *UpdateExchangeSupportedPairsRequest) (*GenericResponse, error)
	GetExchangeAssets(context.Context, *GetExchangeAssetsRequest) (*GetExchangeAssetsResponse, error)
	WebsocketGetInfo(context.Context, *WebsocketGetInfoRequest) (*WebsocketGetInfoResponse, error)
	WebsocketSetEnabled(context.Context, *WebsocketSetEnabledRequest) (*GenericResponse, error)
	WebsocketGetSubscriptions(context.Context, *WebsocketGetSubscriptionsRequest) (*WebsocketGetSubscriptionsResponse, error)
	WebsocketSetProxy(context.Context, *WebsocketSetProxyRequest) (*GenericResponse, error)
	WebsocketSetURL(context.Context, *WebsocketSetURLRequest) (*GenericResponse, error)
	GetRecentTrades(context.Context, *GetSavedTradesRequest) (*SavedTradesResponse, error)
	GetHistoricTrades(*GetSavedTradesRequest, GoCryptoTraderService_GetHistoricTradesServer) error
	GetSavedTrades(context.Context, *GetSavedTradesRequest) (*SavedTradesResponse, error)
	ConvertTradesToCandles(context.Context, *ConvertTradesToCandlesRequest) (*GetHistoricCandlesResponse, error)
	FindMissingSavedCandleIntervals(context.Context, *FindMissingCandlePeriodsRequest) (*FindMissingIntervalsResponse, error)
	FindMissingSavedTradeIntervals(context.Context, *FindMissingTradePeriodsRequest) (*FindMissingIntervalsResponse, error)
	SetExchangeTradeProcessing(context.Context, *SetExchangeTradeProcessingRequest) (*GenericResponse, error)
	UpsertDataHistoryJob(context.Context, *UpsertDataHistoryJobRequest) (*UpsertDataHistoryJobResponse, error)
	GetDataHistoryJobDetails(context.Context, *GetDataHistoryJobDetailsRequest) (*DataHistoryJob, error)
	GetActiveDataHistoryJobs(context.Context, *GetInfoRequest) (*DataHistoryJobs, error)
	GetDataHistoryJobsBetween(context.Context, *GetDataHistoryJobsBetweenRequest) (*DataHistoryJobs, error)
	GetDataHistoryJobSummary(context.Context, *GetDataHistoryJobDetailsRequest) (*DataHistoryJob, error)
	SetDataHistoryJobStatus(context.Context, *SetDataHistoryJobStatusRequest) (*GenericResponse, error)
	UpdateDataHistoryJobPrerequisite(context.Context, *UpdateDataHistoryJobPrerequisiteRequest) (*GenericResponse, error)
	GetManagedOrders(context.Context, *GetOrdersRequest) (*GetOrdersResponse, error)
	ModifyOrder(context.Context, *ModifyOrderRequest) (*ModifyOrderResponse, error)
	CurrencyStateGetAll(context.Context, *CurrencyStateGetAllRequest) (*CurrencyStateResponse, error)
	CurrencyStateTrading(context.Context, *CurrencyStateTradingRequest) (*GenericResponse, error)
	CurrencyStateDeposit(context.Context, *CurrencyStateDepositRequest) (*GenericResponse, error)
	CurrencyStateWithdraw(context.Context, *CurrencyStateWithdrawRequest) (*GenericResponse, error)
	CurrencyStateTradingPair(context.Context, *CurrencyStateTradingPairRequest) (*GenericResponse, error)
	GetFuturesPositionsSummary(context.Context, *GetFuturesPositionsSummaryRequest) (*GetFuturesPositionsSummaryResponse, error)
	GetFuturesPositionsOrders(context.Context, *GetFuturesPositionsOrdersRequest) (*GetFuturesPositionsOrdersResponse, error)
	GetCollateral(context.Context, *GetCollateralRequest) (*GetCollateralResponse, error)
	Shutdown(context.Context, *ShutdownRequest) (*ShutdownResponse, error)
	GetTechnicalAnalysis(context.Context, *GetTechnicalAnalysisRequest) (*GetTechnicalAnalysisResponse, error)
	GetMarginRatesHistory(context.Context, *GetMarginRatesHistoryRequest) (*GetMarginRatesHistoryResponse, error)
	GetManagedPosition(context.Context, *GetManagedPositionRequest) (*GetManagedPositionsResponse, error)
	GetAllManagedPositions(context.Context, *GetAllManagedPositionsRequest) (*GetManagedPositionsResponse, error)
	GetFundingRates(context.Context, *GetFundingRatesRequest) (*GetFundingRatesResponse, error)
	GetLatestFundingRate(context.Context, *GetLatestFundingRateRequest) (*GetLatestFundingRateResponse, error)
	GetOrderbookMovement(context.Context, *GetOrderbookMovementRequest) (*GetOrderbookMovementResponse, error)
	GetOrderbookAmountByNominal(context.Context, *GetOrderbookAmountByNominalRequest) (*GetOrderbookAmountByNominalResponse, error)
	GetOrderbookAmountByImpact(context.Context, *GetOrderbookAmountByImpactRequest) (*GetOrderbookAmountByImpactResponse, error)
	GetCollateralMode(context.Context, *GetCollateralModeRequest) (*GetCollateralModeResponse, error)
	GetLeverage(context.Context, *GetLeverageRequest) (*GetLeverageResponse, error)
	SetCollateralMode(context.Context, *SetCollateralModeRequest) (*SetCollateralModeResponse, error)
	SetMarginType(context.Context, *SetMarginTypeRequest) (*SetMarginTypeResponse, error)
	SetLeverage(context.Context, *SetLeverageRequest) (*SetLeverageResponse, error)
	ChangePositionMargin(context.Context, *ChangePositionMarginRequest) (*ChangePositionMarginResponse, error)
	GetOpenInterest(context.Context, *GetOpenInterestRequest) (*GetOpenInterestResponse, error)
	GetCurrencyTradeURL(context.Context, *GetCurrencyTradeURLRequest) (*GetCurrencyTradeURLResponse, error)
	// contains filtered or unexported methods
}

GoCryptoTraderServiceServer is the server API for GoCryptoTraderService service. All implementations must embed UnimplementedGoCryptoTraderServiceServer for forward compatibility

type GoCryptoTraderService_GetAccountInfoStreamClient

type GoCryptoTraderService_GetAccountInfoStreamClient interface {
	Recv() (*GetAccountInfoResponse, error)
	grpc.ClientStream
}

type GoCryptoTraderService_GetAccountInfoStreamServer

type GoCryptoTraderService_GetAccountInfoStreamServer interface {
	Send(*GetAccountInfoResponse) error
	grpc.ServerStream
}

type GoCryptoTraderService_GetExchangeOrderbookStreamClient

type GoCryptoTraderService_GetExchangeOrderbookStreamClient interface {
	Recv() (*OrderbookResponse, error)
	grpc.ClientStream
}

type GoCryptoTraderService_GetExchangeOrderbookStreamServer

type GoCryptoTraderService_GetExchangeOrderbookStreamServer interface {
	Send(*OrderbookResponse) error
	grpc.ServerStream
}

type GoCryptoTraderService_GetExchangeTickerStreamClient

type GoCryptoTraderService_GetExchangeTickerStreamClient interface {
	Recv() (*TickerResponse, error)
	grpc.ClientStream
}

type GoCryptoTraderService_GetExchangeTickerStreamServer

type GoCryptoTraderService_GetExchangeTickerStreamServer interface {
	Send(*TickerResponse) error
	grpc.ServerStream
}

type GoCryptoTraderService_GetHistoricTradesClient

type GoCryptoTraderService_GetHistoricTradesClient interface {
	Recv() (*SavedTradesResponse, error)
	grpc.ClientStream
}

type GoCryptoTraderService_GetHistoricTradesServer

type GoCryptoTraderService_GetHistoricTradesServer interface {
	Send(*SavedTradesResponse) error
	grpc.ServerStream
}

type GoCryptoTraderService_GetOrderbookStreamClient

type GoCryptoTraderService_GetOrderbookStreamClient interface {
	Recv() (*OrderbookResponse, error)
	grpc.ClientStream
}

type GoCryptoTraderService_GetOrderbookStreamServer

type GoCryptoTraderService_GetOrderbookStreamServer interface {
	Send(*OrderbookResponse) error
	grpc.ServerStream
}

type GoCryptoTraderService_GetTickerStreamClient

type GoCryptoTraderService_GetTickerStreamClient interface {
	Recv() (*TickerResponse, error)
	grpc.ClientStream
}

type GoCryptoTraderService_GetTickerStreamServer

type GoCryptoTraderService_GetTickerStreamServer interface {
	Send(*TickerResponse) error
	grpc.ServerStream
}

type InsertSequentialJobsRequest

type InsertSequentialJobsRequest struct {
	Jobs []*UpsertDataHistoryJobRequest `protobuf:"bytes,1,rep,name=jobs,proto3" json:"jobs,omitempty"`
	// contains filtered or unexported fields
}

func (*InsertSequentialJobsRequest) Descriptor deprecated

func (*InsertSequentialJobsRequest) Descriptor() ([]byte, []int)

Deprecated: Use InsertSequentialJobsRequest.ProtoReflect.Descriptor instead.

func (*InsertSequentialJobsRequest) GetJobs

func (*InsertSequentialJobsRequest) ProtoMessage

func (*InsertSequentialJobsRequest) ProtoMessage()

func (*InsertSequentialJobsRequest) ProtoReflect

func (*InsertSequentialJobsRequest) Reset

func (x *InsertSequentialJobsRequest) Reset()

func (*InsertSequentialJobsRequest) String

func (x *InsertSequentialJobsRequest) String() string

type InsertSequentialJobsResponse

type InsertSequentialJobsResponse struct {
	Jobs []*UpsertDataHistoryJobResponse `protobuf:"bytes,1,rep,name=jobs,proto3" json:"jobs,omitempty"`
	// contains filtered or unexported fields
}

func (*InsertSequentialJobsResponse) Descriptor deprecated

func (*InsertSequentialJobsResponse) Descriptor() ([]byte, []int)

Deprecated: Use InsertSequentialJobsResponse.ProtoReflect.Descriptor instead.

func (*InsertSequentialJobsResponse) GetJobs

func (*InsertSequentialJobsResponse) ProtoMessage

func (*InsertSequentialJobsResponse) ProtoMessage()

func (*InsertSequentialJobsResponse) ProtoReflect

func (*InsertSequentialJobsResponse) Reset

func (x *InsertSequentialJobsResponse) Reset()

func (*InsertSequentialJobsResponse) String

type LendingPayment

type LendingPayment struct {
	Payment string `protobuf:"bytes,1,opt,name=payment,proto3" json:"payment,omitempty"`
	Size    string `protobuf:"bytes,2,opt,name=size,proto3" json:"size,omitempty"`
	// contains filtered or unexported fields
}

func (*LendingPayment) Descriptor deprecated

func (*LendingPayment) Descriptor() ([]byte, []int)

Deprecated: Use LendingPayment.ProtoReflect.Descriptor instead.

func (*LendingPayment) GetPayment

func (x *LendingPayment) GetPayment() string

func (*LendingPayment) GetSize

func (x *LendingPayment) GetSize() string

func (*LendingPayment) ProtoMessage

func (*LendingPayment) ProtoMessage()

func (*LendingPayment) ProtoReflect

func (x *LendingPayment) ProtoReflect() protoreflect.Message

func (*LendingPayment) Reset

func (x *LendingPayment) Reset()

func (*LendingPayment) String

func (x *LendingPayment) String() string

type ListOfSignals

type ListOfSignals struct {
	Signals []float64 `protobuf:"fixed64,1,rep,packed,name=signals,proto3" json:"signals,omitempty"`
	// contains filtered or unexported fields
}

func (*ListOfSignals) Descriptor deprecated

func (*ListOfSignals) Descriptor() ([]byte, []int)

Deprecated: Use ListOfSignals.ProtoReflect.Descriptor instead.

func (*ListOfSignals) GetSignals

func (x *ListOfSignals) GetSignals() []float64

func (*ListOfSignals) ProtoMessage

func (*ListOfSignals) ProtoMessage()

func (*ListOfSignals) ProtoReflect

func (x *ListOfSignals) ProtoReflect() protoreflect.Message

func (*ListOfSignals) Reset

func (x *ListOfSignals) Reset()

func (*ListOfSignals) String

func (x *ListOfSignals) String() string

type MarginRate

type MarginRate struct {
	Time             string          `protobuf:"bytes,1,opt,name=time,proto3" json:"time,omitempty"`
	MarketBorrowSize string          `protobuf:"bytes,2,opt,name=market_borrow_size,json=marketBorrowSize,proto3" json:"market_borrow_size,omitempty"`
	HourlyRate       string          `protobuf:"bytes,3,opt,name=hourly_rate,json=hourlyRate,proto3" json:"hourly_rate,omitempty"`
	YearlyRate       string          `protobuf:"bytes,4,opt,name=yearly_rate,json=yearlyRate,proto3" json:"yearly_rate,omitempty"`
	HourlyBorrowRate string          `protobuf:"bytes,5,opt,name=hourly_borrow_rate,json=hourlyBorrowRate,proto3" json:"hourly_borrow_rate,omitempty"`
	YearlyBorrowRate string          `protobuf:"bytes,6,opt,name=yearly_borrow_rate,json=yearlyBorrowRate,proto3" json:"yearly_borrow_rate,omitempty"`
	LendingPayment   *LendingPayment `protobuf:"bytes,7,opt,name=lending_payment,json=lendingPayment,proto3" json:"lending_payment,omitempty"`
	BorrowCost       *BorrowCost     `protobuf:"bytes,8,opt,name=borrow_cost,json=borrowCost,proto3" json:"borrow_cost,omitempty"`
	// contains filtered or unexported fields
}

func (*MarginRate) Descriptor deprecated

func (*MarginRate) Descriptor() ([]byte, []int)

Deprecated: Use MarginRate.ProtoReflect.Descriptor instead.

func (*MarginRate) GetBorrowCost

func (x *MarginRate) GetBorrowCost() *BorrowCost

func (*MarginRate) GetHourlyBorrowRate

func (x *MarginRate) GetHourlyBorrowRate() string

func (*MarginRate) GetHourlyRate

func (x *MarginRate) GetHourlyRate() string

func (*MarginRate) GetLendingPayment

func (x *MarginRate) GetLendingPayment() *LendingPayment

func (*MarginRate) GetMarketBorrowSize

func (x *MarginRate) GetMarketBorrowSize() string

func (*MarginRate) GetTime

func (x *MarginRate) GetTime() string

func (*MarginRate) GetYearlyBorrowRate

func (x *MarginRate) GetYearlyBorrowRate() string

func (*MarginRate) GetYearlyRate

func (x *MarginRate) GetYearlyRate() string

func (*MarginRate) ProtoMessage

func (*MarginRate) ProtoMessage()

func (*MarginRate) ProtoReflect

func (x *MarginRate) ProtoReflect() protoreflect.Message

func (*MarginRate) Reset

func (x *MarginRate) Reset()

func (*MarginRate) String

func (x *MarginRate) String() string

type ModifyOrderRequest

type ModifyOrderRequest struct {
	Exchange string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	OrderId  string        `protobuf:"bytes,2,opt,name=order_id,json=orderId,proto3" json:"order_id,omitempty"`
	Pair     *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	Asset    string        `protobuf:"bytes,4,opt,name=asset,proto3" json:"asset,omitempty"`
	Amount   float64       `protobuf:"fixed64,5,opt,name=amount,proto3" json:"amount,omitempty"`
	Price    float64       `protobuf:"fixed64,6,opt,name=price,proto3" json:"price,omitempty"`
	// contains filtered or unexported fields
}

func (*ModifyOrderRequest) Descriptor deprecated

func (*ModifyOrderRequest) Descriptor() ([]byte, []int)

Deprecated: Use ModifyOrderRequest.ProtoReflect.Descriptor instead.

func (*ModifyOrderRequest) GetAmount

func (x *ModifyOrderRequest) GetAmount() float64

func (*ModifyOrderRequest) GetAsset

func (x *ModifyOrderRequest) GetAsset() string

func (*ModifyOrderRequest) GetExchange

func (x *ModifyOrderRequest) GetExchange() string

func (*ModifyOrderRequest) GetOrderId

func (x *ModifyOrderRequest) GetOrderId() string

func (*ModifyOrderRequest) GetPair

func (x *ModifyOrderRequest) GetPair() *CurrencyPair

func (*ModifyOrderRequest) GetPrice

func (x *ModifyOrderRequest) GetPrice() float64

func (*ModifyOrderRequest) ProtoMessage

func (*ModifyOrderRequest) ProtoMessage()

func (*ModifyOrderRequest) ProtoReflect

func (x *ModifyOrderRequest) ProtoReflect() protoreflect.Message

func (*ModifyOrderRequest) Reset

func (x *ModifyOrderRequest) Reset()

func (*ModifyOrderRequest) String

func (x *ModifyOrderRequest) String() string

type ModifyOrderResponse

type ModifyOrderResponse struct {
	ModifiedOrderId string `protobuf:"bytes,1,opt,name=modified_order_id,json=modifiedOrderId,proto3" json:"modified_order_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ModifyOrderResponse) Descriptor deprecated

func (*ModifyOrderResponse) Descriptor() ([]byte, []int)

Deprecated: Use ModifyOrderResponse.ProtoReflect.Descriptor instead.

func (*ModifyOrderResponse) GetModifiedOrderId

func (x *ModifyOrderResponse) GetModifiedOrderId() string

func (*ModifyOrderResponse) ProtoMessage

func (*ModifyOrderResponse) ProtoMessage()

func (*ModifyOrderResponse) ProtoReflect

func (x *ModifyOrderResponse) ProtoReflect() protoreflect.Message

func (*ModifyOrderResponse) Reset

func (x *ModifyOrderResponse) Reset()

func (*ModifyOrderResponse) String

func (x *ModifyOrderResponse) String() string

type OfflineCoinSummary

type OfflineCoinSummary struct {
	Address    string  `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Balance    float64 `protobuf:"fixed64,2,opt,name=balance,proto3" json:"balance,omitempty"`
	Percentage float64 `protobuf:"fixed64,3,opt,name=percentage,proto3" json:"percentage,omitempty"`
	// contains filtered or unexported fields
}

func (*OfflineCoinSummary) Descriptor deprecated

func (*OfflineCoinSummary) Descriptor() ([]byte, []int)

Deprecated: Use OfflineCoinSummary.ProtoReflect.Descriptor instead.

func (*OfflineCoinSummary) GetAddress

func (x *OfflineCoinSummary) GetAddress() string

func (*OfflineCoinSummary) GetBalance

func (x *OfflineCoinSummary) GetBalance() float64

func (*OfflineCoinSummary) GetPercentage

func (x *OfflineCoinSummary) GetPercentage() float64

func (*OfflineCoinSummary) ProtoMessage

func (*OfflineCoinSummary) ProtoMessage()

func (*OfflineCoinSummary) ProtoReflect

func (x *OfflineCoinSummary) ProtoReflect() protoreflect.Message

func (*OfflineCoinSummary) Reset

func (x *OfflineCoinSummary) Reset()

func (*OfflineCoinSummary) String

func (x *OfflineCoinSummary) String() string

type OfflineCoins

type OfflineCoins struct {
	Addresses []*OfflineCoinSummary `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"`
	// contains filtered or unexported fields
}

func (*OfflineCoins) Descriptor deprecated

func (*OfflineCoins) Descriptor() ([]byte, []int)

Deprecated: Use OfflineCoins.ProtoReflect.Descriptor instead.

func (*OfflineCoins) GetAddresses

func (x *OfflineCoins) GetAddresses() []*OfflineCoinSummary

func (*OfflineCoins) ProtoMessage

func (*OfflineCoins) ProtoMessage()

func (*OfflineCoins) ProtoReflect

func (x *OfflineCoins) ProtoReflect() protoreflect.Message

func (*OfflineCoins) Reset

func (x *OfflineCoins) Reset()

func (*OfflineCoins) String

func (x *OfflineCoins) String() string

type OnlineCoinSummary

type OnlineCoinSummary struct {
	Balance    float64 `protobuf:"fixed64,1,opt,name=balance,proto3" json:"balance,omitempty"`
	Percentage float64 `protobuf:"fixed64,2,opt,name=percentage,proto3" json:"percentage,omitempty"`
	// contains filtered or unexported fields
}

func (*OnlineCoinSummary) Descriptor deprecated

func (*OnlineCoinSummary) Descriptor() ([]byte, []int)

Deprecated: Use OnlineCoinSummary.ProtoReflect.Descriptor instead.

func (*OnlineCoinSummary) GetBalance

func (x *OnlineCoinSummary) GetBalance() float64

func (*OnlineCoinSummary) GetPercentage

func (x *OnlineCoinSummary) GetPercentage() float64

func (*OnlineCoinSummary) ProtoMessage

func (*OnlineCoinSummary) ProtoMessage()

func (*OnlineCoinSummary) ProtoReflect

func (x *OnlineCoinSummary) ProtoReflect() protoreflect.Message

func (*OnlineCoinSummary) Reset

func (x *OnlineCoinSummary) Reset()

func (*OnlineCoinSummary) String

func (x *OnlineCoinSummary) String() string

type OnlineCoins

type OnlineCoins struct {
	Coins map[string]*OnlineCoinSummary `` /* 151-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*OnlineCoins) Descriptor deprecated

func (*OnlineCoins) Descriptor() ([]byte, []int)

Deprecated: Use OnlineCoins.ProtoReflect.Descriptor instead.

func (*OnlineCoins) GetCoins

func (x *OnlineCoins) GetCoins() map[string]*OnlineCoinSummary

func (*OnlineCoins) ProtoMessage

func (*OnlineCoins) ProtoMessage()

func (*OnlineCoins) ProtoReflect

func (x *OnlineCoins) ProtoReflect() protoreflect.Message

func (*OnlineCoins) Reset

func (x *OnlineCoins) Reset()

func (*OnlineCoins) String

func (x *OnlineCoins) String() string

type OpenInterestDataRequest

type OpenInterestDataRequest struct {
	Asset string        `protobuf:"bytes,1,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair  *CurrencyPair `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	// contains filtered or unexported fields
}

func (*OpenInterestDataRequest) Descriptor deprecated

func (*OpenInterestDataRequest) Descriptor() ([]byte, []int)

Deprecated: Use OpenInterestDataRequest.ProtoReflect.Descriptor instead.

func (*OpenInterestDataRequest) GetAsset

func (x *OpenInterestDataRequest) GetAsset() string

func (*OpenInterestDataRequest) GetPair

func (x *OpenInterestDataRequest) GetPair() *CurrencyPair

func (*OpenInterestDataRequest) ProtoMessage

func (*OpenInterestDataRequest) ProtoMessage()

func (*OpenInterestDataRequest) ProtoReflect

func (x *OpenInterestDataRequest) ProtoReflect() protoreflect.Message

func (*OpenInterestDataRequest) Reset

func (x *OpenInterestDataRequest) Reset()

func (*OpenInterestDataRequest) String

func (x *OpenInterestDataRequest) String() string

type OpenInterestDataResponse

type OpenInterestDataResponse struct {
	Exchange     string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset        string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair         *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	OpenInterest float64       `protobuf:"fixed64,4,opt,name=open_interest,json=openInterest,proto3" json:"open_interest,omitempty"`
	// contains filtered or unexported fields
}

func (*OpenInterestDataResponse) Descriptor deprecated

func (*OpenInterestDataResponse) Descriptor() ([]byte, []int)

Deprecated: Use OpenInterestDataResponse.ProtoReflect.Descriptor instead.

func (*OpenInterestDataResponse) GetAsset

func (x *OpenInterestDataResponse) GetAsset() string

func (*OpenInterestDataResponse) GetExchange

func (x *OpenInterestDataResponse) GetExchange() string

func (*OpenInterestDataResponse) GetOpenInterest

func (x *OpenInterestDataResponse) GetOpenInterest() float64

func (*OpenInterestDataResponse) GetPair

func (x *OpenInterestDataResponse) GetPair() *CurrencyPair

func (*OpenInterestDataResponse) ProtoMessage

func (*OpenInterestDataResponse) ProtoMessage()

func (*OpenInterestDataResponse) ProtoReflect

func (x *OpenInterestDataResponse) ProtoReflect() protoreflect.Message

func (*OpenInterestDataResponse) Reset

func (x *OpenInterestDataResponse) Reset()

func (*OpenInterestDataResponse) String

func (x *OpenInterestDataResponse) String() string

type OrderDetails

type OrderDetails struct {
	Exchange       string          `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Id             string          `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	ClientOrderId  string          `protobuf:"bytes,3,opt,name=client_order_id,json=clientOrderId,proto3" json:"client_order_id,omitempty"`
	BaseCurrency   string          `protobuf:"bytes,4,opt,name=base_currency,json=baseCurrency,proto3" json:"base_currency,omitempty"`
	QuoteCurrency  string          `protobuf:"bytes,5,opt,name=quote_currency,json=quoteCurrency,proto3" json:"quote_currency,omitempty"`
	AssetType      string          `protobuf:"bytes,6,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	OrderSide      string          `protobuf:"bytes,7,opt,name=order_side,json=orderSide,proto3" json:"order_side,omitempty"`
	OrderType      string          `protobuf:"bytes,8,opt,name=order_type,json=orderType,proto3" json:"order_type,omitempty"`
	CreationTime   string          `protobuf:"bytes,9,opt,name=creation_time,json=creationTime,proto3" json:"creation_time,omitempty"`
	UpdateTime     string          `protobuf:"bytes,10,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
	Status         string          `protobuf:"bytes,11,opt,name=status,proto3" json:"status,omitempty"`
	Price          float64         `protobuf:"fixed64,12,opt,name=price,proto3" json:"price,omitempty"`
	Amount         float64         `protobuf:"fixed64,13,opt,name=amount,proto3" json:"amount,omitempty"`
	OpenVolume     float64         `protobuf:"fixed64,14,opt,name=open_volume,json=openVolume,proto3" json:"open_volume,omitempty"`
	Fee            float64         `protobuf:"fixed64,15,opt,name=fee,proto3" json:"fee,omitempty"`
	Cost           float64         `protobuf:"fixed64,16,opt,name=cost,proto3" json:"cost,omitempty"`
	Trades         []*TradeHistory `protobuf:"bytes,17,rep,name=trades,proto3" json:"trades,omitempty"`
	ContractAmount float64         `protobuf:"fixed64,18,opt,name=contract_amount,json=contractAmount,proto3" json:"contract_amount,omitempty"`
	// contains filtered or unexported fields
}

func (*OrderDetails) Descriptor deprecated

func (*OrderDetails) Descriptor() ([]byte, []int)

Deprecated: Use OrderDetails.ProtoReflect.Descriptor instead.

func (*OrderDetails) GetAmount

func (x *OrderDetails) GetAmount() float64

func (*OrderDetails) GetAssetType

func (x *OrderDetails) GetAssetType() string

func (*OrderDetails) GetBaseCurrency

func (x *OrderDetails) GetBaseCurrency() string

func (*OrderDetails) GetClientOrderId

func (x *OrderDetails) GetClientOrderId() string

func (*OrderDetails) GetContractAmount

func (x *OrderDetails) GetContractAmount() float64

func (*OrderDetails) GetCost

func (x *OrderDetails) GetCost() float64

func (*OrderDetails) GetCreationTime

func (x *OrderDetails) GetCreationTime() string

func (*OrderDetails) GetExchange

func (x *OrderDetails) GetExchange() string

func (*OrderDetails) GetFee

func (x *OrderDetails) GetFee() float64

func (*OrderDetails) GetId

func (x *OrderDetails) GetId() string

func (*OrderDetails) GetOpenVolume

func (x *OrderDetails) GetOpenVolume() float64

func (*OrderDetails) GetOrderSide

func (x *OrderDetails) GetOrderSide() string

func (*OrderDetails) GetOrderType

func (x *OrderDetails) GetOrderType() string

func (*OrderDetails) GetPrice

func (x *OrderDetails) GetPrice() float64

func (*OrderDetails) GetQuoteCurrency

func (x *OrderDetails) GetQuoteCurrency() string

func (*OrderDetails) GetStatus

func (x *OrderDetails) GetStatus() string

func (*OrderDetails) GetTrades

func (x *OrderDetails) GetTrades() []*TradeHistory

func (*OrderDetails) GetUpdateTime

func (x *OrderDetails) GetUpdateTime() string

func (*OrderDetails) ProtoMessage

func (*OrderDetails) ProtoMessage()

func (*OrderDetails) ProtoReflect

func (x *OrderDetails) ProtoReflect() protoreflect.Message

func (*OrderDetails) Reset

func (x *OrderDetails) Reset()

func (*OrderDetails) String

func (x *OrderDetails) String() string

type OrderbookItem

type OrderbookItem struct {
	Amount float64 `protobuf:"fixed64,1,opt,name=amount,proto3" json:"amount,omitempty"`
	Price  float64 `protobuf:"fixed64,2,opt,name=price,proto3" json:"price,omitempty"`
	Id     int64   `protobuf:"varint,3,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*OrderbookItem) Descriptor deprecated

func (*OrderbookItem) Descriptor() ([]byte, []int)

Deprecated: Use OrderbookItem.ProtoReflect.Descriptor instead.

func (*OrderbookItem) GetAmount

func (x *OrderbookItem) GetAmount() float64

func (*OrderbookItem) GetId

func (x *OrderbookItem) GetId() int64

func (*OrderbookItem) GetPrice

func (x *OrderbookItem) GetPrice() float64

func (*OrderbookItem) ProtoMessage

func (*OrderbookItem) ProtoMessage()

func (*OrderbookItem) ProtoReflect

func (x *OrderbookItem) ProtoReflect() protoreflect.Message

func (*OrderbookItem) Reset

func (x *OrderbookItem) Reset()

func (*OrderbookItem) String

func (x *OrderbookItem) String() string

type OrderbookResponse

type OrderbookResponse struct {
	Pair         *CurrencyPair    `protobuf:"bytes,1,opt,name=pair,proto3" json:"pair,omitempty"`
	CurrencyPair string           `protobuf:"bytes,2,opt,name=currency_pair,json=currencyPair,proto3" json:"currency_pair,omitempty"`
	Bids         []*OrderbookItem `protobuf:"bytes,3,rep,name=bids,proto3" json:"bids,omitempty"`
	Asks         []*OrderbookItem `protobuf:"bytes,4,rep,name=asks,proto3" json:"asks,omitempty"`
	LastUpdated  int64            `protobuf:"varint,5,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	AssetType    string           `protobuf:"bytes,6,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	Error        string           `protobuf:"bytes,7,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*OrderbookResponse) Descriptor deprecated

func (*OrderbookResponse) Descriptor() ([]byte, []int)

Deprecated: Use OrderbookResponse.ProtoReflect.Descriptor instead.

func (*OrderbookResponse) GetAsks

func (x *OrderbookResponse) GetAsks() []*OrderbookItem

func (*OrderbookResponse) GetAssetType

func (x *OrderbookResponse) GetAssetType() string

func (*OrderbookResponse) GetBids

func (x *OrderbookResponse) GetBids() []*OrderbookItem

func (*OrderbookResponse) GetCurrencyPair

func (x *OrderbookResponse) GetCurrencyPair() string

func (*OrderbookResponse) GetError

func (x *OrderbookResponse) GetError() string

func (*OrderbookResponse) GetLastUpdated

func (x *OrderbookResponse) GetLastUpdated() int64

func (*OrderbookResponse) GetPair

func (x *OrderbookResponse) GetPair() *CurrencyPair

func (*OrderbookResponse) ProtoMessage

func (*OrderbookResponse) ProtoMessage()

func (*OrderbookResponse) ProtoReflect

func (x *OrderbookResponse) ProtoReflect() protoreflect.Message

func (*OrderbookResponse) Reset

func (x *OrderbookResponse) Reset()

func (*OrderbookResponse) String

func (x *OrderbookResponse) String() string

type Orderbooks

type Orderbooks struct {
	Exchange   string               `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Orderbooks []*OrderbookResponse `protobuf:"bytes,2,rep,name=orderbooks,proto3" json:"orderbooks,omitempty"`
	// contains filtered or unexported fields
}

func (*Orderbooks) Descriptor deprecated

func (*Orderbooks) Descriptor() ([]byte, []int)

Deprecated: Use Orderbooks.ProtoReflect.Descriptor instead.

func (*Orderbooks) GetExchange

func (x *Orderbooks) GetExchange() string

func (*Orderbooks) GetOrderbooks

func (x *Orderbooks) GetOrderbooks() []*OrderbookResponse

func (*Orderbooks) ProtoMessage

func (*Orderbooks) ProtoMessage()

func (*Orderbooks) ProtoReflect

func (x *Orderbooks) ProtoReflect() protoreflect.Message

func (*Orderbooks) Reset

func (x *Orderbooks) Reset()

func (*Orderbooks) String

func (x *Orderbooks) String() string

type Orders

type Orders struct {
	Exchange    string            `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	OrderStatus map[string]string `` /* 182-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Orders) Descriptor deprecated

func (*Orders) Descriptor() ([]byte, []int)

Deprecated: Use Orders.ProtoReflect.Descriptor instead.

func (*Orders) GetExchange

func (x *Orders) GetExchange() string

func (*Orders) GetOrderStatus

func (x *Orders) GetOrderStatus() map[string]string

func (*Orders) ProtoMessage

func (*Orders) ProtoMessage()

func (*Orders) ProtoReflect

func (x *Orders) ProtoReflect() protoreflect.Message

func (*Orders) Reset

func (x *Orders) Reset()

func (*Orders) String

func (x *Orders) String() string

type PairsSupported

type PairsSupported struct {
	AvailablePairs string `protobuf:"bytes,1,opt,name=available_pairs,json=availablePairs,proto3" json:"available_pairs,omitempty"`
	EnabledPairs   string `protobuf:"bytes,2,opt,name=enabled_pairs,json=enabledPairs,proto3" json:"enabled_pairs,omitempty"`
	// contains filtered or unexported fields
}

func (*PairsSupported) Descriptor deprecated

func (*PairsSupported) Descriptor() ([]byte, []int)

Deprecated: Use PairsSupported.ProtoReflect.Descriptor instead.

func (*PairsSupported) GetAvailablePairs

func (x *PairsSupported) GetAvailablePairs() string

func (*PairsSupported) GetEnabledPairs

func (x *PairsSupported) GetEnabledPairs() string

func (*PairsSupported) ProtoMessage

func (*PairsSupported) ProtoMessage()

func (*PairsSupported) ProtoReflect

func (x *PairsSupported) ProtoReflect() protoreflect.Message

func (*PairsSupported) Reset

func (x *PairsSupported) Reset()

func (*PairsSupported) String

func (x *PairsSupported) String() string

type PortfolioAddress

type PortfolioAddress struct {
	Address     string  `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	CoinType    string  `protobuf:"bytes,2,opt,name=coin_type,json=coinType,proto3" json:"coin_type,omitempty"`
	Description string  `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Balance     float64 `protobuf:"fixed64,4,opt,name=balance,proto3" json:"balance,omitempty"`
	// contains filtered or unexported fields
}

func (*PortfolioAddress) Descriptor deprecated

func (*PortfolioAddress) Descriptor() ([]byte, []int)

Deprecated: Use PortfolioAddress.ProtoReflect.Descriptor instead.

func (*PortfolioAddress) GetAddress

func (x *PortfolioAddress) GetAddress() string

func (*PortfolioAddress) GetBalance

func (x *PortfolioAddress) GetBalance() float64

func (*PortfolioAddress) GetCoinType

func (x *PortfolioAddress) GetCoinType() string

func (*PortfolioAddress) GetDescription

func (x *PortfolioAddress) GetDescription() string

func (*PortfolioAddress) ProtoMessage

func (*PortfolioAddress) ProtoMessage()

func (*PortfolioAddress) ProtoReflect

func (x *PortfolioAddress) ProtoReflect() protoreflect.Message

func (*PortfolioAddress) Reset

func (x *PortfolioAddress) Reset()

func (*PortfolioAddress) String

func (x *PortfolioAddress) String() string

type RPCEndpoint

type RPCEndpoint struct {
	Started       bool   `protobuf:"varint,1,opt,name=started,proto3" json:"started,omitempty"`
	ListenAddress string `protobuf:"bytes,2,opt,name=listen_address,json=listenAddress,proto3" json:"listen_address,omitempty"`
	// contains filtered or unexported fields
}

func (*RPCEndpoint) Descriptor deprecated

func (*RPCEndpoint) Descriptor() ([]byte, []int)

Deprecated: Use RPCEndpoint.ProtoReflect.Descriptor instead.

func (*RPCEndpoint) GetListenAddress

func (x *RPCEndpoint) GetListenAddress() string

func (*RPCEndpoint) GetStarted

func (x *RPCEndpoint) GetStarted() bool

func (*RPCEndpoint) ProtoMessage

func (*RPCEndpoint) ProtoMessage()

func (*RPCEndpoint) ProtoReflect

func (x *RPCEndpoint) ProtoReflect() protoreflect.Message

func (*RPCEndpoint) Reset

func (x *RPCEndpoint) Reset()

func (*RPCEndpoint) String

func (x *RPCEndpoint) String() string

type RemoveEventRequest

type RemoveEventRequest struct {
	Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoveEventRequest) Descriptor deprecated

func (*RemoveEventRequest) Descriptor() ([]byte, []int)

Deprecated: Use RemoveEventRequest.ProtoReflect.Descriptor instead.

func (*RemoveEventRequest) GetId

func (x *RemoveEventRequest) GetId() int64

func (*RemoveEventRequest) ProtoMessage

func (*RemoveEventRequest) ProtoMessage()

func (*RemoveEventRequest) ProtoReflect

func (x *RemoveEventRequest) ProtoReflect() protoreflect.Message

func (*RemoveEventRequest) Reset

func (x *RemoveEventRequest) Reset()

func (*RemoveEventRequest) String

func (x *RemoveEventRequest) String() string

type RemovePortfolioAddressRequest

type RemovePortfolioAddressRequest struct {
	Address     string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	CoinType    string `protobuf:"bytes,2,opt,name=coin_type,json=coinType,proto3" json:"coin_type,omitempty"`
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*RemovePortfolioAddressRequest) Descriptor deprecated

func (*RemovePortfolioAddressRequest) Descriptor() ([]byte, []int)

Deprecated: Use RemovePortfolioAddressRequest.ProtoReflect.Descriptor instead.

func (*RemovePortfolioAddressRequest) GetAddress

func (x *RemovePortfolioAddressRequest) GetAddress() string

func (*RemovePortfolioAddressRequest) GetCoinType

func (x *RemovePortfolioAddressRequest) GetCoinType() string

func (*RemovePortfolioAddressRequest) GetDescription

func (x *RemovePortfolioAddressRequest) GetDescription() string

func (*RemovePortfolioAddressRequest) ProtoMessage

func (*RemovePortfolioAddressRequest) ProtoMessage()

func (*RemovePortfolioAddressRequest) ProtoReflect

func (*RemovePortfolioAddressRequest) Reset

func (x *RemovePortfolioAddressRequest) Reset()

func (*RemovePortfolioAddressRequest) String

type SavedTrades

type SavedTrades struct {
	Price     float64 `protobuf:"fixed64,1,opt,name=price,proto3" json:"price,omitempty"`
	Amount    float64 `protobuf:"fixed64,2,opt,name=amount,proto3" json:"amount,omitempty"`
	Side      string  `protobuf:"bytes,3,opt,name=side,proto3" json:"side,omitempty"`
	Timestamp string  `protobuf:"bytes,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	TradeId   string  `protobuf:"bytes,5,opt,name=trade_id,json=tradeId,proto3" json:"trade_id,omitempty"`
	// contains filtered or unexported fields
}

func (*SavedTrades) Descriptor deprecated

func (*SavedTrades) Descriptor() ([]byte, []int)

Deprecated: Use SavedTrades.ProtoReflect.Descriptor instead.

func (*SavedTrades) GetAmount

func (x *SavedTrades) GetAmount() float64

func (*SavedTrades) GetPrice

func (x *SavedTrades) GetPrice() float64

func (*SavedTrades) GetSide

func (x *SavedTrades) GetSide() string

func (*SavedTrades) GetTimestamp

func (x *SavedTrades) GetTimestamp() string

func (*SavedTrades) GetTradeId

func (x *SavedTrades) GetTradeId() string

func (*SavedTrades) ProtoMessage

func (*SavedTrades) ProtoMessage()

func (*SavedTrades) ProtoReflect

func (x *SavedTrades) ProtoReflect() protoreflect.Message

func (*SavedTrades) Reset

func (x *SavedTrades) Reset()

func (*SavedTrades) String

func (x *SavedTrades) String() string

type SavedTradesResponse

type SavedTradesResponse struct {
	ExchangeName string         `protobuf:"bytes,1,opt,name=exchange_name,json=exchangeName,proto3" json:"exchange_name,omitempty"`
	Asset        string         `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair         *CurrencyPair  `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	Trades       []*SavedTrades `protobuf:"bytes,4,rep,name=trades,proto3" json:"trades,omitempty"`
	// contains filtered or unexported fields
}

func (*SavedTradesResponse) Descriptor deprecated

func (*SavedTradesResponse) Descriptor() ([]byte, []int)

Deprecated: Use SavedTradesResponse.ProtoReflect.Descriptor instead.

func (*SavedTradesResponse) GetAsset

func (x *SavedTradesResponse) GetAsset() string

func (*SavedTradesResponse) GetExchangeName

func (x *SavedTradesResponse) GetExchangeName() string

func (*SavedTradesResponse) GetPair

func (x *SavedTradesResponse) GetPair() *CurrencyPair

func (*SavedTradesResponse) GetTrades

func (x *SavedTradesResponse) GetTrades() []*SavedTrades

func (*SavedTradesResponse) ProtoMessage

func (*SavedTradesResponse) ProtoMessage()

func (*SavedTradesResponse) ProtoReflect

func (x *SavedTradesResponse) ProtoReflect() protoreflect.Message

func (*SavedTradesResponse) Reset

func (x *SavedTradesResponse) Reset()

func (*SavedTradesResponse) String

func (x *SavedTradesResponse) String() string

type SetCollateralModeRequest

type SetCollateralModeRequest struct {
	Exchange       string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset          string `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	CollateralMode string `protobuf:"bytes,3,opt,name=collateral_mode,json=collateralMode,proto3" json:"collateral_mode,omitempty"`
	// contains filtered or unexported fields
}

func (*SetCollateralModeRequest) Descriptor deprecated

func (*SetCollateralModeRequest) Descriptor() ([]byte, []int)

Deprecated: Use SetCollateralModeRequest.ProtoReflect.Descriptor instead.

func (*SetCollateralModeRequest) GetAsset

func (x *SetCollateralModeRequest) GetAsset() string

func (*SetCollateralModeRequest) GetCollateralMode

func (x *SetCollateralModeRequest) GetCollateralMode() string

func (*SetCollateralModeRequest) GetExchange

func (x *SetCollateralModeRequest) GetExchange() string

func (*SetCollateralModeRequest) ProtoMessage

func (*SetCollateralModeRequest) ProtoMessage()

func (*SetCollateralModeRequest) ProtoReflect

func (x *SetCollateralModeRequest) ProtoReflect() protoreflect.Message

func (*SetCollateralModeRequest) Reset

func (x *SetCollateralModeRequest) Reset()

func (*SetCollateralModeRequest) String

func (x *SetCollateralModeRequest) String() string

type SetCollateralModeResponse

type SetCollateralModeResponse struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset    string `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Success  bool   `protobuf:"varint,3,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*SetCollateralModeResponse) Descriptor deprecated

func (*SetCollateralModeResponse) Descriptor() ([]byte, []int)

Deprecated: Use SetCollateralModeResponse.ProtoReflect.Descriptor instead.

func (*SetCollateralModeResponse) GetAsset

func (x *SetCollateralModeResponse) GetAsset() string

func (*SetCollateralModeResponse) GetExchange

func (x *SetCollateralModeResponse) GetExchange() string

func (*SetCollateralModeResponse) GetSuccess

func (x *SetCollateralModeResponse) GetSuccess() bool

func (*SetCollateralModeResponse) ProtoMessage

func (*SetCollateralModeResponse) ProtoMessage()

func (*SetCollateralModeResponse) ProtoReflect

func (*SetCollateralModeResponse) Reset

func (x *SetCollateralModeResponse) Reset()

func (*SetCollateralModeResponse) String

func (x *SetCollateralModeResponse) String() string

type SetDataHistoryJobStatusRequest

type SetDataHistoryJobStatusRequest struct {
	Id       string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"`
	Status   int64  `protobuf:"varint,3,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*SetDataHistoryJobStatusRequest) Descriptor deprecated

func (*SetDataHistoryJobStatusRequest) Descriptor() ([]byte, []int)

Deprecated: Use SetDataHistoryJobStatusRequest.ProtoReflect.Descriptor instead.

func (*SetDataHistoryJobStatusRequest) GetId

func (*SetDataHistoryJobStatusRequest) GetNickname

func (x *SetDataHistoryJobStatusRequest) GetNickname() string

func (*SetDataHistoryJobStatusRequest) GetStatus

func (x *SetDataHistoryJobStatusRequest) GetStatus() int64

func (*SetDataHistoryJobStatusRequest) ProtoMessage

func (*SetDataHistoryJobStatusRequest) ProtoMessage()

func (*SetDataHistoryJobStatusRequest) ProtoReflect

func (*SetDataHistoryJobStatusRequest) Reset

func (x *SetDataHistoryJobStatusRequest) Reset()

func (*SetDataHistoryJobStatusRequest) String

type SetExchangeAllPairsRequest

type SetExchangeAllPairsRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Enable   bool   `protobuf:"varint,2,opt,name=enable,proto3" json:"enable,omitempty"`
	// contains filtered or unexported fields
}

func (*SetExchangeAllPairsRequest) Descriptor deprecated

func (*SetExchangeAllPairsRequest) Descriptor() ([]byte, []int)

Deprecated: Use SetExchangeAllPairsRequest.ProtoReflect.Descriptor instead.

func (*SetExchangeAllPairsRequest) GetEnable

func (x *SetExchangeAllPairsRequest) GetEnable() bool

func (*SetExchangeAllPairsRequest) GetExchange

func (x *SetExchangeAllPairsRequest) GetExchange() string

func (*SetExchangeAllPairsRequest) ProtoMessage

func (*SetExchangeAllPairsRequest) ProtoMessage()

func (*SetExchangeAllPairsRequest) ProtoReflect

func (*SetExchangeAllPairsRequest) Reset

func (x *SetExchangeAllPairsRequest) Reset()

func (*SetExchangeAllPairsRequest) String

func (x *SetExchangeAllPairsRequest) String() string

type SetExchangeAssetRequest

type SetExchangeAssetRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset    string `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Enable   bool   `protobuf:"varint,3,opt,name=enable,proto3" json:"enable,omitempty"`
	// contains filtered or unexported fields
}

func (*SetExchangeAssetRequest) Descriptor deprecated

func (*SetExchangeAssetRequest) Descriptor() ([]byte, []int)

Deprecated: Use SetExchangeAssetRequest.ProtoReflect.Descriptor instead.

func (*SetExchangeAssetRequest) GetAsset

func (x *SetExchangeAssetRequest) GetAsset() string

func (*SetExchangeAssetRequest) GetEnable

func (x *SetExchangeAssetRequest) GetEnable() bool

func (*SetExchangeAssetRequest) GetExchange

func (x *SetExchangeAssetRequest) GetExchange() string

func (*SetExchangeAssetRequest) ProtoMessage

func (*SetExchangeAssetRequest) ProtoMessage()

func (*SetExchangeAssetRequest) ProtoReflect

func (x *SetExchangeAssetRequest) ProtoReflect() protoreflect.Message

func (*SetExchangeAssetRequest) Reset

func (x *SetExchangeAssetRequest) Reset()

func (*SetExchangeAssetRequest) String

func (x *SetExchangeAssetRequest) String() string

type SetExchangePairRequest

type SetExchangePairRequest struct {
	Exchange  string          `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	AssetType string          `protobuf:"bytes,2,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	Pairs     []*CurrencyPair `protobuf:"bytes,3,rep,name=pairs,proto3" json:"pairs,omitempty"`
	Enable    bool            `protobuf:"varint,4,opt,name=enable,proto3" json:"enable,omitempty"`
	// contains filtered or unexported fields
}

func (*SetExchangePairRequest) Descriptor deprecated

func (*SetExchangePairRequest) Descriptor() ([]byte, []int)

Deprecated: Use SetExchangePairRequest.ProtoReflect.Descriptor instead.

func (*SetExchangePairRequest) GetAssetType

func (x *SetExchangePairRequest) GetAssetType() string

func (*SetExchangePairRequest) GetEnable

func (x *SetExchangePairRequest) GetEnable() bool

func (*SetExchangePairRequest) GetExchange

func (x *SetExchangePairRequest) GetExchange() string

func (*SetExchangePairRequest) GetPairs

func (x *SetExchangePairRequest) GetPairs() []*CurrencyPair

func (*SetExchangePairRequest) ProtoMessage

func (*SetExchangePairRequest) ProtoMessage()

func (*SetExchangePairRequest) ProtoReflect

func (x *SetExchangePairRequest) ProtoReflect() protoreflect.Message

func (*SetExchangePairRequest) Reset

func (x *SetExchangePairRequest) Reset()

func (*SetExchangePairRequest) String

func (x *SetExchangePairRequest) String() string

type SetExchangeTradeProcessingRequest

type SetExchangeTradeProcessingRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Status   bool   `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*SetExchangeTradeProcessingRequest) Descriptor deprecated

func (*SetExchangeTradeProcessingRequest) Descriptor() ([]byte, []int)

Deprecated: Use SetExchangeTradeProcessingRequest.ProtoReflect.Descriptor instead.

func (*SetExchangeTradeProcessingRequest) GetExchange

func (x *SetExchangeTradeProcessingRequest) GetExchange() string

func (*SetExchangeTradeProcessingRequest) GetStatus

func (x *SetExchangeTradeProcessingRequest) GetStatus() bool

func (*SetExchangeTradeProcessingRequest) ProtoMessage

func (*SetExchangeTradeProcessingRequest) ProtoMessage()

func (*SetExchangeTradeProcessingRequest) ProtoReflect

func (*SetExchangeTradeProcessingRequest) Reset

func (*SetExchangeTradeProcessingRequest) String

type SetLeverageRequest

type SetLeverageRequest struct {
	Exchange       string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset          string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair           *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	UnderlyingPair *CurrencyPair `protobuf:"bytes,4,opt,name=underlying_pair,json=underlyingPair,proto3" json:"underlying_pair,omitempty"`
	MarginType     string        `protobuf:"bytes,5,opt,name=margin_type,json=marginType,proto3" json:"margin_type,omitempty"`
	Leverage       float64       `protobuf:"fixed64,6,opt,name=leverage,proto3" json:"leverage,omitempty"`
	OrderSide      string        `protobuf:"bytes,7,opt,name=order_side,json=orderSide,proto3" json:"order_side,omitempty"`
	// contains filtered or unexported fields
}

func (*SetLeverageRequest) Descriptor deprecated

func (*SetLeverageRequest) Descriptor() ([]byte, []int)

Deprecated: Use SetLeverageRequest.ProtoReflect.Descriptor instead.

func (*SetLeverageRequest) GetAsset

func (x *SetLeverageRequest) GetAsset() string

func (*SetLeverageRequest) GetExchange

func (x *SetLeverageRequest) GetExchange() string

func (*SetLeverageRequest) GetLeverage

func (x *SetLeverageRequest) GetLeverage() float64

func (*SetLeverageRequest) GetMarginType

func (x *SetLeverageRequest) GetMarginType() string

func (*SetLeverageRequest) GetOrderSide

func (x *SetLeverageRequest) GetOrderSide() string

func (*SetLeverageRequest) GetPair

func (x *SetLeverageRequest) GetPair() *CurrencyPair

func (*SetLeverageRequest) GetUnderlyingPair

func (x *SetLeverageRequest) GetUnderlyingPair() *CurrencyPair

func (*SetLeverageRequest) ProtoMessage

func (*SetLeverageRequest) ProtoMessage()

func (*SetLeverageRequest) ProtoReflect

func (x *SetLeverageRequest) ProtoReflect() protoreflect.Message

func (*SetLeverageRequest) Reset

func (x *SetLeverageRequest) Reset()

func (*SetLeverageRequest) String

func (x *SetLeverageRequest) String() string

type SetLeverageResponse

type SetLeverageResponse struct {
	Exchange       string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset          string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair           *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	UnderlyingPair *CurrencyPair `protobuf:"bytes,4,opt,name=underlying_pair,json=underlyingPair,proto3" json:"underlying_pair,omitempty"`
	MarginType     string        `protobuf:"bytes,5,opt,name=margin_type,json=marginType,proto3" json:"margin_type,omitempty"`
	OrderSide      string        `protobuf:"bytes,6,opt,name=order_side,json=orderSide,proto3" json:"order_side,omitempty"`
	Success        bool          `protobuf:"varint,7,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*SetLeverageResponse) Descriptor deprecated

func (*SetLeverageResponse) Descriptor() ([]byte, []int)

Deprecated: Use SetLeverageResponse.ProtoReflect.Descriptor instead.

func (*SetLeverageResponse) GetAsset

func (x *SetLeverageResponse) GetAsset() string

func (*SetLeverageResponse) GetExchange

func (x *SetLeverageResponse) GetExchange() string

func (*SetLeverageResponse) GetMarginType

func (x *SetLeverageResponse) GetMarginType() string

func (*SetLeverageResponse) GetOrderSide

func (x *SetLeverageResponse) GetOrderSide() string

func (*SetLeverageResponse) GetPair

func (x *SetLeverageResponse) GetPair() *CurrencyPair

func (*SetLeverageResponse) GetSuccess

func (x *SetLeverageResponse) GetSuccess() bool

func (*SetLeverageResponse) GetUnderlyingPair

func (x *SetLeverageResponse) GetUnderlyingPair() *CurrencyPair

func (*SetLeverageResponse) ProtoMessage

func (*SetLeverageResponse) ProtoMessage()

func (*SetLeverageResponse) ProtoReflect

func (x *SetLeverageResponse) ProtoReflect() protoreflect.Message

func (*SetLeverageResponse) Reset

func (x *SetLeverageResponse) Reset()

func (*SetLeverageResponse) String

func (x *SetLeverageResponse) String() string

type SetLoggerDetailsRequest

type SetLoggerDetailsRequest struct {
	Logger string `protobuf:"bytes,1,opt,name=logger,proto3" json:"logger,omitempty"`
	Level  string `protobuf:"bytes,2,opt,name=level,proto3" json:"level,omitempty"`
	// contains filtered or unexported fields
}

func (*SetLoggerDetailsRequest) Descriptor deprecated

func (*SetLoggerDetailsRequest) Descriptor() ([]byte, []int)

Deprecated: Use SetLoggerDetailsRequest.ProtoReflect.Descriptor instead.

func (*SetLoggerDetailsRequest) GetLevel

func (x *SetLoggerDetailsRequest) GetLevel() string

func (*SetLoggerDetailsRequest) GetLogger

func (x *SetLoggerDetailsRequest) GetLogger() string

func (*SetLoggerDetailsRequest) ProtoMessage

func (*SetLoggerDetailsRequest) ProtoMessage()

func (*SetLoggerDetailsRequest) ProtoReflect

func (x *SetLoggerDetailsRequest) ProtoReflect() protoreflect.Message

func (*SetLoggerDetailsRequest) Reset

func (x *SetLoggerDetailsRequest) Reset()

func (*SetLoggerDetailsRequest) String

func (x *SetLoggerDetailsRequest) String() string

type SetMarginTypeRequest

type SetMarginTypeRequest struct {
	Exchange   string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset      string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair       *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	MarginType string        `protobuf:"bytes,4,opt,name=margin_type,json=marginType,proto3" json:"margin_type,omitempty"`
	// contains filtered or unexported fields
}

func (*SetMarginTypeRequest) Descriptor deprecated

func (*SetMarginTypeRequest) Descriptor() ([]byte, []int)

Deprecated: Use SetMarginTypeRequest.ProtoReflect.Descriptor instead.

func (*SetMarginTypeRequest) GetAsset

func (x *SetMarginTypeRequest) GetAsset() string

func (*SetMarginTypeRequest) GetExchange

func (x *SetMarginTypeRequest) GetExchange() string

func (*SetMarginTypeRequest) GetMarginType

func (x *SetMarginTypeRequest) GetMarginType() string

func (*SetMarginTypeRequest) GetPair

func (x *SetMarginTypeRequest) GetPair() *CurrencyPair

func (*SetMarginTypeRequest) ProtoMessage

func (*SetMarginTypeRequest) ProtoMessage()

func (*SetMarginTypeRequest) ProtoReflect

func (x *SetMarginTypeRequest) ProtoReflect() protoreflect.Message

func (*SetMarginTypeRequest) Reset

func (x *SetMarginTypeRequest) Reset()

func (*SetMarginTypeRequest) String

func (x *SetMarginTypeRequest) String() string

type SetMarginTypeResponse

type SetMarginTypeResponse struct {
	Exchange string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset    string        `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair     *CurrencyPair `protobuf:"bytes,3,opt,name=pair,proto3" json:"pair,omitempty"`
	Success  bool          `protobuf:"varint,4,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*SetMarginTypeResponse) Descriptor deprecated

func (*SetMarginTypeResponse) Descriptor() ([]byte, []int)

Deprecated: Use SetMarginTypeResponse.ProtoReflect.Descriptor instead.

func (*SetMarginTypeResponse) GetAsset

func (x *SetMarginTypeResponse) GetAsset() string

func (*SetMarginTypeResponse) GetExchange

func (x *SetMarginTypeResponse) GetExchange() string

func (*SetMarginTypeResponse) GetPair

func (x *SetMarginTypeResponse) GetPair() *CurrencyPair

func (*SetMarginTypeResponse) GetSuccess

func (x *SetMarginTypeResponse) GetSuccess() bool

func (*SetMarginTypeResponse) ProtoMessage

func (*SetMarginTypeResponse) ProtoMessage()

func (*SetMarginTypeResponse) ProtoReflect

func (x *SetMarginTypeResponse) ProtoReflect() protoreflect.Message

func (*SetMarginTypeResponse) Reset

func (x *SetMarginTypeResponse) Reset()

func (*SetMarginTypeResponse) String

func (x *SetMarginTypeResponse) String() string

type ShutdownRequest

type ShutdownRequest struct {
	// contains filtered or unexported fields
}

func (*ShutdownRequest) Descriptor deprecated

func (*ShutdownRequest) Descriptor() ([]byte, []int)

Deprecated: Use ShutdownRequest.ProtoReflect.Descriptor instead.

func (*ShutdownRequest) ProtoMessage

func (*ShutdownRequest) ProtoMessage()

func (*ShutdownRequest) ProtoReflect

func (x *ShutdownRequest) ProtoReflect() protoreflect.Message

func (*ShutdownRequest) Reset

func (x *ShutdownRequest) Reset()

func (*ShutdownRequest) String

func (x *ShutdownRequest) String() string

type ShutdownResponse

type ShutdownResponse struct {
	// contains filtered or unexported fields
}

func (*ShutdownResponse) Descriptor deprecated

func (*ShutdownResponse) Descriptor() ([]byte, []int)

Deprecated: Use ShutdownResponse.ProtoReflect.Descriptor instead.

func (*ShutdownResponse) ProtoMessage

func (*ShutdownResponse) ProtoMessage()

func (*ShutdownResponse) ProtoReflect

func (x *ShutdownResponse) ProtoReflect() protoreflect.Message

func (*ShutdownResponse) Reset

func (x *ShutdownResponse) Reset()

func (*ShutdownResponse) String

func (x *ShutdownResponse) String() string

type SimulateOrderRequest

type SimulateOrderRequest struct {
	Exchange   string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair       *CurrencyPair `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	Amount     float64       `protobuf:"fixed64,3,opt,name=amount,proto3" json:"amount,omitempty"`
	Side       string        `protobuf:"bytes,4,opt,name=side,proto3" json:"side,omitempty"`
	MarginType string        `protobuf:"bytes,5,opt,name=margin_type,json=marginType,proto3" json:"margin_type,omitempty"`
	// contains filtered or unexported fields
}

func (*SimulateOrderRequest) Descriptor deprecated

func (*SimulateOrderRequest) Descriptor() ([]byte, []int)

Deprecated: Use SimulateOrderRequest.ProtoReflect.Descriptor instead.

func (*SimulateOrderRequest) GetAmount

func (x *SimulateOrderRequest) GetAmount() float64

func (*SimulateOrderRequest) GetExchange

func (x *SimulateOrderRequest) GetExchange() string

func (*SimulateOrderRequest) GetMarginType

func (x *SimulateOrderRequest) GetMarginType() string

func (*SimulateOrderRequest) GetPair

func (x *SimulateOrderRequest) GetPair() *CurrencyPair

func (*SimulateOrderRequest) GetSide

func (x *SimulateOrderRequest) GetSide() string

func (*SimulateOrderRequest) ProtoMessage

func (*SimulateOrderRequest) ProtoMessage()

func (*SimulateOrderRequest) ProtoReflect

func (x *SimulateOrderRequest) ProtoReflect() protoreflect.Message

func (*SimulateOrderRequest) Reset

func (x *SimulateOrderRequest) Reset()

func (*SimulateOrderRequest) String

func (x *SimulateOrderRequest) String() string

type SimulateOrderResponse

type SimulateOrderResponse struct {
	Orders             []*OrderbookItem `protobuf:"bytes,1,rep,name=orders,proto3" json:"orders,omitempty"`
	Amount             float64          `protobuf:"fixed64,2,opt,name=amount,proto3" json:"amount,omitempty"`
	MinimumPrice       float64          `protobuf:"fixed64,3,opt,name=minimum_price,json=minimumPrice,proto3" json:"minimum_price,omitempty"`
	MaximumPrice       float64          `protobuf:"fixed64,4,opt,name=maximum_price,json=maximumPrice,proto3" json:"maximum_price,omitempty"`
	PercentageGainLoss float64          `protobuf:"fixed64,5,opt,name=percentage_gain_loss,json=percentageGainLoss,proto3" json:"percentage_gain_loss,omitempty"`
	Status             string           `protobuf:"bytes,6,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*SimulateOrderResponse) Descriptor deprecated

func (*SimulateOrderResponse) Descriptor() ([]byte, []int)

Deprecated: Use SimulateOrderResponse.ProtoReflect.Descriptor instead.

func (*SimulateOrderResponse) GetAmount

func (x *SimulateOrderResponse) GetAmount() float64

func (*SimulateOrderResponse) GetMaximumPrice

func (x *SimulateOrderResponse) GetMaximumPrice() float64

func (*SimulateOrderResponse) GetMinimumPrice

func (x *SimulateOrderResponse) GetMinimumPrice() float64

func (*SimulateOrderResponse) GetOrders

func (x *SimulateOrderResponse) GetOrders() []*OrderbookItem

func (*SimulateOrderResponse) GetPercentageGainLoss

func (x *SimulateOrderResponse) GetPercentageGainLoss() float64

func (*SimulateOrderResponse) GetStatus

func (x *SimulateOrderResponse) GetStatus() string

func (*SimulateOrderResponse) ProtoMessage

func (*SimulateOrderResponse) ProtoMessage()

func (*SimulateOrderResponse) ProtoReflect

func (x *SimulateOrderResponse) ProtoReflect() protoreflect.Message

func (*SimulateOrderResponse) Reset

func (x *SimulateOrderResponse) Reset()

func (*SimulateOrderResponse) String

func (x *SimulateOrderResponse) String() string

type SubmitOrderRequest

type SubmitOrderRequest struct {
	Exchange   string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair       *CurrencyPair `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	Side       string        `protobuf:"bytes,3,opt,name=side,proto3" json:"side,omitempty"`
	OrderType  string        `protobuf:"bytes,4,opt,name=order_type,json=orderType,proto3" json:"order_type,omitempty"`
	Amount     float64       `protobuf:"fixed64,5,opt,name=amount,proto3" json:"amount,omitempty"`
	Price      float64       `protobuf:"fixed64,6,opt,name=price,proto3" json:"price,omitempty"`
	ClientId   string        `protobuf:"bytes,7,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	AssetType  string        `protobuf:"bytes,8,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	MarginType string        `protobuf:"bytes,9,opt,name=margin_type,json=marginType,proto3" json:"margin_type,omitempty"`
	// contains filtered or unexported fields
}

func (*SubmitOrderRequest) Descriptor deprecated

func (*SubmitOrderRequest) Descriptor() ([]byte, []int)

Deprecated: Use SubmitOrderRequest.ProtoReflect.Descriptor instead.

func (*SubmitOrderRequest) GetAmount

func (x *SubmitOrderRequest) GetAmount() float64

func (*SubmitOrderRequest) GetAssetType

func (x *SubmitOrderRequest) GetAssetType() string

func (*SubmitOrderRequest) GetClientId

func (x *SubmitOrderRequest) GetClientId() string

func (*SubmitOrderRequest) GetExchange

func (x *SubmitOrderRequest) GetExchange() string

func (*SubmitOrderRequest) GetMarginType

func (x *SubmitOrderRequest) GetMarginType() string

func (*SubmitOrderRequest) GetOrderType

func (x *SubmitOrderRequest) GetOrderType() string

func (*SubmitOrderRequest) GetPair

func (x *SubmitOrderRequest) GetPair() *CurrencyPair

func (*SubmitOrderRequest) GetPrice

func (x *SubmitOrderRequest) GetPrice() float64

func (*SubmitOrderRequest) GetSide

func (x *SubmitOrderRequest) GetSide() string

func (*SubmitOrderRequest) ProtoMessage

func (*SubmitOrderRequest) ProtoMessage()

func (*SubmitOrderRequest) ProtoReflect

func (x *SubmitOrderRequest) ProtoReflect() protoreflect.Message

func (*SubmitOrderRequest) Reset

func (x *SubmitOrderRequest) Reset()

func (*SubmitOrderRequest) String

func (x *SubmitOrderRequest) String() string

type SubmitOrderResponse

type SubmitOrderResponse struct {
	OrderPlaced bool      `protobuf:"varint,1,opt,name=order_placed,json=orderPlaced,proto3" json:"order_placed,omitempty"`
	OrderId     string    `protobuf:"bytes,2,opt,name=order_id,json=orderId,proto3" json:"order_id,omitempty"`
	Trades      []*Trades `protobuf:"bytes,3,rep,name=trades,proto3" json:"trades,omitempty"`
	// contains filtered or unexported fields
}

func (*SubmitOrderResponse) Descriptor deprecated

func (*SubmitOrderResponse) Descriptor() ([]byte, []int)

Deprecated: Use SubmitOrderResponse.ProtoReflect.Descriptor instead.

func (*SubmitOrderResponse) GetOrderId

func (x *SubmitOrderResponse) GetOrderId() string

func (*SubmitOrderResponse) GetOrderPlaced

func (x *SubmitOrderResponse) GetOrderPlaced() bool

func (*SubmitOrderResponse) GetTrades

func (x *SubmitOrderResponse) GetTrades() []*Trades

func (*SubmitOrderResponse) ProtoMessage

func (*SubmitOrderResponse) ProtoMessage()

func (*SubmitOrderResponse) ProtoReflect

func (x *SubmitOrderResponse) ProtoReflect() protoreflect.Message

func (*SubmitOrderResponse) Reset

func (x *SubmitOrderResponse) Reset()

func (*SubmitOrderResponse) String

func (x *SubmitOrderResponse) String() string

type TickerResponse

type TickerResponse struct {
	Pair         *CurrencyPair `protobuf:"bytes,1,opt,name=pair,proto3" json:"pair,omitempty"`
	LastUpdated  int64         `protobuf:"varint,2,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
	CurrencyPair string        `protobuf:"bytes,3,opt,name=currency_pair,json=currencyPair,proto3" json:"currency_pair,omitempty"`
	Last         float64       `protobuf:"fixed64,4,opt,name=last,proto3" json:"last,omitempty"`
	High         float64       `protobuf:"fixed64,5,opt,name=high,proto3" json:"high,omitempty"`
	Low          float64       `protobuf:"fixed64,6,opt,name=low,proto3" json:"low,omitempty"`
	Bid          float64       `protobuf:"fixed64,7,opt,name=bid,proto3" json:"bid,omitempty"`
	Ask          float64       `protobuf:"fixed64,8,opt,name=ask,proto3" json:"ask,omitempty"`
	Volume       float64       `protobuf:"fixed64,9,opt,name=volume,proto3" json:"volume,omitempty"`
	PriceAth     float64       `protobuf:"fixed64,10,opt,name=price_ath,json=priceAth,proto3" json:"price_ath,omitempty"`
	// contains filtered or unexported fields
}

func (*TickerResponse) Descriptor deprecated

func (*TickerResponse) Descriptor() ([]byte, []int)

Deprecated: Use TickerResponse.ProtoReflect.Descriptor instead.

func (*TickerResponse) GetAsk

func (x *TickerResponse) GetAsk() float64

func (*TickerResponse) GetBid

func (x *TickerResponse) GetBid() float64

func (*TickerResponse) GetCurrencyPair

func (x *TickerResponse) GetCurrencyPair() string

func (*TickerResponse) GetHigh

func (x *TickerResponse) GetHigh() float64

func (*TickerResponse) GetLast

func (x *TickerResponse) GetLast() float64

func (*TickerResponse) GetLastUpdated

func (x *TickerResponse) GetLastUpdated() int64

func (*TickerResponse) GetLow

func (x *TickerResponse) GetLow() float64

func (*TickerResponse) GetPair

func (x *TickerResponse) GetPair() *CurrencyPair

func (*TickerResponse) GetPriceAth

func (x *TickerResponse) GetPriceAth() float64

func (*TickerResponse) GetVolume

func (x *TickerResponse) GetVolume() float64

func (*TickerResponse) ProtoMessage

func (*TickerResponse) ProtoMessage()

func (*TickerResponse) ProtoReflect

func (x *TickerResponse) ProtoReflect() protoreflect.Message

func (*TickerResponse) Reset

func (x *TickerResponse) Reset()

func (*TickerResponse) String

func (x *TickerResponse) String() string

type Tickers

type Tickers struct {
	Exchange string            `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Tickers  []*TickerResponse `protobuf:"bytes,2,rep,name=tickers,proto3" json:"tickers,omitempty"`
	// contains filtered or unexported fields
}

func (*Tickers) Descriptor deprecated

func (*Tickers) Descriptor() ([]byte, []int)

Deprecated: Use Tickers.ProtoReflect.Descriptor instead.

func (*Tickers) GetExchange

func (x *Tickers) GetExchange() string

func (*Tickers) GetTickers

func (x *Tickers) GetTickers() []*TickerResponse

func (*Tickers) ProtoMessage

func (*Tickers) ProtoMessage()

func (*Tickers) ProtoReflect

func (x *Tickers) ProtoReflect() protoreflect.Message

func (*Tickers) Reset

func (x *Tickers) Reset()

func (*Tickers) String

func (x *Tickers) String() string

type TradeHistory

type TradeHistory struct {
	CreationTime int64   `protobuf:"varint,1,opt,name=creation_time,json=creationTime,proto3" json:"creation_time,omitempty"`
	Id           string  `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Price        float64 `protobuf:"fixed64,3,opt,name=price,proto3" json:"price,omitempty"`
	Amount       float64 `protobuf:"fixed64,4,opt,name=amount,proto3" json:"amount,omitempty"`
	Exchange     string  `protobuf:"bytes,5,opt,name=exchange,proto3" json:"exchange,omitempty"`
	AssetType    string  `protobuf:"bytes,6,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	OrderSide    string  `protobuf:"bytes,7,opt,name=order_side,json=orderSide,proto3" json:"order_side,omitempty"`
	Fee          float64 `protobuf:"fixed64,8,opt,name=fee,proto3" json:"fee,omitempty"`
	Total        float64 `protobuf:"fixed64,9,opt,name=total,proto3" json:"total,omitempty"`
	// contains filtered or unexported fields
}

func (*TradeHistory) Descriptor deprecated

func (*TradeHistory) Descriptor() ([]byte, []int)

Deprecated: Use TradeHistory.ProtoReflect.Descriptor instead.

func (*TradeHistory) GetAmount

func (x *TradeHistory) GetAmount() float64

func (*TradeHistory) GetAssetType

func (x *TradeHistory) GetAssetType() string

func (*TradeHistory) GetCreationTime

func (x *TradeHistory) GetCreationTime() int64

func (*TradeHistory) GetExchange

func (x *TradeHistory) GetExchange() string

func (*TradeHistory) GetFee

func (x *TradeHistory) GetFee() float64

func (*TradeHistory) GetId

func (x *TradeHistory) GetId() string

func (*TradeHistory) GetOrderSide

func (x *TradeHistory) GetOrderSide() string

func (*TradeHistory) GetPrice

func (x *TradeHistory) GetPrice() float64

func (*TradeHistory) GetTotal

func (x *TradeHistory) GetTotal() float64

func (*TradeHistory) ProtoMessage

func (*TradeHistory) ProtoMessage()

func (*TradeHistory) ProtoReflect

func (x *TradeHistory) ProtoReflect() protoreflect.Message

func (*TradeHistory) Reset

func (x *TradeHistory) Reset()

func (*TradeHistory) String

func (x *TradeHistory) String() string

type Trades

type Trades struct {
	Amount   float64 `protobuf:"fixed64,1,opt,name=amount,proto3" json:"amount,omitempty"`
	Price    float64 `protobuf:"fixed64,2,opt,name=price,proto3" json:"price,omitempty"`
	Fee      float64 `protobuf:"fixed64,3,opt,name=fee,proto3" json:"fee,omitempty"`
	FeeAsset string  `protobuf:"bytes,4,opt,name=fee_asset,json=feeAsset,proto3" json:"fee_asset,omitempty"`
	// contains filtered or unexported fields
}

func (*Trades) Descriptor deprecated

func (*Trades) Descriptor() ([]byte, []int)

Deprecated: Use Trades.ProtoReflect.Descriptor instead.

func (*Trades) GetAmount

func (x *Trades) GetAmount() float64

func (*Trades) GetFee

func (x *Trades) GetFee() float64

func (*Trades) GetFeeAsset

func (x *Trades) GetFeeAsset() string

func (*Trades) GetPrice

func (x *Trades) GetPrice() float64

func (*Trades) ProtoMessage

func (*Trades) ProtoMessage()

func (*Trades) ProtoReflect

func (x *Trades) ProtoReflect() protoreflect.Message

func (*Trades) Reset

func (x *Trades) Reset()

func (*Trades) String

func (x *Trades) String() string

type UnimplementedGoCryptoTraderServiceServer

type UnimplementedGoCryptoTraderServiceServer struct {
}

UnimplementedGoCryptoTraderServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedGoCryptoTraderServiceServer) AddEvent

func (UnimplementedGoCryptoTraderServiceServer) AddPortfolioAddress

func (UnimplementedGoCryptoTraderServiceServer) CancelAllOrders

func (UnimplementedGoCryptoTraderServiceServer) CancelBatchOrders

func (UnimplementedGoCryptoTraderServiceServer) CancelOrder

func (UnimplementedGoCryptoTraderServiceServer) ChangePositionMargin

func (UnimplementedGoCryptoTraderServiceServer) ConvertTradesToCandles

func (UnimplementedGoCryptoTraderServiceServer) CurrencyStateDeposit

func (UnimplementedGoCryptoTraderServiceServer) CurrencyStateGetAll

func (UnimplementedGoCryptoTraderServiceServer) CurrencyStateTrading

func (UnimplementedGoCryptoTraderServiceServer) CurrencyStateTradingPair

func (UnimplementedGoCryptoTraderServiceServer) CurrencyStateWithdraw

func (UnimplementedGoCryptoTraderServiceServer) DisableExchange

func (UnimplementedGoCryptoTraderServiceServer) DisableSubsystem

func (UnimplementedGoCryptoTraderServiceServer) EnableExchange

func (UnimplementedGoCryptoTraderServiceServer) EnableSubsystem

func (UnimplementedGoCryptoTraderServiceServer) FindMissingSavedCandleIntervals

func (UnimplementedGoCryptoTraderServiceServer) FindMissingSavedTradeIntervals

func (UnimplementedGoCryptoTraderServiceServer) GCTScriptAutoLoadToggle

func (UnimplementedGoCryptoTraderServiceServer) GCTScriptExecute

func (UnimplementedGoCryptoTraderServiceServer) GCTScriptListAll

func (UnimplementedGoCryptoTraderServiceServer) GCTScriptQuery

func (UnimplementedGoCryptoTraderServiceServer) GCTScriptReadScript

func (UnimplementedGoCryptoTraderServiceServer) GCTScriptStatus

func (UnimplementedGoCryptoTraderServiceServer) GCTScriptStop

func (UnimplementedGoCryptoTraderServiceServer) GCTScriptStopAll

func (UnimplementedGoCryptoTraderServiceServer) GCTScriptUpload

func (UnimplementedGoCryptoTraderServiceServer) GetAccountInfo

func (UnimplementedGoCryptoTraderServiceServer) GetActiveDataHistoryJobs

func (UnimplementedGoCryptoTraderServiceServer) GetAllManagedPositions

func (UnimplementedGoCryptoTraderServiceServer) GetAuditEvent

func (UnimplementedGoCryptoTraderServiceServer) GetCollateral

func (UnimplementedGoCryptoTraderServiceServer) GetCollateralMode

func (UnimplementedGoCryptoTraderServiceServer) GetConfig

func (UnimplementedGoCryptoTraderServiceServer) GetCurrencyTradeURL

func (UnimplementedGoCryptoTraderServiceServer) GetDataHistoryJobDetails

func (UnimplementedGoCryptoTraderServiceServer) GetDataHistoryJobSummary

func (UnimplementedGoCryptoTraderServiceServer) GetDataHistoryJobsBetween

func (UnimplementedGoCryptoTraderServiceServer) GetEvents

func (UnimplementedGoCryptoTraderServiceServer) GetExchangeAssets

func (UnimplementedGoCryptoTraderServiceServer) GetExchangeInfo

func (UnimplementedGoCryptoTraderServiceServer) GetExchangeOTPCode

func (UnimplementedGoCryptoTraderServiceServer) GetExchangeOTPCodes

func (UnimplementedGoCryptoTraderServiceServer) GetExchangePairs

func (UnimplementedGoCryptoTraderServiceServer) GetExchanges

func (UnimplementedGoCryptoTraderServiceServer) GetForexProviders

func (UnimplementedGoCryptoTraderServiceServer) GetForexRates

func (UnimplementedGoCryptoTraderServiceServer) GetFundingRates

func (UnimplementedGoCryptoTraderServiceServer) GetHistoricCandles

func (UnimplementedGoCryptoTraderServiceServer) GetInfo

func (UnimplementedGoCryptoTraderServiceServer) GetLatestFundingRate

func (UnimplementedGoCryptoTraderServiceServer) GetLeverage

func (UnimplementedGoCryptoTraderServiceServer) GetLoggerDetails

func (UnimplementedGoCryptoTraderServiceServer) GetManagedOrders

func (UnimplementedGoCryptoTraderServiceServer) GetManagedPosition

func (UnimplementedGoCryptoTraderServiceServer) GetMarginRatesHistory

func (UnimplementedGoCryptoTraderServiceServer) GetOpenInterest

func (UnimplementedGoCryptoTraderServiceServer) GetOrder

func (UnimplementedGoCryptoTraderServiceServer) GetOrderbook

func (UnimplementedGoCryptoTraderServiceServer) GetOrderbookMovement

func (UnimplementedGoCryptoTraderServiceServer) GetOrderbooks

func (UnimplementedGoCryptoTraderServiceServer) GetOrders

func (UnimplementedGoCryptoTraderServiceServer) GetPortfolio

func (UnimplementedGoCryptoTraderServiceServer) GetPortfolioSummary

func (UnimplementedGoCryptoTraderServiceServer) GetRPCEndpoints

func (UnimplementedGoCryptoTraderServiceServer) GetRecentTrades

func (UnimplementedGoCryptoTraderServiceServer) GetSavedTrades

func (UnimplementedGoCryptoTraderServiceServer) GetSubsystems

func (UnimplementedGoCryptoTraderServiceServer) GetTechnicalAnalysis

func (UnimplementedGoCryptoTraderServiceServer) GetTicker

func (UnimplementedGoCryptoTraderServiceServer) GetTickers

func (UnimplementedGoCryptoTraderServiceServer) ModifyOrder

func (UnimplementedGoCryptoTraderServiceServer) RemoveEvent

func (UnimplementedGoCryptoTraderServiceServer) RemovePortfolioAddress

func (UnimplementedGoCryptoTraderServiceServer) SetAllExchangePairs

func (UnimplementedGoCryptoTraderServiceServer) SetCollateralMode

func (UnimplementedGoCryptoTraderServiceServer) SetDataHistoryJobStatus

func (UnimplementedGoCryptoTraderServiceServer) SetExchangeAsset

func (UnimplementedGoCryptoTraderServiceServer) SetExchangePair

func (UnimplementedGoCryptoTraderServiceServer) SetExchangeTradeProcessing

func (UnimplementedGoCryptoTraderServiceServer) SetLeverage

func (UnimplementedGoCryptoTraderServiceServer) SetLoggerDetails

func (UnimplementedGoCryptoTraderServiceServer) SetMarginType

func (UnimplementedGoCryptoTraderServiceServer) Shutdown

func (UnimplementedGoCryptoTraderServiceServer) SimulateOrder

func (UnimplementedGoCryptoTraderServiceServer) SubmitOrder

func (UnimplementedGoCryptoTraderServiceServer) UpdateAccountInfo

func (UnimplementedGoCryptoTraderServiceServer) UpdateDataHistoryJobPrerequisite

func (UnimplementedGoCryptoTraderServiceServer) UpdateExchangeSupportedPairs

func (UnimplementedGoCryptoTraderServiceServer) UpsertDataHistoryJob

func (UnimplementedGoCryptoTraderServiceServer) WebsocketGetInfo

func (UnimplementedGoCryptoTraderServiceServer) WebsocketSetEnabled

func (UnimplementedGoCryptoTraderServiceServer) WebsocketSetProxy

func (UnimplementedGoCryptoTraderServiceServer) WebsocketSetURL

func (UnimplementedGoCryptoTraderServiceServer) WhaleBomb

func (UnimplementedGoCryptoTraderServiceServer) WithdrawCryptocurrencyFunds

func (UnimplementedGoCryptoTraderServiceServer) WithdrawFiatFunds

func (UnimplementedGoCryptoTraderServiceServer) WithdrawalEventByID

type UnsafeGoCryptoTraderServiceServer

type UnsafeGoCryptoTraderServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeGoCryptoTraderServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to GoCryptoTraderServiceServer will result in compilation errors.

type UpdateDataHistoryJobPrerequisiteRequest

type UpdateDataHistoryJobPrerequisiteRequest struct {
	Nickname                string `protobuf:"bytes,1,opt,name=nickname,proto3" json:"nickname,omitempty"`
	PrerequisiteJobNickname string `` /* 132-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*UpdateDataHistoryJobPrerequisiteRequest) Descriptor deprecated

func (*UpdateDataHistoryJobPrerequisiteRequest) Descriptor() ([]byte, []int)

Deprecated: Use UpdateDataHistoryJobPrerequisiteRequest.ProtoReflect.Descriptor instead.

func (*UpdateDataHistoryJobPrerequisiteRequest) GetNickname

func (*UpdateDataHistoryJobPrerequisiteRequest) GetPrerequisiteJobNickname

func (x *UpdateDataHistoryJobPrerequisiteRequest) GetPrerequisiteJobNickname() string

func (*UpdateDataHistoryJobPrerequisiteRequest) ProtoMessage

func (*UpdateDataHistoryJobPrerequisiteRequest) ProtoReflect

func (*UpdateDataHistoryJobPrerequisiteRequest) Reset

func (*UpdateDataHistoryJobPrerequisiteRequest) String

type UpdateExchangeSupportedPairsRequest

type UpdateExchangeSupportedPairsRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateExchangeSupportedPairsRequest) Descriptor deprecated

func (*UpdateExchangeSupportedPairsRequest) Descriptor() ([]byte, []int)

Deprecated: Use UpdateExchangeSupportedPairsRequest.ProtoReflect.Descriptor instead.

func (*UpdateExchangeSupportedPairsRequest) GetExchange

func (*UpdateExchangeSupportedPairsRequest) ProtoMessage

func (*UpdateExchangeSupportedPairsRequest) ProtoMessage()

func (*UpdateExchangeSupportedPairsRequest) ProtoReflect

func (*UpdateExchangeSupportedPairsRequest) Reset

func (*UpdateExchangeSupportedPairsRequest) String

type UpsertDataHistoryJobRequest

type UpsertDataHistoryJobRequest struct {
	Nickname                 string        `protobuf:"bytes,1,opt,name=nickname,proto3" json:"nickname,omitempty"`
	Exchange                 string        `protobuf:"bytes,2,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Asset                    string        `protobuf:"bytes,3,opt,name=asset,proto3" json:"asset,omitempty"`
	Pair                     *CurrencyPair `protobuf:"bytes,4,opt,name=pair,proto3" json:"pair,omitempty"`
	StartDate                string        `protobuf:"bytes,5,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`
	EndDate                  string        `protobuf:"bytes,6,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`
	Interval                 int64         `protobuf:"varint,7,opt,name=interval,proto3" json:"interval,omitempty"`
	RequestSizeLimit         int64         `protobuf:"varint,8,opt,name=request_size_limit,json=requestSizeLimit,proto3" json:"request_size_limit,omitempty"`
	DataType                 int64         `protobuf:"varint,9,opt,name=data_type,json=dataType,proto3" json:"data_type,omitempty"`
	MaxRetryAttempts         int64         `protobuf:"varint,10,opt,name=max_retry_attempts,json=maxRetryAttempts,proto3" json:"max_retry_attempts,omitempty"`
	BatchSize                int64         `protobuf:"varint,11,opt,name=batch_size,json=batchSize,proto3" json:"batch_size,omitempty"`
	InsertOnly               bool          `protobuf:"varint,12,opt,name=insert_only,json=insertOnly,proto3" json:"insert_only,omitempty"`
	ConversionInterval       int64         `protobuf:"varint,13,opt,name=conversion_interval,json=conversionInterval,proto3" json:"conversion_interval,omitempty"`
	OverwriteExistingData    bool          `` /* 128-byte string literal not displayed */
	PrerequisiteJobNickname  string        `` /* 133-byte string literal not displayed */
	DecimalPlaceComparison   int64         `` /* 131-byte string literal not displayed */
	SecondaryExchangeName    string        `` /* 127-byte string literal not displayed */
	IssueTolerancePercentage float64       `` /* 138-byte string literal not displayed */
	ReplaceOnIssue           bool          `protobuf:"varint,19,opt,name=replace_on_issue,json=replaceOnIssue,proto3" json:"replace_on_issue,omitempty"`
	// contains filtered or unexported fields
}

func (*UpsertDataHistoryJobRequest) Descriptor deprecated

func (*UpsertDataHistoryJobRequest) Descriptor() ([]byte, []int)

Deprecated: Use UpsertDataHistoryJobRequest.ProtoReflect.Descriptor instead.

func (*UpsertDataHistoryJobRequest) GetAsset

func (x *UpsertDataHistoryJobRequest) GetAsset() string

func (*UpsertDataHistoryJobRequest) GetBatchSize

func (x *UpsertDataHistoryJobRequest) GetBatchSize() int64

func (*UpsertDataHistoryJobRequest) GetConversionInterval

func (x *UpsertDataHistoryJobRequest) GetConversionInterval() int64

func (*UpsertDataHistoryJobRequest) GetDataType

func (x *UpsertDataHistoryJobRequest) GetDataType() int64

func (*UpsertDataHistoryJobRequest) GetDecimalPlaceComparison

func (x *UpsertDataHistoryJobRequest) GetDecimalPlaceComparison() int64

func (*UpsertDataHistoryJobRequest) GetEndDate

func (x *UpsertDataHistoryJobRequest) GetEndDate() string

func (*UpsertDataHistoryJobRequest) GetExchange

func (x *UpsertDataHistoryJobRequest) GetExchange() string

func (*UpsertDataHistoryJobRequest) GetInsertOnly

func (x *UpsertDataHistoryJobRequest) GetInsertOnly() bool

func (*UpsertDataHistoryJobRequest) GetInterval

func (x *UpsertDataHistoryJobRequest) GetInterval() int64

func (*UpsertDataHistoryJobRequest) GetIssueTolerancePercentage

func (x *UpsertDataHistoryJobRequest) GetIssueTolerancePercentage() float64

func (*UpsertDataHistoryJobRequest) GetMaxRetryAttempts

func (x *UpsertDataHistoryJobRequest) GetMaxRetryAttempts() int64

func (*UpsertDataHistoryJobRequest) GetNickname

func (x *UpsertDataHistoryJobRequest) GetNickname() string

func (*UpsertDataHistoryJobRequest) GetOverwriteExistingData

func (x *UpsertDataHistoryJobRequest) GetOverwriteExistingData() bool

func (*UpsertDataHistoryJobRequest) GetPair

func (*UpsertDataHistoryJobRequest) GetPrerequisiteJobNickname

func (x *UpsertDataHistoryJobRequest) GetPrerequisiteJobNickname() string

func (*UpsertDataHistoryJobRequest) GetReplaceOnIssue

func (x *UpsertDataHistoryJobRequest) GetReplaceOnIssue() bool

func (*UpsertDataHistoryJobRequest) GetRequestSizeLimit

func (x *UpsertDataHistoryJobRequest) GetRequestSizeLimit() int64

func (*UpsertDataHistoryJobRequest) GetSecondaryExchangeName

func (x *UpsertDataHistoryJobRequest) GetSecondaryExchangeName() string

func (*UpsertDataHistoryJobRequest) GetStartDate

func (x *UpsertDataHistoryJobRequest) GetStartDate() string

func (*UpsertDataHistoryJobRequest) ProtoMessage

func (*UpsertDataHistoryJobRequest) ProtoMessage()

func (*UpsertDataHistoryJobRequest) ProtoReflect

func (*UpsertDataHistoryJobRequest) Reset

func (x *UpsertDataHistoryJobRequest) Reset()

func (*UpsertDataHistoryJobRequest) String

func (x *UpsertDataHistoryJobRequest) String() string

type UpsertDataHistoryJobResponse

type UpsertDataHistoryJobResponse struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	JobId   string `protobuf:"bytes,2,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UpsertDataHistoryJobResponse) Descriptor deprecated

func (*UpsertDataHistoryJobResponse) Descriptor() ([]byte, []int)

Deprecated: Use UpsertDataHistoryJobResponse.ProtoReflect.Descriptor instead.

func (*UpsertDataHistoryJobResponse) GetJobId

func (x *UpsertDataHistoryJobResponse) GetJobId() string

func (*UpsertDataHistoryJobResponse) GetMessage

func (x *UpsertDataHistoryJobResponse) GetMessage() string

func (*UpsertDataHistoryJobResponse) ProtoMessage

func (*UpsertDataHistoryJobResponse) ProtoMessage()

func (*UpsertDataHistoryJobResponse) ProtoReflect

func (*UpsertDataHistoryJobResponse) Reset

func (x *UpsertDataHistoryJobResponse) Reset()

func (*UpsertDataHistoryJobResponse) String

type WebsocketGetInfoRequest

type WebsocketGetInfoRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	// contains filtered or unexported fields
}

func (*WebsocketGetInfoRequest) Descriptor deprecated

func (*WebsocketGetInfoRequest) Descriptor() ([]byte, []int)

Deprecated: Use WebsocketGetInfoRequest.ProtoReflect.Descriptor instead.

func (*WebsocketGetInfoRequest) GetExchange

func (x *WebsocketGetInfoRequest) GetExchange() string

func (*WebsocketGetInfoRequest) ProtoMessage

func (*WebsocketGetInfoRequest) ProtoMessage()

func (*WebsocketGetInfoRequest) ProtoReflect

func (x *WebsocketGetInfoRequest) ProtoReflect() protoreflect.Message

func (*WebsocketGetInfoRequest) Reset

func (x *WebsocketGetInfoRequest) Reset()

func (*WebsocketGetInfoRequest) String

func (x *WebsocketGetInfoRequest) String() string

type WebsocketGetInfoResponse

type WebsocketGetInfoResponse struct {
	Exchange               string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Supported              bool   `protobuf:"varint,2,opt,name=supported,proto3" json:"supported,omitempty"`
	Enabled                bool   `protobuf:"varint,3,opt,name=enabled,proto3" json:"enabled,omitempty"`
	AuthenticatedSupported bool   `` /* 128-byte string literal not displayed */
	Authenticated          bool   `protobuf:"varint,5,opt,name=authenticated,proto3" json:"authenticated,omitempty"`
	RunningUrl             string `protobuf:"bytes,6,opt,name=running_url,json=runningUrl,proto3" json:"running_url,omitempty"`
	ProxyAddress           string `protobuf:"bytes,7,opt,name=proxy_address,json=proxyAddress,proto3" json:"proxy_address,omitempty"`
	// contains filtered or unexported fields
}

func (*WebsocketGetInfoResponse) Descriptor deprecated

func (*WebsocketGetInfoResponse) Descriptor() ([]byte, []int)

Deprecated: Use WebsocketGetInfoResponse.ProtoReflect.Descriptor instead.

func (*WebsocketGetInfoResponse) GetAuthenticated

func (x *WebsocketGetInfoResponse) GetAuthenticated() bool

func (*WebsocketGetInfoResponse) GetAuthenticatedSupported

func (x *WebsocketGetInfoResponse) GetAuthenticatedSupported() bool

func (*WebsocketGetInfoResponse) GetEnabled

func (x *WebsocketGetInfoResponse) GetEnabled() bool

func (*WebsocketGetInfoResponse) GetExchange

func (x *WebsocketGetInfoResponse) GetExchange() string

func (*WebsocketGetInfoResponse) GetProxyAddress

func (x *WebsocketGetInfoResponse) GetProxyAddress() string

func (*WebsocketGetInfoResponse) GetRunningUrl

func (x *WebsocketGetInfoResponse) GetRunningUrl() string

func (*WebsocketGetInfoResponse) GetSupported

func (x *WebsocketGetInfoResponse) GetSupported() bool

func (*WebsocketGetInfoResponse) ProtoMessage

func (*WebsocketGetInfoResponse) ProtoMessage()

func (*WebsocketGetInfoResponse) ProtoReflect

func (x *WebsocketGetInfoResponse) ProtoReflect() protoreflect.Message

func (*WebsocketGetInfoResponse) Reset

func (x *WebsocketGetInfoResponse) Reset()

func (*WebsocketGetInfoResponse) String

func (x *WebsocketGetInfoResponse) String() string

type WebsocketGetSubscriptionsRequest

type WebsocketGetSubscriptionsRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	// contains filtered or unexported fields
}

func (*WebsocketGetSubscriptionsRequest) Descriptor deprecated

func (*WebsocketGetSubscriptionsRequest) Descriptor() ([]byte, []int)

Deprecated: Use WebsocketGetSubscriptionsRequest.ProtoReflect.Descriptor instead.

func (*WebsocketGetSubscriptionsRequest) GetExchange

func (x *WebsocketGetSubscriptionsRequest) GetExchange() string

func (*WebsocketGetSubscriptionsRequest) ProtoMessage

func (*WebsocketGetSubscriptionsRequest) ProtoMessage()

func (*WebsocketGetSubscriptionsRequest) ProtoReflect

func (*WebsocketGetSubscriptionsRequest) Reset

func (*WebsocketGetSubscriptionsRequest) String

type WebsocketGetSubscriptionsResponse

type WebsocketGetSubscriptionsResponse struct {
	Exchange      string                   `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Subscriptions []*WebsocketSubscription `protobuf:"bytes,2,rep,name=subscriptions,proto3" json:"subscriptions,omitempty"`
	// contains filtered or unexported fields
}

func (*WebsocketGetSubscriptionsResponse) Descriptor deprecated

func (*WebsocketGetSubscriptionsResponse) Descriptor() ([]byte, []int)

Deprecated: Use WebsocketGetSubscriptionsResponse.ProtoReflect.Descriptor instead.

func (*WebsocketGetSubscriptionsResponse) GetExchange

func (x *WebsocketGetSubscriptionsResponse) GetExchange() string

func (*WebsocketGetSubscriptionsResponse) GetSubscriptions

func (*WebsocketGetSubscriptionsResponse) ProtoMessage

func (*WebsocketGetSubscriptionsResponse) ProtoMessage()

func (*WebsocketGetSubscriptionsResponse) ProtoReflect

func (*WebsocketGetSubscriptionsResponse) Reset

func (*WebsocketGetSubscriptionsResponse) String

type WebsocketSetEnabledRequest

type WebsocketSetEnabledRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Enable   bool   `protobuf:"varint,2,opt,name=enable,proto3" json:"enable,omitempty"`
	// contains filtered or unexported fields
}

func (*WebsocketSetEnabledRequest) Descriptor deprecated

func (*WebsocketSetEnabledRequest) Descriptor() ([]byte, []int)

Deprecated: Use WebsocketSetEnabledRequest.ProtoReflect.Descriptor instead.

func (*WebsocketSetEnabledRequest) GetEnable

func (x *WebsocketSetEnabledRequest) GetEnable() bool

func (*WebsocketSetEnabledRequest) GetExchange

func (x *WebsocketSetEnabledRequest) GetExchange() string

func (*WebsocketSetEnabledRequest) ProtoMessage

func (*WebsocketSetEnabledRequest) ProtoMessage()

func (*WebsocketSetEnabledRequest) ProtoReflect

func (*WebsocketSetEnabledRequest) Reset

func (x *WebsocketSetEnabledRequest) Reset()

func (*WebsocketSetEnabledRequest) String

func (x *WebsocketSetEnabledRequest) String() string

type WebsocketSetProxyRequest

type WebsocketSetProxyRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Proxy    string `protobuf:"bytes,2,opt,name=proxy,proto3" json:"proxy,omitempty"`
	// contains filtered or unexported fields
}

func (*WebsocketSetProxyRequest) Descriptor deprecated

func (*WebsocketSetProxyRequest) Descriptor() ([]byte, []int)

Deprecated: Use WebsocketSetProxyRequest.ProtoReflect.Descriptor instead.

func (*WebsocketSetProxyRequest) GetExchange

func (x *WebsocketSetProxyRequest) GetExchange() string

func (*WebsocketSetProxyRequest) GetProxy

func (x *WebsocketSetProxyRequest) GetProxy() string

func (*WebsocketSetProxyRequest) ProtoMessage

func (*WebsocketSetProxyRequest) ProtoMessage()

func (*WebsocketSetProxyRequest) ProtoReflect

func (x *WebsocketSetProxyRequest) ProtoReflect() protoreflect.Message

func (*WebsocketSetProxyRequest) Reset

func (x *WebsocketSetProxyRequest) Reset()

func (*WebsocketSetProxyRequest) String

func (x *WebsocketSetProxyRequest) String() string

type WebsocketSetURLRequest

type WebsocketSetURLRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Url      string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	// contains filtered or unexported fields
}

func (*WebsocketSetURLRequest) Descriptor deprecated

func (*WebsocketSetURLRequest) Descriptor() ([]byte, []int)

Deprecated: Use WebsocketSetURLRequest.ProtoReflect.Descriptor instead.

func (*WebsocketSetURLRequest) GetExchange

func (x *WebsocketSetURLRequest) GetExchange() string

func (*WebsocketSetURLRequest) GetUrl

func (x *WebsocketSetURLRequest) GetUrl() string

func (*WebsocketSetURLRequest) ProtoMessage

func (*WebsocketSetURLRequest) ProtoMessage()

func (*WebsocketSetURLRequest) ProtoReflect

func (x *WebsocketSetURLRequest) ProtoReflect() protoreflect.Message

func (*WebsocketSetURLRequest) Reset

func (x *WebsocketSetURLRequest) Reset()

func (*WebsocketSetURLRequest) String

func (x *WebsocketSetURLRequest) String() string

type WebsocketSubscription

type WebsocketSubscription struct {
	Channel string `protobuf:"bytes,1,opt,name=channel,proto3" json:"channel,omitempty"`
	Pair    string `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	Asset   string `protobuf:"bytes,3,opt,name=asset,proto3" json:"asset,omitempty"`
	Params  string `protobuf:"bytes,4,opt,name=params,proto3" json:"params,omitempty"`
	// contains filtered or unexported fields
}

func (*WebsocketSubscription) Descriptor deprecated

func (*WebsocketSubscription) Descriptor() ([]byte, []int)

Deprecated: Use WebsocketSubscription.ProtoReflect.Descriptor instead.

func (*WebsocketSubscription) GetAsset

func (x *WebsocketSubscription) GetAsset() string

func (*WebsocketSubscription) GetChannel

func (x *WebsocketSubscription) GetChannel() string

func (*WebsocketSubscription) GetPair

func (x *WebsocketSubscription) GetPair() string

func (*WebsocketSubscription) GetParams

func (x *WebsocketSubscription) GetParams() string

func (*WebsocketSubscription) ProtoMessage

func (*WebsocketSubscription) ProtoMessage()

func (*WebsocketSubscription) ProtoReflect

func (x *WebsocketSubscription) ProtoReflect() protoreflect.Message

func (*WebsocketSubscription) Reset

func (x *WebsocketSubscription) Reset()

func (*WebsocketSubscription) String

func (x *WebsocketSubscription) String() string

type WhaleBombRequest

type WhaleBombRequest struct {
	Exchange    string        `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Pair        *CurrencyPair `protobuf:"bytes,2,opt,name=pair,proto3" json:"pair,omitempty"`
	PriceTarget float64       `protobuf:"fixed64,3,opt,name=price_target,json=priceTarget,proto3" json:"price_target,omitempty"`
	Side        string        `protobuf:"bytes,4,opt,name=side,proto3" json:"side,omitempty"`
	AssetType   string        `protobuf:"bytes,5,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	// contains filtered or unexported fields
}

func (*WhaleBombRequest) Descriptor deprecated

func (*WhaleBombRequest) Descriptor() ([]byte, []int)

Deprecated: Use WhaleBombRequest.ProtoReflect.Descriptor instead.

func (*WhaleBombRequest) GetAssetType

func (x *WhaleBombRequest) GetAssetType() string

func (*WhaleBombRequest) GetExchange

func (x *WhaleBombRequest) GetExchange() string

func (*WhaleBombRequest) GetPair

func (x *WhaleBombRequest) GetPair() *CurrencyPair

func (*WhaleBombRequest) GetPriceTarget

func (x *WhaleBombRequest) GetPriceTarget() float64

func (*WhaleBombRequest) GetSide

func (x *WhaleBombRequest) GetSide() string

func (*WhaleBombRequest) ProtoMessage

func (*WhaleBombRequest) ProtoMessage()

func (*WhaleBombRequest) ProtoReflect

func (x *WhaleBombRequest) ProtoReflect() protoreflect.Message

func (*WhaleBombRequest) Reset

func (x *WhaleBombRequest) Reset()

func (*WhaleBombRequest) String

func (x *WhaleBombRequest) String() string

type WithdrawCryptoRequest

type WithdrawCryptoRequest struct {
	Exchange    string  `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Address     string  `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	AddressTag  string  `protobuf:"bytes,3,opt,name=address_tag,json=addressTag,proto3" json:"address_tag,omitempty"`
	Currency    string  `protobuf:"bytes,4,opt,name=currency,proto3" json:"currency,omitempty"`
	Amount      float64 `protobuf:"fixed64,5,opt,name=amount,proto3" json:"amount,omitempty"`
	Fee         float64 `protobuf:"fixed64,6,opt,name=fee,proto3" json:"fee,omitempty"`
	Description string  `protobuf:"bytes,7,opt,name=description,proto3" json:"description,omitempty"`
	Chain       string  `protobuf:"bytes,8,opt,name=chain,proto3" json:"chain,omitempty"`
	// contains filtered or unexported fields
}

func (*WithdrawCryptoRequest) Descriptor deprecated

func (*WithdrawCryptoRequest) Descriptor() ([]byte, []int)

Deprecated: Use WithdrawCryptoRequest.ProtoReflect.Descriptor instead.

func (*WithdrawCryptoRequest) GetAddress

func (x *WithdrawCryptoRequest) GetAddress() string

func (*WithdrawCryptoRequest) GetAddressTag

func (x *WithdrawCryptoRequest) GetAddressTag() string

func (*WithdrawCryptoRequest) GetAmount

func (x *WithdrawCryptoRequest) GetAmount() float64

func (*WithdrawCryptoRequest) GetChain

func (x *WithdrawCryptoRequest) GetChain() string

func (*WithdrawCryptoRequest) GetCurrency

func (x *WithdrawCryptoRequest) GetCurrency() string

func (*WithdrawCryptoRequest) GetDescription

func (x *WithdrawCryptoRequest) GetDescription() string

func (*WithdrawCryptoRequest) GetExchange

func (x *WithdrawCryptoRequest) GetExchange() string

func (*WithdrawCryptoRequest) GetFee

func (x *WithdrawCryptoRequest) GetFee() float64

func (*WithdrawCryptoRequest) ProtoMessage

func (*WithdrawCryptoRequest) ProtoMessage()

func (*WithdrawCryptoRequest) ProtoReflect

func (x *WithdrawCryptoRequest) ProtoReflect() protoreflect.Message

func (*WithdrawCryptoRequest) Reset

func (x *WithdrawCryptoRequest) Reset()

func (*WithdrawCryptoRequest) String

func (x *WithdrawCryptoRequest) String() string

type WithdrawFiatRequest

type WithdrawFiatRequest struct {
	Exchange      string  `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Currency      string  `protobuf:"bytes,2,opt,name=currency,proto3" json:"currency,omitempty"`
	Amount        float64 `protobuf:"fixed64,3,opt,name=amount,proto3" json:"amount,omitempty"`
	Description   string  `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	BankAccountId string  `protobuf:"bytes,5,opt,name=bank_account_id,json=bankAccountId,proto3" json:"bank_account_id,omitempty"`
	// contains filtered or unexported fields
}

func (*WithdrawFiatRequest) Descriptor deprecated

func (*WithdrawFiatRequest) Descriptor() ([]byte, []int)

Deprecated: Use WithdrawFiatRequest.ProtoReflect.Descriptor instead.

func (*WithdrawFiatRequest) GetAmount

func (x *WithdrawFiatRequest) GetAmount() float64

func (*WithdrawFiatRequest) GetBankAccountId

func (x *WithdrawFiatRequest) GetBankAccountId() string

func (*WithdrawFiatRequest) GetCurrency

func (x *WithdrawFiatRequest) GetCurrency() string

func (*WithdrawFiatRequest) GetDescription

func (x *WithdrawFiatRequest) GetDescription() string

func (*WithdrawFiatRequest) GetExchange

func (x *WithdrawFiatRequest) GetExchange() string

func (*WithdrawFiatRequest) ProtoMessage

func (*WithdrawFiatRequest) ProtoMessage()

func (*WithdrawFiatRequest) ProtoReflect

func (x *WithdrawFiatRequest) ProtoReflect() protoreflect.Message

func (*WithdrawFiatRequest) Reset

func (x *WithdrawFiatRequest) Reset()

func (*WithdrawFiatRequest) String

func (x *WithdrawFiatRequest) String() string

type WithdrawResponse

type WithdrawResponse struct {
	Id     string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Status string `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*WithdrawResponse) Descriptor deprecated

func (*WithdrawResponse) Descriptor() ([]byte, []int)

Deprecated: Use WithdrawResponse.ProtoReflect.Descriptor instead.

func (*WithdrawResponse) GetId

func (x *WithdrawResponse) GetId() string

func (*WithdrawResponse) GetStatus

func (x *WithdrawResponse) GetStatus() string

func (*WithdrawResponse) ProtoMessage

func (*WithdrawResponse) ProtoMessage()

func (*WithdrawResponse) ProtoReflect

func (x *WithdrawResponse) ProtoReflect() protoreflect.Message

func (*WithdrawResponse) Reset

func (x *WithdrawResponse) Reset()

func (*WithdrawResponse) String

func (x *WithdrawResponse) String() string

type WithdrawalEventByIDRequest

type WithdrawalEventByIDRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*WithdrawalEventByIDRequest) Descriptor deprecated

func (*WithdrawalEventByIDRequest) Descriptor() ([]byte, []int)

Deprecated: Use WithdrawalEventByIDRequest.ProtoReflect.Descriptor instead.

func (*WithdrawalEventByIDRequest) GetId

func (*WithdrawalEventByIDRequest) ProtoMessage

func (*WithdrawalEventByIDRequest) ProtoMessage()

func (*WithdrawalEventByIDRequest) ProtoReflect

func (*WithdrawalEventByIDRequest) Reset

func (x *WithdrawalEventByIDRequest) Reset()

func (*WithdrawalEventByIDRequest) String

func (x *WithdrawalEventByIDRequest) String() string

type WithdrawalEventByIDResponse

type WithdrawalEventByIDResponse struct {
	Event *WithdrawalEventResponse `protobuf:"bytes,2,opt,name=event,proto3" json:"event,omitempty"`
	// contains filtered or unexported fields
}

func (*WithdrawalEventByIDResponse) Descriptor deprecated

func (*WithdrawalEventByIDResponse) Descriptor() ([]byte, []int)

Deprecated: Use WithdrawalEventByIDResponse.ProtoReflect.Descriptor instead.

func (*WithdrawalEventByIDResponse) GetEvent

func (*WithdrawalEventByIDResponse) ProtoMessage

func (*WithdrawalEventByIDResponse) ProtoMessage()

func (*WithdrawalEventByIDResponse) ProtoReflect

func (*WithdrawalEventByIDResponse) Reset

func (x *WithdrawalEventByIDResponse) Reset()

func (*WithdrawalEventByIDResponse) String

func (x *WithdrawalEventByIDResponse) String() string

type WithdrawalEventResponse

type WithdrawalEventResponse struct {
	Id        string                  `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Exchange  *WithdrawlExchangeEvent `protobuf:"bytes,3,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Request   *WithdrawalRequestEvent `protobuf:"bytes,4,opt,name=request,proto3" json:"request,omitempty"`
	CreatedAt *timestamppb.Timestamp  `protobuf:"bytes,5,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt *timestamppb.Timestamp  `protobuf:"bytes,6,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

func (*WithdrawalEventResponse) Descriptor deprecated

func (*WithdrawalEventResponse) Descriptor() ([]byte, []int)

Deprecated: Use WithdrawalEventResponse.ProtoReflect.Descriptor instead.

func (*WithdrawalEventResponse) GetCreatedAt

func (x *WithdrawalEventResponse) GetCreatedAt() *timestamppb.Timestamp

func (*WithdrawalEventResponse) GetExchange

func (*WithdrawalEventResponse) GetId

func (x *WithdrawalEventResponse) GetId() string

func (*WithdrawalEventResponse) GetRequest

func (*WithdrawalEventResponse) GetUpdatedAt

func (x *WithdrawalEventResponse) GetUpdatedAt() *timestamppb.Timestamp

func (*WithdrawalEventResponse) ProtoMessage

func (*WithdrawalEventResponse) ProtoMessage()

func (*WithdrawalEventResponse) ProtoReflect

func (x *WithdrawalEventResponse) ProtoReflect() protoreflect.Message

func (*WithdrawalEventResponse) Reset

func (x *WithdrawalEventResponse) Reset()

func (*WithdrawalEventResponse) String

func (x *WithdrawalEventResponse) String() string

type WithdrawalEventsByDateRequest

type WithdrawalEventsByDateRequest struct {
	Exchange string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Start    string `protobuf:"bytes,2,opt,name=start,proto3" json:"start,omitempty"`
	End      string `protobuf:"bytes,3,opt,name=end,proto3" json:"end,omitempty"`
	Limit    int32  `protobuf:"varint,4,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*WithdrawalEventsByDateRequest) Descriptor deprecated

func (*WithdrawalEventsByDateRequest) Descriptor() ([]byte, []int)

Deprecated: Use WithdrawalEventsByDateRequest.ProtoReflect.Descriptor instead.

func (*WithdrawalEventsByDateRequest) GetEnd

func (*WithdrawalEventsByDateRequest) GetExchange

func (x *WithdrawalEventsByDateRequest) GetExchange() string

func (*WithdrawalEventsByDateRequest) GetLimit

func (x *WithdrawalEventsByDateRequest) GetLimit() int32

func (*WithdrawalEventsByDateRequest) GetStart

func (x *WithdrawalEventsByDateRequest) GetStart() string

func (*WithdrawalEventsByDateRequest) ProtoMessage

func (*WithdrawalEventsByDateRequest) ProtoMessage()

func (*WithdrawalEventsByDateRequest) ProtoReflect

func (*WithdrawalEventsByDateRequest) Reset

func (x *WithdrawalEventsByDateRequest) Reset()

func (*WithdrawalEventsByDateRequest) String

type WithdrawalEventsByExchangeRequest

type WithdrawalEventsByExchangeRequest struct {
	Exchange  string `protobuf:"bytes,1,opt,name=exchange,proto3" json:"exchange,omitempty"`
	Id        string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Limit     int32  `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
	Currency  string `protobuf:"bytes,4,opt,name=currency,proto3" json:"currency,omitempty"`
	AssetType string `protobuf:"bytes,5,opt,name=asset_type,json=assetType,proto3" json:"asset_type,omitempty"`
	// contains filtered or unexported fields
}

func (*WithdrawalEventsByExchangeRequest) Descriptor deprecated

func (*WithdrawalEventsByExchangeRequest) Descriptor() ([]byte, []int)

Deprecated: Use WithdrawalEventsByExchangeRequest.ProtoReflect.Descriptor instead.

func (*WithdrawalEventsByExchangeRequest) GetAssetType

func (x *WithdrawalEventsByExchangeRequest) GetAssetType() string

func (*WithdrawalEventsByExchangeRequest) GetCurrency

func (x *WithdrawalEventsByExchangeRequest) GetCurrency() string

func (*WithdrawalEventsByExchangeRequest) GetExchange

func (x *WithdrawalEventsByExchangeRequest) GetExchange() string

func (*WithdrawalEventsByExchangeRequest) GetId

func (*WithdrawalEventsByExchangeRequest) GetLimit

func (*WithdrawalEventsByExchangeRequest) ProtoMessage

func (*WithdrawalEventsByExchangeRequest) ProtoMessage()

func (*WithdrawalEventsByExchangeRequest) ProtoReflect

func (*WithdrawalEventsByExchangeRequest) Reset

func (*WithdrawalEventsByExchangeRequest) String

type WithdrawalEventsByExchangeResponse

type WithdrawalEventsByExchangeResponse struct {
	Event []*WithdrawalEventResponse `protobuf:"bytes,2,rep,name=event,proto3" json:"event,omitempty"`
	// contains filtered or unexported fields
}

func (*WithdrawalEventsByExchangeResponse) Descriptor deprecated

func (*WithdrawalEventsByExchangeResponse) Descriptor() ([]byte, []int)

Deprecated: Use WithdrawalEventsByExchangeResponse.ProtoReflect.Descriptor instead.

func (*WithdrawalEventsByExchangeResponse) GetEvent

func (*WithdrawalEventsByExchangeResponse) ProtoMessage

func (*WithdrawalEventsByExchangeResponse) ProtoMessage()

func (*WithdrawalEventsByExchangeResponse) ProtoReflect

func (*WithdrawalEventsByExchangeResponse) Reset

func (*WithdrawalEventsByExchangeResponse) String

type WithdrawalRequestEvent

type WithdrawalRequestEvent struct {
	Currency    string                 `protobuf:"bytes,2,opt,name=currency,proto3" json:"currency,omitempty"`
	Description string                 `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Amount      float64                `protobuf:"fixed64,4,opt,name=amount,proto3" json:"amount,omitempty"`
	Type        int32                  `protobuf:"varint,5,opt,name=type,proto3" json:"type,omitempty"`
	Fiat        *FiatWithdrawalEvent   `protobuf:"bytes,6,opt,name=fiat,proto3" json:"fiat,omitempty"`
	Crypto      *CryptoWithdrawalEvent `protobuf:"bytes,7,opt,name=crypto,proto3" json:"crypto,omitempty"`
	// contains filtered or unexported fields
}

func (*WithdrawalRequestEvent) Descriptor deprecated

func (*WithdrawalRequestEvent) Descriptor() ([]byte, []int)

Deprecated: Use WithdrawalRequestEvent.ProtoReflect.Descriptor instead.

func (*WithdrawalRequestEvent) GetAmount

func (x *WithdrawalRequestEvent) GetAmount() float64

func (*WithdrawalRequestEvent) GetCrypto

func (*WithdrawalRequestEvent) GetCurrency

func (x *WithdrawalRequestEvent) GetCurrency() string

func (*WithdrawalRequestEvent) GetDescription

func (x *WithdrawalRequestEvent) GetDescription() string

func (*WithdrawalRequestEvent) GetFiat

func (*WithdrawalRequestEvent) GetType

func (x *WithdrawalRequestEvent) GetType() int32

func (*WithdrawalRequestEvent) ProtoMessage

func (*WithdrawalRequestEvent) ProtoMessage()

func (*WithdrawalRequestEvent) ProtoReflect

func (x *WithdrawalRequestEvent) ProtoReflect() protoreflect.Message

func (*WithdrawalRequestEvent) Reset

func (x *WithdrawalRequestEvent) Reset()

func (*WithdrawalRequestEvent) String

func (x *WithdrawalRequestEvent) String() string

type WithdrawlExchangeEvent

type WithdrawlExchangeEvent struct {
	Name   string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Id     string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*WithdrawlExchangeEvent) Descriptor deprecated

func (*WithdrawlExchangeEvent) Descriptor() ([]byte, []int)

Deprecated: Use WithdrawlExchangeEvent.ProtoReflect.Descriptor instead.

func (*WithdrawlExchangeEvent) GetId

func (x *WithdrawlExchangeEvent) GetId() string

func (*WithdrawlExchangeEvent) GetName

func (x *WithdrawlExchangeEvent) GetName() string

func (*WithdrawlExchangeEvent) GetStatus

func (x *WithdrawlExchangeEvent) GetStatus() string

func (*WithdrawlExchangeEvent) ProtoMessage

func (*WithdrawlExchangeEvent) ProtoMessage()

func (*WithdrawlExchangeEvent) ProtoReflect

func (x *WithdrawlExchangeEvent) ProtoReflect() protoreflect.Message

func (*WithdrawlExchangeEvent) Reset

func (x *WithdrawlExchangeEvent) Reset()

func (*WithdrawlExchangeEvent) String

func (x *WithdrawlExchangeEvent) String() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL