├── app ├── .gitignore └── src │ └── main │ ├── res │ ├── anim │ │ ├── hold.xml │ │ ├── tooltip_fade_out.xml │ │ ├── fragment_fade_in.xml │ │ ├── fragment_fade_out.xml │ │ ├── check_pin_disappear.xml │ │ ├── slide_to_right.xml │ │ └── slide_from_right.xml │ ├── font │ │ ├── dinpro.otf │ │ ├── montserrat_bold.ttf │ │ ├── montserrat_light.ttf │ │ ├── montserrat_medium.ttf │ │ ├── montserrat_regular.ttf │ │ └── montserrat_semibold.ttf │ ├── drawable-nodpi │ │ ├── logo.png │ │ ├── logout.png │ │ ├── trophy.png │ │ ├── icon_tfa.png │ │ ├── logo_full.png │ │ ├── no_internet.png │ │ ├── example_logo.png │ │ ├── logo_green_white.png │ │ ├── tfa_tutorial_1.png │ │ ├── tfa_tutorial_2.png │ │ ├── tfa_tutorial_3.png │ │ ├── tfa_tutorial_4.png │ │ ├── profile_placeholder.png │ │ ├── google_authenticator_icon.png │ │ ├── splashscreen_background_dark.png │ │ └── splashscreen_background_dark_with_logo.png │ ├── drawable-hdpi │ │ ├── ic_stat_logo.png │ │ └── logo_trans.png │ ├── drawable-mdpi │ │ └── ic_stat_logo.png │ ├── mipmap-hdpi │ │ ├── icon_investor.png │ │ ├── icon_manager.png │ │ ├── icon_investor_round.png │ │ └── icon_manager_round.png │ ├── mipmap-mdpi │ │ ├── icon_investor.png │ │ ├── icon_manager.png │ │ ├── icon_investor_round.png │ │ └── icon_manager_round.png │ ├── mipmap-xhdpi │ │ ├── icon_investor.png │ │ ├── icon_manager.png │ │ ├── icon_manager_round.png │ │ └── icon_investor_round.png │ ├── mipmap-xxhdpi │ │ ├── icon_manager.png │ │ ├── icon_investor.png │ │ ├── icon_investor_round.png │ │ └── icon_manager_round.png │ ├── drawable-xhdpi │ │ └── ic_stat_logo.png │ ├── drawable-xxhdpi │ │ └── ic_stat_logo.png │ ├── drawable │ │ ├── avatar_placeholder.png │ │ ├── avatar_placeholder_big.png │ │ ├── dotted_vertical_line.png │ │ ├── icon_program_placeholder.png │ │ ├── icon_program_placeholder_big.png │ │ ├── circle_white.xml │ │ ├── background_levels_limits.xml │ │ ├── button_in_requests.xml │ │ ├── circle_white_12.xml │ │ ├── circle_primary.xml │ │ ├── pin_code_dot_selected.xml │ │ ├── pin_code_dot_error.xml │ │ ├── program_list_item_background.xml │ │ ├── background_count_active.xml │ │ ├── background_count_inactive.xml │ │ ├── background_dialog.xml │ │ ├── background_providers_count.xml │ │ ├── background_date.xml │ │ ├── button_pin_normal.xml │ │ ├── button_pin_pressed.xml │ │ ├── background_tag.xml │ │ ├── button_pin_disabled.xml │ │ ├── circle_stroke.xml │ │ ├── portfolio_event_background.xml │ │ ├── background_select_currency_dialog.xml │ │ ├── portfolio_event_dashboard_card.xml │ │ ├── tooltip_background.xml │ │ ├── chart_highlight_circle.xml │ │ ├── currency_background.xml │ │ ├── currency_background_white.xml │ │ ├── currency_btc_background.xml │ │ ├── currency_eth_background.xml │ │ ├── currency_eur_background.xml │ │ ├── currency_usd_background.xml │ │ ├── pin_code_dot_unselected.xml │ │ ├── status_background.xml │ │ ├── button_filters_normal.xml │ │ ├── button_primary_normal_red.xml │ │ ├── fund_asset_background.xml │ │ ├── timeframe_selection.xml │ │ ├── background_profit_green.xml │ │ ├── background_select_currency.xml │ │ ├── button_filters_pressed.xml │ │ ├── button_keyboard_pressed.xml │ │ ├── button_primary_normal.xml │ │ ├── button_primary_normal_green.xml │ │ ├── button_primary_normal_white.xml │ │ ├── button_primary_pressed.xml │ │ ├── chart_highlight_box_background.xml │ │ ├── date_range_option_selected.xml │ │ ├── divider_transparent.xml │ │ ├── line_bottomsheet.xml │ │ ├── program_list_item_background_shape.xml │ │ ├── time_frame_underline.xml │ │ ├── background_add_new_post_view.xml │ │ ├── date_range_option_normal.xml │ │ ├── date_range_option_pressed.xml │ │ ├── button_primary_disabled.xml │ │ ├── button_keyboard_normal.xml │ │ ├── list_item_divider.xml │ │ ├── background_select_currency_background.xml │ │ ├── background_post_tag.xml │ │ ├── background_futures_settings.xml │ │ ├── shadow_up_white.xml │ │ ├── shadow_down_black.xml │ │ ├── shadow_down_white.xml │ │ ├── transactions_shadow.xml │ │ ├── background_primary_frame.xml │ │ └── circle_shape.xml │ ├── mipmap-xxxhdpi │ │ ├── icon_investor.png │ │ ├── icon_manager.png │ │ ├── icon_manager_round.png │ │ └── icon_investor_round.png │ ├── drawable-xxxhdpi │ │ └── ic_stat_logo.png │ ├── xml │ │ └── provider_paths.xml │ ├── drawable-v21 │ │ ├── button_in_requests.xml │ │ ├── pin_code_dot_selected.xml │ │ ├── background_date.xml │ │ ├── background_dialog.xml │ │ ├── button_pin_normal.xml │ │ ├── button_pin_pressed.xml │ │ ├── portfolio_event_background.xml │ │ ├── button_pin_disabled.xml │ │ ├── circle_stroke.xml │ │ ├── background_select_currency_dialog.xml │ │ ├── portfolio_event_dashboard_card.xml │ │ ├── chart_highlight_circle.xml │ │ ├── pin_code_dot_unselected.xml │ │ ├── status_background.xml │ │ ├── background_profit_red.xml │ │ ├── button_filters_normal.xml │ │ ├── button_primary_pressed.xml │ │ ├── fund_asset_background.xml │ │ ├── background_profit_white.xml │ │ ├── background_select_currency.xml │ │ ├── button_filters_pressed.xml │ │ ├── button_primary_normal.xml │ │ ├── line_bottomsheet.xml │ │ ├── program_list_item_background_shape.xml │ │ ├── time_frame_underline.xml │ │ ├── date_range_option_normal.xml │ │ ├── date_range_option_pressed.xml │ │ ├── date_range_option_selected.xml │ │ ├── button_primary_disabled.xml │ │ ├── list_item_divider.xml │ │ ├── program_list_item_background.xml │ │ └── background_select_currency_background.xml │ └── values │ │ └── integers.xml │ ├── assets │ └── fonts │ │ ├── NeuzeitGro-Bla.ttf │ │ ├── NeuzeitGro-Bol.ttf │ │ ├── NeuzeitGro-Lig.ttf │ │ ├── NeuzeitGro-Reg.ttf │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-Medium.ttf │ │ ├── Montserrat-Regular.ttf │ │ └── Montserrat-SemiBold.ttf │ └── java │ └── vision │ └── genesis │ └── clientapp │ ├── model │ └── events │ │ ├── ShowFundsListEvent.java │ │ ├── OnNewPostCreatedEvent.java │ │ ├── OnNewPostEditedEvent.java │ │ ├── OnThemeChangedEvent.java │ │ ├── SetupTfaFinishedEvent.java │ │ ├── ShowAssetsListEvent.java │ │ ├── ShowLockScreenEvent.java │ │ ├── ShowProgramsListEvent.java │ │ ├── OnCheckTfaSuccessEvent.java │ │ ├── OnRequestCancelledEvent.java │ │ ├── OnStartKycClickedEvent.java │ │ ├── HideBottomNavigationEvent.java │ │ ├── OnBrowseFundsClickedEvent.java │ │ ├── OnBrowseProgramsClickedEvent.java │ │ ├── OnCardDepositFinishedEvent.java │ │ ├── OnInRequestsClickedEvent.java │ │ ├── OnShowMediaActivityEvent.java │ │ ├── OnSubscribedToProgramEvent.java │ │ ├── ShowSetupTfaActivityEvent.java │ │ ├── OnShowUsersListActivityEvent.java │ │ ├── OnUnauthorizedResponseGetEvent.java │ │ ├── ShowDisableTfaActivityEvent.java │ │ ├── ShowSetupTfaSecondStepEvent.java │ │ ├── OnFinishAddAssetActivityEvent.java │ │ ├── OnProfilePublicInfoFilledEvent.java │ │ ├── OnSelectBrokerNextClickedEvent.java │ │ ├── SetupTfaBackButtonClickedEvent.java │ │ ├── SetupTfaNextButtonClickedEvent.java │ │ ├── OnDashboardProgramsUpdateEvent.java │ │ ├── CreateProgramNextButtonClickedEvent.java │ │ ├── ProgramsListFiltersAppliedEvent.java │ │ ├── ProgramsListFiltersClearedEvent.java │ │ ├── CreateProgramConfirmButtonClickedEvent.java │ │ ├── OnCreateAccountCreateButtonClickedEvent.java │ │ ├── OnCreateProgramCreateButtonClickedEvent.java │ │ └── OnFavoriteTickersSelectAccountClickedEvent.java │ ├── ui │ └── common │ │ ├── BackButtonListener.java │ │ └── BlockScreenHolder.java │ ├── net │ └── api │ │ └── client │ │ └── BinanceApiClient.java │ └── feature │ └── main │ └── wallet │ └── deposit │ └── DepositWalletView.java ├── apiClient ├── .swagger-codegen │ └── VERSION ├── settings.gradle ├── gradle.properties ├── docs │ ├── SecureAlgorithm.md │ ├── BinanceOrderSide.md │ ├── BinanceRawOrderSide.md │ ├── BinancePositionMode.md │ ├── BinanceUnderlyingType.md │ ├── BinanceWorkingType.md │ ├── DashboardActionStatus.md │ ├── DashboardAssetStatus.md │ ├── SocialViewMode.md │ ├── InvestmentProgramType.md │ ├── BinanceAutoCloseType.md │ ├── ProgramType.md │ ├── SignalSubscriberStatus.md │ ├── AppPlatform.md │ ├── BinanceFuturesMarginType.md │ ├── CaptchaType.md │ ├── InvestmentRequestType.md │ ├── GeeTestResult.md │ ├── RouteType.md │ ├── AssetGlobalType.md │ ├── BinancePositionSide.md │ ├── EventGroupType.md │ ├── GeeTestDetails.md │ ├── UsersFilterTimeframe.md │ ├── PeriodStatus.md │ ├── BinanceFuturesMarginChangeDirectionType.md │ ├── SubscriptionMode.md │ ├── BetaTestingType.md │ ├── BinanceRateLimitInterval.md │ ├── ChangeState.md │ ├── TradeEntryType.md │ ├── AssetType.md │ ├── BinanceRawRateLimitInterval.md │ ├── BinanceOrderResponseType.md │ ├── ImageQuality.md │ ├── InvestmentEventLocation.md │ ├── TradingPlatformBinanceOrdersMode.md │ ├── AssetFilterType.md │ ├── BinanceRawOrderResponseType.md │ ├── DashboardTradingAssetStatus.md │ ├── ManagerOverview.md │ ├── PasswordModel.md │ ├── PlatformUrlType.md │ ├── RateModel.md │ ├── BinanceRateLimitType.md │ ├── IdModel.md │ ├── PowResult.md │ ├── TimestampDate.md │ ├── AssetProvider.md │ ├── BinanceRawRateLimitType.md │ ├── Body.md │ ├── MoneyLocationType.md │ ├── SignalDetachMode.md │ ├── UploadResult.md │ ├── BinanceRawAccountType.md │ ├── Enums.md │ ├── TradingAccountPermission.md │ ├── UserFeedMode.md │ ├── TwoFactorStatus.md │ ├── InvestmentRequestStatus.md │ ├── MultiWalletTransactionStatus.md │ ├── TransactionExternalType.md │ ├── TwoFactorCodeModel.md │ ├── BrokersInfo.md │ ├── PlatformCommissionInfo.md │ ├── ProgramInfo.md │ ├── Tag.md │ ├── TradingAccountDemoDeposit.md │ ├── PostLink.md │ ├── ProgramTag.md │ ├── RateItem.md │ ├── ButtonAction.md │ ├── FilterModel.md │ ├── ImageLocation.md │ ├── PlatformEvents.md │ ├── ProgramsLevelsInfo.md │ ├── RatesModel.md │ ├── TickerChart.md │ ├── UserVerificationStatus.md │ ├── UtmSource.md │ ├── DashboardAssets.md │ ├── ErrorMessage.md │ ├── FilterItemInfo.md │ ├── LevelInfo.md │ ├── NewPostImage.md │ ├── RecoveryCode.md │ ├── SimpleChartPoint.md │ ├── FundAssetPart.md │ ├── NotificationSettingConditionType.md │ ├── SignMessage.md │ ├── SignalDataMaster.md │ ├── ChartSimple.md │ ├── DashboardChart.md │ ├── DashboardPortfolio.md │ ├── DashboardTradingAssetSignalDetails.md │ ├── IOsAppVersion.md │ ├── TransactionDetail.md │ ├── WalletDepositSummary.md │ ├── WalletMultiAvailable.md │ ├── AndroidVersion.md │ ├── DashboardAssetType.md │ ├── DetachFromExternalSignalProvider.md │ ├── ExchangeCredentials.md │ ├── NewManager.md │ ├── OrderModelSignalData.md │ ├── ProgramPwdUpdate.md │ ├── Timeframe.md │ ├── WalletsInfo.md │ ├── DashboardChartAssets.md │ ├── FcmTokenViewModel.md │ ├── FundFilters.md │ ├── FundOwnerActions.md │ ├── Invest.md │ ├── ProgramAssetDetails.md │ ├── ReferralFriend.md │ ├── UpdateProfileViewModel.md │ ├── WalletStatistic.md │ ├── AssetInvestmentStatus.md │ ├── BinanceRawOrderBookEntry.md │ ├── DashboardRecommendations.md │ ├── LevelUpSummary.md │ ├── SignalTradingEvent.md │ ├── SocialLinksViewModel.md │ ├── StringItemsViewModel.md │ ├── AmountWithCurrency.md │ ├── BinanceRawSymbolFilter.md │ ├── BinanceRawTimeInForce.md │ ├── DashboardTimeframeProfit.md │ ├── PersonalFundDetailsList.md │ ├── PlatformUrlInfo.md │ ├── PostItemsViewModel.md │ ├── TradingAccountPwdUpdate.md │ ├── TwoFactorAuthenticator.md │ ├── WalletDeposit.md │ ├── BinanceRawFuturesPositionMode.md │ ├── ExchangeCredentialsIpInfo.md │ ├── FundAssetsListInfo.md │ ├── InvestToProgram.md │ ├── NewOpenTradesEvent.md │ ├── PersonalFollowDetailsList.md │ ├── PostImage.md │ ├── PrivateTradingAccountType.md │ ├── ProgramMinimumDeposit.md │ ├── TradesChartViewModel.md │ ├── TransactionDetailsActions.md │ ├── WalletsViewModel.md │ ├── BinanceRawFuturesCancelAllOrders.md │ ├── DashboardTradingAssetCredentials.md │ ├── DateChart.md │ ├── TradeChart.md │ ├── ChartByDate.md │ ├── CoinsHistoryEvent.md │ ├── DashboardAsset.md │ ├── OefAssetPart.md │ ├── PersonalCopyTradingAccountInfo.md │ ├── RealOefAssetPart.md │ ├── UpdateSocialLinksViewModel.md │ ├── AnonymousPlatformInfo.md │ ├── AssetEvent.md │ ├── Blockchain.md │ ├── InvestorAmount.md │ ├── ManagerIpfsHash.md │ ├── MediaPostItemsViewModel.md │ ├── OpenSignalTradesList.md │ ├── ProgramCreateAssetPlatformInfo.md │ ├── TwoFactorAuthenticatorConfirm.md │ ├── UpdateSocialLinkViewModel.md │ ├── WalletRowCell.md │ ├── AbsoluteProfitChart.md │ ├── AppVersion.md │ ├── AssetsPartsChangeRequest.md │ ├── BinanceRawFuturesChangeMarginTypeResult.md │ ├── CoinsAssetItemsViewModel.md │ ├── InvestmentProgramTxInfo.md │ ├── ManagerHistoryIpfsHash.md │ ├── TradeAssetData.md │ ├── TradeDirectionType.md │ ├── WalletInvestmentProgram.md │ ├── BinanceAccountType.md │ ├── BrokersProgramInfo.md │ ├── ChangeBrokerProgramRequest.md │ ├── ChangePasswordViewModel.md │ ├── CurrencyItem.md │ ├── ErrorViewModel.md │ ├── ForgotPasswordViewModel.md │ ├── FundSets.md │ ├── FundsList.md │ ├── RecoveryCodesViewModel.md │ ├── SignalTradingEvents.md │ ├── BalanceChartPoint.md │ ├── ExchangeAssetItemsViewModel.md │ ├── ExchangeInfoItemsViewModel.md │ ├── ItemsViewModelPublicProfile.md │ ├── ItemsViewModelRewardDetails.md │ ├── PeriodDate.md │ ├── PlatformCurrencyInfo.md │ ├── PublicProfileItemsViewModel.md │ ├── ResendConfirmationViewModel.md │ ├── RewardDetailsItemsViewModel.md │ ├── ThreeFactorAuthenticatorConfirm.md │ ├── TradesDelay.md │ ├── UsersRealAssets.md │ ├── BinanceRawCancelOrderId.md │ ├── BinanceRawPrice.md │ ├── Color.md │ ├── ExternalKeysViewModel.md │ ├── GuidesCategoryItemsViewModel.md │ ├── ItemsViewModelReferralFriend.md │ ├── LimitWithoutKyc.md │ ├── ManagerProfitChartData.md │ ├── NotificationList.md │ ├── RePost.md │ ├── ReferralFriendItemsViewModel.md │ ├── SignalAccountsList.md │ ├── SignalsList.md │ ├── AndroidAppVersion.md │ ├── BinanceRawKlineItemsViewModel.md │ ├── BinanceRawOrderItemsViewModel.md │ ├── DetachFromSignalProvider.md │ ├── EditPost.md │ ├── ExternalKycAccessToken.md │ ├── GuidesCategory.md │ ├── InvestmentProgramViewModel.md │ ├── ItemsViewModelFundDetailsList.md │ ├── ItemsViewModelUserDetailsList.md │ ├── ManagersList.md │ ├── ProgramSets.md │ ├── ProgramsList.md │ ├── SignalProviderSubscribers.md │ ├── Token.md │ ├── TransactionsViewModel.md │ ├── TwoFactorCodeWithPassword.md │ ├── UserDetailsListItemsViewModel.md │ ├── AssetSignalSettings.md │ ├── CopyTradingAccountsList.md │ ├── CreateSignalProvider.md │ ├── DayOfWeekType.md │ ├── ManagerOpenTrades.md │ ├── MoneyLocation.md │ ├── OrderSignalFee.md │ ├── ProgramPeriodsViewModel.md │ ├── PushNotificationChannel.md │ ├── ReallocationModel.md │ ├── RewardDetails.md │ ├── SocialSummaryHashTag.md │ ├── WalletInvestmentPrograms.md │ ├── WithdrawalSummary.md │ ├── AmountRowCell.md │ ├── AmountWithLogoCurrency.md │ ├── BasePlatformAssetItemsViewModel.md │ ├── BrokersViewModel.md │ ├── CoinsHistoryEventItemsViewModel.md │ ├── DExchangeResponse.md │ ├── FundAssetInvestmentRequest.md │ ├── FundCreateAssetPlatformInfo.md │ ├── InvestmentEventViewModels.md │ ├── ItemsViewModelFollowDetailsList.md │ ├── ItemsViewModelProgramDetailsList.md │ ├── ItemsViewModelReallocationModel.md │ ├── ItemsViewModelSignalSubscription.md │ ├── ItemsViewModelSignalTradingEvent.md │ ├── OpenTradesViewModel.md │ ├── PartnershipDetails.md │ ├── PaymentTxInfo.md │ ├── PlatformCurrency.md │ ├── PowDetails.md │ ├── ProfilePublicShortItemsViewModel.md │ ├── ReallocationModelItemsViewModel.md │ ├── SignalSubscriptionItemsViewModel.md │ ├── SignalTradingEventItemsViewModel.md │ ├── BinanceExecutionType.md │ ├── BinanceRawBlvtKlineItemsViewModel.md │ ├── BinanceRawFuturesUsdtAsset.md │ ├── FreeTokens.md │ ├── FundAssetPartDetails.md │ ├── FundDetailsListItemItemsViewModel.md │ ├── ItemsViewModelFundDetailsListItem.md │ ├── ManagerFunds.md │ ├── ProfitChart.md │ ├── ProgramAssetInvestmentRequest.md │ ├── ProviderPlatformAssets.md │ ├── WalletDepositData.md │ ├── BinanceIncomeType.md │ ├── BinanceRawSymbolIcebergPartsFilter.md │ ├── BinanceRawSymbolMaxPositionFilter.md │ ├── CaptchaCheckResult.md │ ├── ExternalKeyAddViewModel.md │ ├── InvestmentEventItemViewModel.md │ ├── ItemsViewModelTransactionViewModel.md │ ├── ManagerProfitChart.md │ ├── MigrationRequest.md │ ├── MultiWalletFilters.md │ ├── ProgramProfitCharts.md │ ├── RebalancesViewModel.md │ ├── ResetPasswordViewModel.md │ ├── TransactionViewModelItemsViewModel.md │ ├── AccountBalanceChart.md │ ├── BinanceRawFuturesSymbolBracket.md │ ├── BinanceRawSymbolMaxOrdersFilter.md │ ├── DashboardTradingAssetItemsViewModel.md │ ├── FollowDetailsListItemItemsViewModel.md │ ├── FundAssetsState.md │ ├── FundBalanceChart.md │ ├── FundHistoryEventType.md │ ├── InvestmentProgramUpdate.md │ ├── ItemsViewModelDashboardTradingAsset.md │ ├── ItemsViewModelFollowDetailsListItem.md │ ├── ItemsViewModelTradingAccountDetails.md │ ├── ManagerInvestmentPrograms.md │ ├── ManagerPrograms.md │ ├── NewTournamentAccountRequest.md │ ├── NewTradeEvent.md │ ├── NotificationViewModelItemsViewModel.md │ ├── PlatformAssets.md │ ├── TradingAccountDetailsItemsViewModel.md │ ├── AssetInvestmentRequestItemsViewModel.md │ ├── BinanceRawFuturesOpenInterest.md │ ├── BinanceRawFuturesOrderItemsViewModel.md │ ├── BinanceTimeInForce.md │ ├── ExchangeCredentialsInfoItemsViewModel.md │ ├── FollowProfitPercentCharts.md │ ├── ItemsViewModelAssetInvestmentRequest.md │ ├── ItemsViewModelCopyTradingAccountInfo.md │ ├── ItemsViewModelProgramDetailsListItem.md │ ├── ManagerPortfolioEvents.md │ ├── NewExternalTradingAccountRequest.md │ ├── ProgramDetailsListItemItemsViewModel.md │ ├── ReallocationsViewModel.md │ └── SimpleChart.md ├── src │ └── main │ │ └── AndroidManifest.xml └── gradle │ └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── settings.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── .gitignore /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /apiClient/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.25 -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app',':apiClient' 2 | -------------------------------------------------------------------------------- /apiClient/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "swagger-petstore-retrofit2-rx" -------------------------------------------------------------------------------- /apiClient/gradle.properties: -------------------------------------------------------------------------------- 1 | # Uncomment to build for Android 2 | #target = android -------------------------------------------------------------------------------- /app/src/main/res/anim/hold.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /apiClient/docs/SecureAlgorithm.md: -------------------------------------------------------------------------------- 1 | # SecureAlgorithm 2 | 3 | ## Enum 4 | 5 | * `SHA256` (value: `"Sha256"`) 6 | -------------------------------------------------------------------------------- /apiClient/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/font/dinpro.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/font/dinpro.otf -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /apiClient/docs/BinanceOrderSide.md: -------------------------------------------------------------------------------- 1 | # BinanceOrderSide 2 | 3 | ## Enum 4 | 5 | * `BUY` (value: `"Buy"`) 6 | * `SELL` (value: `"Sell"`) 7 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawOrderSide.md: -------------------------------------------------------------------------------- 1 | # BinanceRawOrderSide 2 | 3 | ## Enum 4 | 5 | * `BUY` (value: `"Buy"`) 6 | * `SELL` (value: `"Sell"`) 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/logout.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/trophy.png -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/font/montserrat_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/font/montserrat_light.ttf -------------------------------------------------------------------------------- /apiClient/docs/BinancePositionMode.md: -------------------------------------------------------------------------------- 1 | # BinancePositionMode 2 | 3 | ## Enum 4 | 5 | * `HEDGE` (value: `"Hedge"`) 6 | * `ONEWAY` (value: `"OneWay"`) 7 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceUnderlyingType.md: -------------------------------------------------------------------------------- 1 | # BinanceUnderlyingType 2 | 3 | ## Enum 4 | 5 | * `COIN` (value: `"Coin"`) 6 | * `INDEX` (value: `"Index"`) 7 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceWorkingType.md: -------------------------------------------------------------------------------- 1 | # BinanceWorkingType 2 | 3 | ## Enum 4 | 5 | * `MARK` (value: `"Mark"`) 6 | * `CONTRACT` (value: `"Contract"`) 7 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardActionStatus.md: -------------------------------------------------------------------------------- 1 | # DashboardActionStatus 2 | 3 | ## Enum 4 | 5 | * `ALL` (value: `"All"`) 6 | * `ACTIVE` (value: `"Active"`) 7 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardAssetStatus.md: -------------------------------------------------------------------------------- 1 | # DashboardAssetStatus 2 | 3 | ## Enum 4 | 5 | * `ALL` (value: `"All"`) 6 | * `ACTIVE` (value: `"Active"`) 7 | -------------------------------------------------------------------------------- /apiClient/docs/SocialViewMode.md: -------------------------------------------------------------------------------- 1 | # SocialViewMode 2 | 3 | ## Enum 4 | 5 | * `ALLUSERS` (value: `"AllUsers"`) 6 | * `ONLYME` (value: `"OnlyMe"`) 7 | -------------------------------------------------------------------------------- /apiClient/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/apiClient/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/assets/fonts/NeuzeitGro-Bla.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/assets/fonts/NeuzeitGro-Bla.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/NeuzeitGro-Bol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/assets/fonts/NeuzeitGro-Bol.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/NeuzeitGro-Lig.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/assets/fonts/NeuzeitGro-Lig.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/NeuzeitGro-Reg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/assets/fonts/NeuzeitGro-Reg.ttf -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/icon_tfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/icon_tfa.png -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/font/montserrat_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/font/montserrat_regular.ttf -------------------------------------------------------------------------------- /apiClient/docs/InvestmentProgramType.md: -------------------------------------------------------------------------------- 1 | # InvestmentProgramType 2 | 3 | ## Enum 4 | 5 | * `PROGRAM` (value: `"Program"`) 6 | * `FUND` (value: `"Fund"`) 7 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/assets/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/assets/fonts/Montserrat-Light.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/assets/fonts/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-hdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/logo_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-hdpi/logo_trans.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-mdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/logo_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/logo_full.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/no_internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/no_internet.png -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/font/montserrat_semibold.ttf -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_investor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-hdpi/icon_investor.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-hdpi/icon_manager.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/icon_investor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-mdpi/icon_investor.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/icon_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-mdpi/icon_manager.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/icon_investor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-xhdpi/icon_investor.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/icon_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-xhdpi/icon_manager.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/icon_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-xxhdpi/icon_manager.png -------------------------------------------------------------------------------- /apiClient/docs/BinanceAutoCloseType.md: -------------------------------------------------------------------------------- 1 | # BinanceAutoCloseType 2 | 3 | ## Enum 4 | 5 | * `ADL` (value: `"ADL"`) 6 | * `LIQUIDATION` (value: `"Liquidation"`) 7 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramType.md: -------------------------------------------------------------------------------- 1 | # ProgramType 2 | 3 | ## Enum 4 | 5 | * `DAILYPERIOD` (value: `"DailyPeriod"`) 6 | * `FIXEDPERIOD` (value: `"FixedPeriod"`) 7 | -------------------------------------------------------------------------------- /apiClient/docs/SignalSubscriberStatus.md: -------------------------------------------------------------------------------- 1 | # SignalSubscriberStatus 2 | 3 | ## Enum 4 | 5 | * `ACTIVE` (value: `"Active"`) 6 | * `ENDED` (value: `"Ended"`) 7 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/assets/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/assets/fonts/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/example_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/example_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-xhdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-xxhdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/avatar_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable/avatar_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/icon_investor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-xxhdpi/icon_investor.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/icon_investor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-xxxhdpi/icon_investor.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/icon_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-xxxhdpi/icon_manager.png -------------------------------------------------------------------------------- /apiClient/docs/AppPlatform.md: -------------------------------------------------------------------------------- 1 | # AppPlatform 2 | 3 | ## Enum 4 | 5 | * `IOS` (value: `"IOs"`) 6 | * `ANDROID` (value: `"Android"`) 7 | * `WEB` (value: `"Web"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceFuturesMarginType.md: -------------------------------------------------------------------------------- 1 | # BinanceFuturesMarginType 2 | 3 | ## Enum 4 | 5 | * `ISOLATED` (value: `"Isolated"`) 6 | * `CROSS` (value: `"Cross"`) 7 | -------------------------------------------------------------------------------- /apiClient/docs/CaptchaType.md: -------------------------------------------------------------------------------- 1 | # CaptchaType 2 | 3 | ## Enum 4 | 5 | * `NONE` (value: `"None"`) 6 | * `POW` (value: `"Pow"`) 7 | * `GEETEST` (value: `"GeeTest"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/InvestmentRequestType.md: -------------------------------------------------------------------------------- 1 | # InvestmentRequestType 2 | 3 | ## Enum 4 | 5 | * `INVEST` (value: `"Invest"`) 6 | * `WITHDRAWAL` (value: `"Withdrawal"`) 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/logo_green_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/logo_green_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/tfa_tutorial_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/tfa_tutorial_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/tfa_tutorial_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/tfa_tutorial_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/tfa_tutorial_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/tfa_tutorial_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/tfa_tutorial_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/tfa_tutorial_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-xxxhdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/avatar_placeholder_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable/avatar_placeholder_big.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/dotted_vertical_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable/dotted_vertical_line.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_investor_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-hdpi/icon_investor_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_manager_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-hdpi/icon_manager_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/icon_investor_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-mdpi/icon_investor_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/icon_manager_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-mdpi/icon_manager_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/icon_manager_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-xhdpi/icon_manager_round.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_program_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable/icon_program_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/icon_investor_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-xhdpi/icon_investor_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/icon_investor_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-xxhdpi/icon_investor_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/icon_manager_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-xxhdpi/icon_manager_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/icon_manager_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-xxxhdpi/icon_manager_round.png -------------------------------------------------------------------------------- /apiClient/docs/GeeTestResult.md: -------------------------------------------------------------------------------- 1 | # GeeTestResult 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | -------------------------------------------------------------------------------- /apiClient/docs/RouteType.md: -------------------------------------------------------------------------------- 1 | # RouteType 2 | 3 | ## Enum 4 | 5 | * `UNDEFINED` (value: `"Undefined"`) 6 | * `LOGIN` (value: `"Login"`) 7 | * `WITHDRAW` (value: `"Withdraw"`) 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/profile_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/profile_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/icon_investor_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/mipmap-xxxhdpi/icon_investor_round.png -------------------------------------------------------------------------------- /apiClient/docs/AssetGlobalType.md: -------------------------------------------------------------------------------- 1 | # AssetGlobalType 2 | 3 | ## Enum 4 | 5 | * `PROGRAM` (value: `"Program"`) 6 | * `FUND` (value: `"Fund"`) 7 | * `FOLLOW` (value: `"Follow"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinancePositionSide.md: -------------------------------------------------------------------------------- 1 | # BinancePositionSide 2 | 3 | ## Enum 4 | 5 | * `SHORT` (value: `"Short"`) 6 | * `LONG` (value: `"Long"`) 7 | * `BOTH` (value: `"Both"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/EventGroupType.md: -------------------------------------------------------------------------------- 1 | # EventGroupType 2 | 3 | ## Enum 4 | 5 | * `INVESTMENTHISTORY` (value: `"InvestmentHistory"`) 6 | * `TRADINGHISTORY` (value: `"TradingHistory"`) 7 | -------------------------------------------------------------------------------- /apiClient/docs/GeeTestDetails.md: -------------------------------------------------------------------------------- 1 | # GeeTestDetails 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | -------------------------------------------------------------------------------- /apiClient/docs/UsersFilterTimeframe.md: -------------------------------------------------------------------------------- 1 | # UsersFilterTimeframe 2 | 3 | ## Enum 4 | 5 | * `DAY` (value: `"Day"`) 6 | * `WEEK` (value: `"Week"`) 7 | * `MONTH` (value: `"Month"`) 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_program_placeholder_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable/icon_program_placeholder_big.png -------------------------------------------------------------------------------- /app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /apiClient/docs/PeriodStatus.md: -------------------------------------------------------------------------------- 1 | # PeriodStatus 2 | 3 | ## Enum 4 | 5 | * `PLANNED` (value: `"Planned"`) 6 | * `INPROCCESS` (value: `"InProccess"`) 7 | * `CLOSED` (value: `"Closed"`) 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_authenticator_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/google_authenticator_icon.png -------------------------------------------------------------------------------- /apiClient/docs/BinanceFuturesMarginChangeDirectionType.md: -------------------------------------------------------------------------------- 1 | # BinanceFuturesMarginChangeDirectionType 2 | 3 | ## Enum 4 | 5 | * `ADD` (value: `"Add"`) 6 | * `REDUCE` (value: `"Reduce"`) 7 | -------------------------------------------------------------------------------- /apiClient/docs/SubscriptionMode.md: -------------------------------------------------------------------------------- 1 | # SubscriptionMode 2 | 3 | ## Enum 4 | 5 | * `BYBALANCE` (value: `"ByBalance"`) 6 | * `PERCENT` (value: `"Percent"`) 7 | * `FIXED` (value: `"Fixed"`) 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/splashscreen_background_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/splashscreen_background_dark.png -------------------------------------------------------------------------------- /apiClient/docs/BetaTestingType.md: -------------------------------------------------------------------------------- 1 | # BetaTestingType 2 | 3 | ## Enum 4 | 5 | * `NONE` (value: `"None"`) 6 | * `SOCIAL` (value: `"Social"`) 7 | * `TRADINGTERMINAL` (value: `"TradingTerminal"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRateLimitInterval.md: -------------------------------------------------------------------------------- 1 | # BinanceRateLimitInterval 2 | 3 | ## Enum 4 | 5 | * `SECOND` (value: `"Second"`) 6 | * `MINUTE` (value: `"Minute"`) 7 | * `DAY` (value: `"Day"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/ChangeState.md: -------------------------------------------------------------------------------- 1 | # ChangeState 2 | 3 | ## Enum 4 | 5 | * `NOTCHANGED` (value: `"NotChanged"`) 6 | * `INCREASED` (value: `"Increased"`) 7 | * `DECREASED` (value: `"Decreased"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/TradeEntryType.md: -------------------------------------------------------------------------------- 1 | # TradeEntryType 2 | 3 | ## Enum 4 | 5 | * `IN` (value: `"In"`) 6 | * `OUT` (value: `"Out"`) 7 | * `INOUT` (value: `"InOut"`) 8 | * `OUTBY` (value: `"OutBy"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/AssetType.md: -------------------------------------------------------------------------------- 1 | # AssetType 2 | 3 | ## Enum 4 | 5 | * `NONE` (value: `"None"`) 6 | * `PROGRAM` (value: `"Program"`) 7 | * `FUND` (value: `"Fund"`) 8 | * `FOLLOW` (value: `"Follow"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawRateLimitInterval.md: -------------------------------------------------------------------------------- 1 | # BinanceRawRateLimitInterval 2 | 3 | ## Enum 4 | 5 | * `SECOND` (value: `"Second"`) 6 | * `MINUTE` (value: `"Minute"`) 7 | * `DAY` (value: `"Day"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceOrderResponseType.md: -------------------------------------------------------------------------------- 1 | # BinanceOrderResponseType 2 | 3 | ## Enum 4 | 5 | * `ACKNOWLEDGE` (value: `"Acknowledge"`) 6 | * `RESULT` (value: `"Result"`) 7 | * `FULL` (value: `"Full"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/ImageQuality.md: -------------------------------------------------------------------------------- 1 | # ImageQuality 2 | 3 | ## Enum 4 | 5 | * `LOW` (value: `"Low"`) 6 | * `MEDIUM` (value: `"Medium"`) 7 | * `HIGH` (value: `"High"`) 8 | * `ORIGINAL` (value: `"Original"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/InvestmentEventLocation.md: -------------------------------------------------------------------------------- 1 | # InvestmentEventLocation 2 | 3 | ## Enum 4 | 5 | * `ASSET` (value: `"Asset"`) 6 | * `DASHBOARD` (value: `"Dashboard"`) 7 | * `EVENTSALL` (value: `"EventsAll"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/TradingPlatformBinanceOrdersMode.md: -------------------------------------------------------------------------------- 1 | # TradingPlatformBinanceOrdersMode 2 | 3 | ## Enum 4 | 5 | * `TRADEHISTORY` (value: `"TradeHistory"`) 6 | * `ORDERHISTORY` (value: `"OrderHistory"`) 7 | -------------------------------------------------------------------------------- /apiClient/docs/AssetFilterType.md: -------------------------------------------------------------------------------- 1 | # AssetFilterType 2 | 3 | ## Enum 4 | 5 | * `ALL` (value: `"All"`) 6 | * `PROGRAM` (value: `"Program"`) 7 | * `FUND` (value: `"Fund"`) 8 | * `FOLLOW` (value: `"Follow"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawOrderResponseType.md: -------------------------------------------------------------------------------- 1 | # BinanceRawOrderResponseType 2 | 3 | ## Enum 4 | 5 | * `ACKNOWLEDGE` (value: `"Acknowledge"`) 6 | * `RESULT` (value: `"Result"`) 7 | * `FULL` (value: `"Full"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardTradingAssetStatus.md: -------------------------------------------------------------------------------- 1 | # DashboardTradingAssetStatus 2 | 3 | ## Enum 4 | 5 | * `PENDING` (value: `"Pending"`) 6 | * `ACTIVE` (value: `"Active"`) 7 | * `DISABLED` (value: `"Disabled"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/ManagerOverview.md: -------------------------------------------------------------------------------- 1 | 2 | # ManagerOverview 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /apiClient/docs/PasswordModel.md: -------------------------------------------------------------------------------- 1 | # PasswordModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **password** | **String** | | 7 | -------------------------------------------------------------------------------- /apiClient/docs/PlatformUrlType.md: -------------------------------------------------------------------------------- 1 | # PlatformUrlType 2 | 3 | ## Enum 4 | 5 | * `PROGRAM` (value: `"Program"`) 6 | * `FUND` (value: `"Fund"`) 7 | * `FOLLOW` (value: `"Follow"`) 8 | * `USER` (value: `"User"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/RateModel.md: -------------------------------------------------------------------------------- 1 | # RateModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **rate** | **Double** | | [optional] 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/splashscreen_background_dark_with_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenesisVision/android-client/HEAD/app/src/main/res/drawable-nodpi/splashscreen_background_dark_with_logo.png -------------------------------------------------------------------------------- /apiClient/docs/BinanceRateLimitType.md: -------------------------------------------------------------------------------- 1 | # BinanceRateLimitType 2 | 3 | ## Enum 4 | 5 | * `REQUESTWEIGHT` (value: `"RequestWeight"`) 6 | * `ORDERS` (value: `"Orders"`) 7 | * `RAWREQUESTS` (value: `"RawRequests"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/IdModel.md: -------------------------------------------------------------------------------- 1 | # IdModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | [**UUID**](UUID.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/PowResult.md: -------------------------------------------------------------------------------- 1 | # PowResult 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **prefix** | **String** | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/TimestampDate.md: -------------------------------------------------------------------------------- 1 | # TimestampDate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **date** | **Long** | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/AssetProvider.md: -------------------------------------------------------------------------------- 1 | # AssetProvider 2 | 3 | ## Enum 4 | 5 | * `UNDEFINED` (value: `"Undefined"`) 6 | * `BINANCE` (value: `"Binance"`) 7 | * `HUOBI` (value: `"Huobi"`) 8 | * `NASDAQ` (value: `"Nasdaq"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawRateLimitType.md: -------------------------------------------------------------------------------- 1 | # BinanceRawRateLimitType 2 | 3 | ## Enum 4 | 5 | * `REQUESTWEIGHT` (value: `"RequestWeight"`) 6 | * `ORDERS` (value: `"Orders"`) 7 | * `RAWREQUESTS` (value: `"RawRequests"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/Body.md: -------------------------------------------------------------------------------- 1 | # Body 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **uploadedFile** | [**File**](File.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/MoneyLocationType.md: -------------------------------------------------------------------------------- 1 | # MoneyLocationType 2 | 3 | ## Enum 4 | 5 | * `PROGRAMS` (value: `"Programs"`) 6 | * `FUNDS` (value: `"Funds"`) 7 | * `TRADING` (value: `"Trading"`) 8 | * `WALLET` (value: `"Wallet"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/SignalDetachMode.md: -------------------------------------------------------------------------------- 1 | # SignalDetachMode 2 | 3 | ## Enum 4 | 5 | * `NONE` (value: `"None"`) 6 | * `PROVIDERCLOSEONLY` (value: `"ProviderCloseOnly"`) 7 | * `CLOSEALLIMMEDIATELY` (value: `"CloseAllImmediately"`) 8 | -------------------------------------------------------------------------------- /apiClient/docs/UploadResult.md: -------------------------------------------------------------------------------- 1 | # UploadResult 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | [**UUID**](UUID.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawAccountType.md: -------------------------------------------------------------------------------- 1 | # BinanceRawAccountType 2 | 3 | ## Enum 4 | 5 | * `SPOT` (value: `"Spot"`) 6 | * `MARGIN` (value: `"Margin"`) 7 | * `FUTURES` (value: `"Futures"`) 8 | * `LEVERAGED` (value: `"Leveraged"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/Enums.md: -------------------------------------------------------------------------------- 1 | # Enums 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **event** | [**EventFilters**](EventFilters.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/TradingAccountPermission.md: -------------------------------------------------------------------------------- 1 | # TradingAccountPermission 2 | 3 | ## Enum 4 | 5 | * `NONE` (value: `"None"`) 6 | * `SPOT` (value: `"Spot"`) 7 | * `MARGIN` (value: `"Margin"`) 8 | * `FUTURES` (value: `"Futures"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/UserFeedMode.md: -------------------------------------------------------------------------------- 1 | # UserFeedMode 2 | 3 | ## Enum 4 | 5 | * `PROFILEPOSTS` (value: `"ProfilePosts"`) 6 | * `PROFILEONLYOWNERPOSTS` (value: `"ProfileOnlyOwnerPosts"`) 7 | * `FRIENDSPOSTS` (value: `"FriendsPosts"`) 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | /.idea 3 | .gradle 4 | /local.properties 5 | /genesisvision.properties 6 | /.idea/workspace.xml 7 | /.idea/libraries 8 | .DS_Store 9 | /build 10 | /captures 11 | .externalNativeBuild 12 | /app/investor/ 13 | -------------------------------------------------------------------------------- /apiClient/docs/TwoFactorStatus.md: -------------------------------------------------------------------------------- 1 | # TwoFactorStatus 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **twoFactorEnabled** | **Boolean** | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/InvestmentRequestStatus.md: -------------------------------------------------------------------------------- 1 | # InvestmentRequestStatus 2 | 3 | ## Enum 4 | 5 | * `NEW` (value: `"New"`) 6 | * `EXECUTED` (value: `"Executed"`) 7 | * `CANCELLED` (value: `"Cancelled"`) 8 | * `PENDING` (value: `"Pending"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/MultiWalletTransactionStatus.md: -------------------------------------------------------------------------------- 1 | # MultiWalletTransactionStatus 2 | 3 | ## Enum 4 | 5 | * `DONE` (value: `"Done"`) 6 | * `PENDING` (value: `"Pending"`) 7 | * `CANCELED` (value: `"Canceled"`) 8 | * `ERROR` (value: `"Error"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/TransactionExternalType.md: -------------------------------------------------------------------------------- 1 | # TransactionExternalType 2 | 3 | ## Enum 4 | 5 | * `ALL` (value: `"All"`) 6 | * `WITHDRAWAL` (value: `"Withdrawal"`) 7 | * `DEPOSIT` (value: `"Deposit"`) 8 | * `PLATFORM` (value: `"Platform"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/TwoFactorCodeModel.md: -------------------------------------------------------------------------------- 1 | # TwoFactorCodeModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **twoFactorCode** | **String** | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/BrokersInfo.md: -------------------------------------------------------------------------------- 1 | # BrokersInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **brokers** | [**List<Broker>**](Broker.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/PlatformCommissionInfo.md: -------------------------------------------------------------------------------- 1 | # PlatformCommissionInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **investment** | **Double** | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramInfo.md: -------------------------------------------------------------------------------- 1 | 2 | # ProgramInfo 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **title** | **String** | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/Tag.md: -------------------------------------------------------------------------------- 1 | # Tag 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **String** | | [optional] 7 | **color** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/TradingAccountDemoDeposit.md: -------------------------------------------------------------------------------- 1 | # TradingAccountDemoDeposit 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **amount** | **Double** | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/PostLink.md: -------------------------------------------------------------------------------- 1 | # PostLink 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | **String** | | [optional] 7 | **url** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramTag.md: -------------------------------------------------------------------------------- 1 | # ProgramTag 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **String** | | [optional] 7 | **color** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/RateItem.md: -------------------------------------------------------------------------------- 1 | # RateItem 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **currency** | **String** | | [optional] 7 | **rate** | **Double** | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_levels_limits.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_in_requests.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_white_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /apiClient/docs/ButtonAction.md: -------------------------------------------------------------------------------- 1 | # ButtonAction 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | **String** | | [optional] 7 | **url** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/FilterModel.md: -------------------------------------------------------------------------------- 1 | # FilterModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **key** | **String** | | [optional] 7 | **title** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ImageLocation.md: -------------------------------------------------------------------------------- 1 | # ImageLocation 2 | 3 | ## Enum 4 | 5 | * `DEFAULT` (value: `"Default"`) 6 | * `ASSET` (value: `"Asset"`) 7 | * `FUNDASSET` (value: `"FundAsset"`) 8 | * `USER` (value: `"User"`) 9 | * `SOCIAL` (value: `"Social"`) 10 | -------------------------------------------------------------------------------- /apiClient/docs/PlatformEvents.md: -------------------------------------------------------------------------------- 1 | # PlatformEvents 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **events** | [**List<PlatformEvent>**](PlatformEvent.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramsLevelsInfo.md: -------------------------------------------------------------------------------- 1 | # ProgramsLevelsInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **levels** | [**List<LevelInfo>**](LevelInfo.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/RatesModel.md: -------------------------------------------------------------------------------- 1 | # RatesModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **rates** | [**Map<String, List<RateItem>>**](List.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/TickerChart.md: -------------------------------------------------------------------------------- 1 | # TickerChart 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **chart** | [**List<SimpleChartPoint>**](SimpleChartPoint.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/UserVerificationStatus.md: -------------------------------------------------------------------------------- 1 | # UserVerificationStatus 2 | 3 | ## Enum 4 | 5 | * `NOTVERIFIED` (value: `"NotVerified"`) 6 | * `VERIFIED` (value: `"Verified"`) 7 | * `UNDERREVIEW` (value: `"UnderReview"`) 8 | * `REJECTED` (value: `"Rejected"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/UtmSource.md: -------------------------------------------------------------------------------- 1 | # UtmSource 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **urlParams** | **String** | | [optional] 7 | **referer** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/button_in_requests.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_primary.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/pin_code_dot_selected.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardAssets.md: -------------------------------------------------------------------------------- 1 | # DashboardAssets 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **assets** | [**List<DashboardAsset>**](DashboardAsset.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **message** | **String** | | [optional] 7 | **property** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/FilterItemInfo.md: -------------------------------------------------------------------------------- 1 | # FilterItemInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **key** | **String** | | [optional] 7 | **title** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/LevelInfo.md: -------------------------------------------------------------------------------- 1 | # LevelInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **level** | **Integer** | | [optional] 7 | **investmentLimit** | **Double** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/NewPostImage.md: -------------------------------------------------------------------------------- 1 | # NewPostImage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **image** | **String** | | [optional] 7 | **position** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/RecoveryCode.md: -------------------------------------------------------------------------------- 1 | # RecoveryCode 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **String** | | [optional] 7 | **isActive** | **Boolean** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/SimpleChartPoint.md: -------------------------------------------------------------------------------- 1 | # SimpleChartPoint 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **date** | **Long** | | [optional] 7 | **value** | **Double** | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/pin_code_dot_error.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /apiClient/docs/FundAssetPart.md: -------------------------------------------------------------------------------- 1 | # FundAssetPart 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | [**UUID**](UUID.md) | | [optional] 7 | **percent** | **Double** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/NotificationSettingConditionType.md: -------------------------------------------------------------------------------- 1 | # NotificationSettingConditionType 2 | 3 | ## Enum 4 | 5 | * `EMPTY` (value: `"Empty"`) 6 | * `PROFIT` (value: `"Profit"`) 7 | * `LEVEL` (value: `"Level"`) 8 | * `AVAILABLETOINVEST` (value: `"AvailableToInvest"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/SignMessage.md: -------------------------------------------------------------------------------- 1 | # SignMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **message** | **String** | | [optional] 7 | **id** | [**UUID**](UUID.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/SignalDataMaster.md: -------------------------------------------------------------------------------- 1 | # SignalDataMaster 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **login** | **String** | | [optional] 7 | **share** | **Double** | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/pin_code_dot_selected.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/program_list_item_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /apiClient/docs/ChartSimple.md: -------------------------------------------------------------------------------- 1 | # ChartSimple 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **value** | **Double** | | [optional] 7 | **date** | [**DateTime**](DateTime.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardChart.md: -------------------------------------------------------------------------------- 1 | # DashboardChart 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **charts** | [**List<DashboardAssetChart>**](DashboardAssetChart.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardPortfolio.md: -------------------------------------------------------------------------------- 1 | # DashboardPortfolio 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **distribution** | [**List<MoneyLocation>**](MoneyLocation.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardTradingAssetSignalDetails.md: -------------------------------------------------------------------------------- 1 | # DashboardTradingAssetSignalDetails 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **subscribersCount** | **Integer** | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/IOsAppVersion.md: -------------------------------------------------------------------------------- 1 | # IOsAppVersion 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **minVersion** | **String** | | [optional] 7 | **lastVersion** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/TransactionDetail.md: -------------------------------------------------------------------------------- 1 | # TransactionDetail 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | **String** | | [optional] 7 | **details** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/WalletDepositSummary.md: -------------------------------------------------------------------------------- 1 | # WalletDepositSummary 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **wallets** | [**List<WalletDeposit>**](WalletDeposit.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/WalletMultiAvailable.md: -------------------------------------------------------------------------------- 1 | # WalletMultiAvailable 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **wallets** | [**List<WalletBaseData>**](WalletBaseData.md) | | [optional] 7 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/ShowFundsListEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 25/12/2019. 6 | */ 7 | public class ShowFundsListEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /apiClient/docs/AndroidVersion.md: -------------------------------------------------------------------------------- 1 | # AndroidVersion 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **versionCode** | **String** | | [optional] 7 | **versionName** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardAssetType.md: -------------------------------------------------------------------------------- 1 | # DashboardAssetType 2 | 3 | ## Enum 4 | 5 | * `PROGRAM` (value: `"Program"`) 6 | * `FUND` (value: `"Fund"`) 7 | * `PUBLICTRADINGACCOUNT` (value: `"PublicTradingAccount"`) 8 | * `PRIVATETRADINGACCOUNT` (value: `"PrivateTradingAccount"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/DetachFromExternalSignalProvider.md: -------------------------------------------------------------------------------- 1 | # DetachFromExternalSignalProvider 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **tradingAccountId** | [**UUID**](UUID.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/ExchangeCredentials.md: -------------------------------------------------------------------------------- 1 | # ExchangeCredentials 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **apiKey** | **String** | | [optional] 7 | **apiSecret** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/NewManager.md: -------------------------------------------------------------------------------- 1 | 2 | # NewManager 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **requestId** | [**UUID**](UUID.md) | | 8 | **login** | **String** | | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/OrderModelSignalData.md: -------------------------------------------------------------------------------- 1 | # OrderModelSignalData 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **masters** | [**List<SignalDataMaster>**](SignalDataMaster.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramPwdUpdate.md: -------------------------------------------------------------------------------- 1 | # ProgramPwdUpdate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **password** | **String** | | [optional] 7 | **twoFactorCode** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/Timeframe.md: -------------------------------------------------------------------------------- 1 | # Timeframe 2 | 3 | ## Enum 4 | 5 | * `DAY` (value: `"Day"`) 6 | * `WEEK` (value: `"Week"`) 7 | * `MONTH` (value: `"Month"`) 8 | * `THREEMONTHS` (value: `"ThreeMonths"`) 9 | * `YEAR` (value: `"Year"`) 10 | * `ALLTIME` (value: `"AllTime"`) 11 | -------------------------------------------------------------------------------- /apiClient/docs/WalletsInfo.md: -------------------------------------------------------------------------------- 1 | 2 | # WalletsInfo 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **wallets** | [**List<WalletInfo>**](WalletInfo.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnNewPostCreatedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 13/08/2020. 6 | */ 7 | public class OnNewPostCreatedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnNewPostEditedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 13/08/2020. 6 | */ 7 | public class OnNewPostEditedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnThemeChangedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 20/07/2018. 6 | */ 7 | public class OnThemeChangedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/SetupTfaFinishedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 29/10/2018. 6 | */ 7 | public class SetupTfaFinishedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/ShowAssetsListEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 19/10/2021. 6 | */ 7 | public class ShowAssetsListEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/ShowLockScreenEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 20/06/2018. 6 | */ 7 | public class ShowLockScreenEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/ShowProgramsListEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 25/12/2019. 6 | */ 7 | public class ShowProgramsListEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardChartAssets.md: -------------------------------------------------------------------------------- 1 | # DashboardChartAssets 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **assets** | [**List<DashboardChartAsset>**](DashboardChartAsset.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/FcmTokenViewModel.md: -------------------------------------------------------------------------------- 1 | # FcmTokenViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **token** | **String** | | 7 | **platform** | [**AppPlatform**](AppPlatform.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/FundFilters.md: -------------------------------------------------------------------------------- 1 | 2 | # FundFilters 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **assets** | [**List<PlatformAsset>**](PlatformAsset.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/FundOwnerActions.md: -------------------------------------------------------------------------------- 1 | # FundOwnerActions 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **canClose** | **Boolean** | | [optional] 7 | **canReallocate** | **Boolean** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/Invest.md: -------------------------------------------------------------------------------- 1 | 2 | # Invest 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **investmentProgramId** | [**UUID**](UUID.md) | | 8 | **amount** | **Double** | | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramAssetDetails.md: -------------------------------------------------------------------------------- 1 | # ProgramAssetDetails 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **level** | **Integer** | | [optional] 7 | **levelProgress** | **Double** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ReferralFriend.md: -------------------------------------------------------------------------------- 1 | # ReferralFriend 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **date** | [**DateTime**](DateTime.md) | | [optional] 7 | **emailMask** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/UpdateProfileViewModel.md: -------------------------------------------------------------------------------- 1 | # UpdateProfileViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **userName** | **String** | | [optional] 7 | **about** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/WalletStatistic.md: -------------------------------------------------------------------------------- 1 | 2 | # WalletStatistic 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **chart** | [**List<DateChart>**](DateChart.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnCheckTfaSuccessEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 06/06/2018. 6 | */ 7 | public class OnCheckTfaSuccessEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnRequestCancelledEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 30/10/2018. 6 | */ 7 | public class OnRequestCancelledEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnStartKycClickedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 05/11/2020. 6 | */ 7 | public class OnStartKycClickedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /apiClient/docs/AssetInvestmentStatus.md: -------------------------------------------------------------------------------- 1 | # AssetInvestmentStatus 2 | 3 | ## Enum 4 | 5 | * `PENDING` (value: `"Pending"`) 6 | * `ACTIVE` (value: `"Active"`) 7 | * `INVESTING` (value: `"Investing"`) 8 | * `WITHDRAWING` (value: `"Withdrawing"`) 9 | * `ENDED` (value: `"Ended"`) 10 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawOrderBookEntry.md: -------------------------------------------------------------------------------- 1 | # BinanceRawOrderBookEntry 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **price** | **Double** | | [optional] 7 | **quantity** | **Double** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardRecommendations.md: -------------------------------------------------------------------------------- 1 | # DashboardRecommendations 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **assets** | [**List<RecommendedAsset>**](RecommendedAsset.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/LevelUpSummary.md: -------------------------------------------------------------------------------- 1 | 2 | # LevelUpSummary 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **levelData** | [**List<LevelUpData>**](LevelUpData.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/SignalTradingEvent.md: -------------------------------------------------------------------------------- 1 | # SignalTradingEvent 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **date** | [**DateTime**](DateTime.md) | | [optional] 7 | **message** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/SocialLinksViewModel.md: -------------------------------------------------------------------------------- 1 | # SocialLinksViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **socialLinks** | [**List<SocialLinkViewModel>**](SocialLinkViewModel.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/StringItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # StringItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | **List<String>** | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/HideBottomNavigationEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 17/09/2018. 6 | */ 7 | public class HideBottomNavigationEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnBrowseFundsClickedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 30/10/2018. 6 | */ 7 | public class OnBrowseFundsClickedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnBrowseProgramsClickedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVision 5 | * Created by Vitaly on 1/19/18. 6 | */ 7 | 8 | public class OnBrowseProgramsClickedEvent 9 | { 10 | } 11 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnCardDepositFinishedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 01/09/2020. 6 | */ 7 | public class OnCardDepositFinishedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnInRequestsClickedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 19/09/2018. 6 | */ 7 | public class OnInRequestsClickedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnShowMediaActivityEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 15/07/2020. 6 | */ 7 | public class OnShowMediaActivityEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnSubscribedToProgramEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 26/06/2019. 6 | */ 7 | public class OnSubscribedToProgramEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/ShowSetupTfaActivityEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 30/05/2018. 6 | */ 7 | public class ShowSetupTfaActivityEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /apiClient/docs/AmountWithCurrency.md: -------------------------------------------------------------------------------- 1 | # AmountWithCurrency 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **amount** | **Double** | | [optional] 7 | **currency** | [**Currency**](Currency.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawSymbolFilter.md: -------------------------------------------------------------------------------- 1 | # BinanceRawSymbolFilter 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **filterType** | [**BinanceRawSymbolFilterType**](BinanceRawSymbolFilterType.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawTimeInForce.md: -------------------------------------------------------------------------------- 1 | # BinanceRawTimeInForce 2 | 3 | ## Enum 4 | 5 | * `GOODTILLCANCEL` (value: `"GoodTillCancel"`) 6 | * `IMMEDIATEORCANCEL` (value: `"ImmediateOrCancel"`) 7 | * `FILLORKILL` (value: `"FillOrKill"`) 8 | * `GOODTILLCROSSING` (value: `"GoodTillCrossing"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardTimeframeProfit.md: -------------------------------------------------------------------------------- 1 | # DashboardTimeframeProfit 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **profit** | **Double** | | [optional] 7 | **profitPercent** | **Double** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/PersonalFundDetailsList.md: -------------------------------------------------------------------------------- 1 | # PersonalFundDetailsList 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **isOwnAsset** | **Boolean** | | [optional] 7 | **isFavorite** | **Boolean** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/PlatformUrlInfo.md: -------------------------------------------------------------------------------- 1 | # PlatformUrlInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **type** | [**PlatformUrlType**](PlatformUrlType.md) | | [optional] 7 | **url** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/PostItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # PostItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<Post>**](Post.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/TradingAccountPwdUpdate.md: -------------------------------------------------------------------------------- 1 | # TradingAccountPwdUpdate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **password** | **String** | | [optional] 7 | **twoFactorCode** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/TwoFactorAuthenticator.md: -------------------------------------------------------------------------------- 1 | # TwoFactorAuthenticator 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **sharedKey** | **String** | | [optional] 7 | **authenticatorUri** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/WalletDeposit.md: -------------------------------------------------------------------------------- 1 | # WalletDeposit 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **currency** | [**Currency**](Currency.md) | | [optional] 7 | **depositAddress** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnShowUsersListActivityEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 31/07/2020. 6 | */ 7 | public class OnShowUsersListActivityEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnUnauthorizedResponseGetEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVision 5 | * Created by Vitaly on 1/29/18. 6 | */ 7 | 8 | public class OnUnauthorizedResponseGetEvent 9 | { 10 | } 11 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/ShowDisableTfaActivityEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 30/05/2018. 6 | */ 7 | public class ShowDisableTfaActivityEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/ShowSetupTfaSecondStepEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 30/05/2018. 6 | */ 7 | public class ShowSetupTfaSecondStepEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/ui/common/BackButtonListener.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.ui.common; 2 | 3 | /** 4 | * GenesisVision 5 | * Created by Vitaly on 1/24/18. 6 | */ 7 | 8 | public interface BackButtonListener 9 | { 10 | boolean onBackPressed(); 11 | } -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_count_active.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_count_inactive.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_providers_count.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Aug 23 12:56:14 MSK 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip 7 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawFuturesPositionMode.md: -------------------------------------------------------------------------------- 1 | # BinanceRawFuturesPositionMode 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **positionMode** | [**BinancePositionMode**](BinancePositionMode.md) | | [optional] 7 | -------------------------------------------------------------------------------- /apiClient/docs/ExchangeCredentialsIpInfo.md: -------------------------------------------------------------------------------- 1 | # ExchangeCredentialsIpInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **ip** | **String** | | [optional] 7 | **date** | [**DateTime**](DateTime.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/FundAssetsListInfo.md: -------------------------------------------------------------------------------- 1 | 2 | # FundAssetsListInfo 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **assets** | [**List<FundAssetInfo>**](FundAssetInfo.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/InvestToProgram.md: -------------------------------------------------------------------------------- 1 | 2 | # InvestToProgram 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **investmentProgramId** | [**UUID**](UUID.md) | | 8 | **amount** | **Double** | | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/NewOpenTradesEvent.md: -------------------------------------------------------------------------------- 1 | 2 | # NewOpenTradesEvent 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **openTrades** | [**List<ManagerOpenTrades>**](ManagerOpenTrades.md) | | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/PersonalFollowDetailsList.md: -------------------------------------------------------------------------------- 1 | # PersonalFollowDetailsList 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **isOwnAsset** | **Boolean** | | [optional] 7 | **isFavorite** | **Boolean** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/PostImage.md: -------------------------------------------------------------------------------- 1 | # PostImage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **String** | | [optional] 7 | **resizes** | [**List<PostImageResize>**](PostImageResize.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/PrivateTradingAccountType.md: -------------------------------------------------------------------------------- 1 | # PrivateTradingAccountType 2 | 3 | ## Enum 4 | 5 | * `NONE` (value: `"None"`) 6 | * `TRADINGACCOUNT` (value: `"TradingAccount"`) 7 | * `EXCHANGEACCOUNT` (value: `"ExchangeAccount"`) 8 | * `EXTERNALTRADINGACCOUNT` (value: `"ExternalTradingAccount"`) 9 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramMinimumDeposit.md: -------------------------------------------------------------------------------- 1 | 2 | # ProgramMinimumDeposit 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **minimumDepositsAmount** | **Map<String, Double>** | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/TradesChartViewModel.md: -------------------------------------------------------------------------------- 1 | 2 | # TradesChartViewModel 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **chart** | [**List<TradeChart>**](TradeChart.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/TransactionDetailsActions.md: -------------------------------------------------------------------------------- 1 | # TransactionDetailsActions 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **canResend** | **Boolean** | | [optional] 7 | **canCancel** | **Boolean** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/WalletsViewModel.md: -------------------------------------------------------------------------------- 1 | 2 | # WalletsViewModel 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **wallets** | [**List<WalletViewModel>**](WalletViewModel.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnFinishAddAssetActivityEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 28/10/2019. 6 | */ 7 | public class OnFinishAddAssetActivityEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnProfilePublicInfoFilledEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 25/12/2019. 6 | */ 7 | public class OnProfilePublicInfoFilledEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnSelectBrokerNextClickedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 22/01/2020. 6 | */ 7 | public class OnSelectBrokerNextClickedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/SetupTfaBackButtonClickedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 01/06/2018. 6 | */ 7 | public class SetupTfaBackButtonClickedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/SetupTfaNextButtonClickedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 01/06/2018. 6 | */ 7 | public class SetupTfaNextButtonClickedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/res/anim/tooltip_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/background_date.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/background_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_date.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_pin_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_pin_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawFuturesCancelAllOrders.md: -------------------------------------------------------------------------------- 1 | # BinanceRawFuturesCancelAllOrders 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **Integer** | | [optional] 7 | **message** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardTradingAssetCredentials.md: -------------------------------------------------------------------------------- 1 | # DashboardTradingAssetCredentials 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **apiKey** | **String** | | [optional] 7 | **apiSecret** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/DateChart.md: -------------------------------------------------------------------------------- 1 | 2 | # DateChart 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **amount** | **Double** | | [optional] 8 | **date** | [**DateTime**](DateTime.md) | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/TradeChart.md: -------------------------------------------------------------------------------- 1 | 2 | # TradeChart 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **date** | [**DateTime**](DateTime.md) | | [optional] 8 | **profit** | **Double** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue May 17 23:08:05 CST 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip 7 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnDashboardProgramsUpdateEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 13/03/2018. 6 | */ 7 | 8 | public class OnDashboardProgramsUpdateEvent 9 | { 10 | } 11 | -------------------------------------------------------------------------------- /app/src/main/res/anim/fragment_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/button_pin_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/button_pin_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/portfolio_event_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_tag.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_pin_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_stroke.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/portfolio_event_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /apiClient/docs/ChartByDate.md: -------------------------------------------------------------------------------- 1 | 2 | # ChartByDate 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **date** | [**DateTime**](DateTime.md) | | [optional] 8 | **value** | **Double** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/CoinsHistoryEvent.md: -------------------------------------------------------------------------------- 1 | # CoinsHistoryEvent 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **date** | [**DateTime**](DateTime.md) | | [optional] 7 | **trade** | [**CoinsTrade**](CoinsTrade.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardAsset.md: -------------------------------------------------------------------------------- 1 | # DashboardAsset 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **String** | | [optional] 7 | **color** | **String** | | [optional] 8 | **percent** | **Double** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/OefAssetPart.md: -------------------------------------------------------------------------------- 1 | 2 | # OefAssetPart 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **assetId** | [**UUID**](UUID.md) | | [optional] 8 | **assetPart** | **Double** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/PersonalCopyTradingAccountInfo.md: -------------------------------------------------------------------------------- 1 | # PersonalCopyTradingAccountInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **isOwnSignal** | **Boolean** | | [optional] 7 | **isFavorite** | **Boolean** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/RealOefAssetPart.md: -------------------------------------------------------------------------------- 1 | 2 | # RealOefAssetPart 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **assetSymbol** | **String** | | [optional] 8 | **volume** | **Double** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/UpdateSocialLinksViewModel.md: -------------------------------------------------------------------------------- 1 | # UpdateSocialLinksViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **links** | [**List<UpdateSocialLinkViewModel>**](UpdateSocialLinkViewModel.md) | | [optional] 7 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/CreateProgramNextButtonClickedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 04/07/2018. 6 | */ 7 | public class CreateProgramNextButtonClickedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/ProgramsListFiltersAppliedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 21/03/2018. 6 | */ 7 | 8 | public class ProgramsListFiltersAppliedEvent 9 | { 10 | } 11 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/ProgramsListFiltersClearedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 21/03/2018. 6 | */ 7 | 8 | public class ProgramsListFiltersClearedEvent 9 | { 10 | } 11 | -------------------------------------------------------------------------------- /app/src/main/res/anim/fragment_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/button_pin_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/circle_stroke.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_select_currency_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/portfolio_event_dashboard_card.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/tooltip_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /apiClient/docs/AnonymousPlatformInfo.md: -------------------------------------------------------------------------------- 1 | # AnonymousPlatformInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **isInvestingXDaiEnabled** | **Boolean** | | [optional] 7 | **isInvestingBscEnabled** | **Boolean** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/AssetEvent.md: -------------------------------------------------------------------------------- 1 | 2 | # AssetEvent 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **programs** | **List<String>** | | [optional] 8 | **funds** | **List<String>** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/Blockchain.md: -------------------------------------------------------------------------------- 1 | # Blockchain 2 | 3 | ## Enum 4 | 5 | * `NONE` (value: `"None"`) 6 | * `BITCOIN` (value: `"Bitcoin"`) 7 | * `ETHEREUM` (value: `"Ethereum"`) 8 | * `BINANCESMARTCHAIN` (value: `"BinanceSmartChain"`) 9 | * `XDAICHAIN` (value: `"xDaiChain"`) 10 | * `TRON` (value: `"Tron"`) 11 | -------------------------------------------------------------------------------- /apiClient/docs/InvestorAmount.md: -------------------------------------------------------------------------------- 1 | 2 | # InvestorAmount 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **investorId** | [**UUID**](UUID.md) | | [optional] 8 | **amount** | **Double** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/ManagerIpfsHash.md: -------------------------------------------------------------------------------- 1 | 2 | # ManagerIpfsHash 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **managerId** | [**UUID**](UUID.md) | | [optional] 8 | **ipfsHash** | **String** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/MediaPostItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # MediaPostItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<MediaPost>**](MediaPost.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/OpenSignalTradesList.md: -------------------------------------------------------------------------------- 1 | 2 | # OpenSignalTradesList 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **signalTrades** | [**List<OpenSignalTrade>**](OpenSignalTrade.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramCreateAssetPlatformInfo.md: -------------------------------------------------------------------------------- 1 | # ProgramCreateAssetPlatformInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **maxSuccessFee** | **Double** | | [optional] 7 | **maxManagementFee** | **Double** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/TwoFactorAuthenticatorConfirm.md: -------------------------------------------------------------------------------- 1 | # TwoFactorAuthenticatorConfirm 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **password** | **String** | | 7 | **code** | **String** | | 8 | **sharedKey** | **String** | | 9 | -------------------------------------------------------------------------------- /apiClient/docs/UpdateSocialLinkViewModel.md: -------------------------------------------------------------------------------- 1 | # UpdateSocialLinkViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **type** | [**SocialLinkType**](SocialLinkType.md) | | [optional] 7 | **value** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/WalletRowCell.md: -------------------------------------------------------------------------------- 1 | # WalletRowCell 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **first** | [**CurrencyItem**](CurrencyItem.md) | | [optional] 7 | **second** | [**CurrencyItem**](CurrencyItem.md) | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/CreateProgramConfirmButtonClickedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 04/07/2018. 6 | */ 7 | public class CreateProgramConfirmButtonClickedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/res/anim/check_pin_disappear.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/background_select_currency_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/portfolio_event_dashboard_card.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/chart_highlight_circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/currency_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/currency_background_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/currency_btc_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/currency_eth_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/currency_eur_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/currency_usd_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/pin_code_dot_unselected.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/status_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 200 4 | 1 5 | 7 6 | 150 7 | -------------------------------------------------------------------------------- /apiClient/docs/AbsoluteProfitChart.md: -------------------------------------------------------------------------------- 1 | # AbsoluteProfitChart 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **profit** | **Double** | | [optional] 7 | **chart** | [**List<SimpleChartPoint>**](SimpleChartPoint.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/AppVersion.md: -------------------------------------------------------------------------------- 1 | # AppVersion 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **iOS** | [**IOsAppVersion**](IOsAppVersion.md) | | [optional] 7 | **android** | [**AndroidAppVersion**](AndroidAppVersion.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/AssetsPartsChangeRequest.md: -------------------------------------------------------------------------------- 1 | 2 | # AssetsPartsChangeRequest 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **assetsParts** | [**List<FundAssetPart>**](FundAssetPart.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawFuturesChangeMarginTypeResult.md: -------------------------------------------------------------------------------- 1 | # BinanceRawFuturesChangeMarginTypeResult 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **Integer** | | [optional] 7 | **message** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/CoinsAssetItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # CoinsAssetItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<CoinsAsset>**](CoinsAsset.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/InvestmentProgramTxInfo.md: -------------------------------------------------------------------------------- 1 | 2 | # InvestmentProgramTxInfo 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **id** | [**UUID**](UUID.md) | | [optional] 8 | **title** | **String** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/ManagerHistoryIpfsHash.md: -------------------------------------------------------------------------------- 1 | 2 | # ManagerHistoryIpfsHash 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **managersHashes** | [**List<ManagerIpfsHash>**](ManagerIpfsHash.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/TradeAssetData.md: -------------------------------------------------------------------------------- 1 | # TradeAssetData 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **logoUrl** | **String** | | [optional] 7 | **hasAssetInfo** | **Boolean** | | [optional] 8 | **url** | **String** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/TradeDirectionType.md: -------------------------------------------------------------------------------- 1 | # TradeDirectionType 2 | 3 | ## Enum 4 | 5 | * `BUY` (value: `"Buy"`) 6 | * `SELL` (value: `"Sell"`) 7 | * `BALANCE` (value: `"Balance"`) 8 | * `CREDIT` (value: `"Credit"`) 9 | * `UNDEFINED` (value: `"Undefined"`) 10 | * `MANUALBALANCING` (value: `"ManualBalancing"`) 11 | -------------------------------------------------------------------------------- /apiClient/docs/WalletInvestmentProgram.md: -------------------------------------------------------------------------------- 1 | 2 | # WalletInvestmentProgram 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **id** | [**UUID**](UUID.md) | | [optional] 8 | **title** | **String** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnCreateAccountCreateButtonClickedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 21/11/2019. 6 | */ 7 | public class OnCreateAccountCreateButtonClickedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnCreateProgramCreateButtonClickedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 29/11/2019. 6 | */ 7 | public class OnCreateProgramCreateButtonClickedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_to_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/chart_highlight_circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/pin_code_dot_unselected.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/status_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_filters_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_primary_normal_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/fund_asset_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/timeframe_selection.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceAccountType.md: -------------------------------------------------------------------------------- 1 | # BinanceAccountType 2 | 3 | ## Enum 4 | 5 | * `SPOT` (value: `"Spot"`) 6 | * `MARGIN` (value: `"Margin"`) 7 | * `FUTURES` (value: `"Futures"`) 8 | * `LEVERAGED` (value: `"Leveraged"`) 9 | * `TRD_GRP_002` (value: `"TRD_GRP_002"`) 10 | * `TRD_GRP_003` (value: `"TRD_GRP_003"`) 11 | -------------------------------------------------------------------------------- /apiClient/docs/BrokersProgramInfo.md: -------------------------------------------------------------------------------- 1 | # BrokersProgramInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **brokers** | [**List<Broker>**](Broker.md) | | [optional] 7 | **currentAccountTypeId** | [**UUID**](UUID.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ChangeBrokerProgramRequest.md: -------------------------------------------------------------------------------- 1 | # ChangeBrokerProgramRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **newBrokerAccountTypeId** | [**UUID**](UUID.md) | | [optional] 7 | **newLeverage** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ChangePasswordViewModel.md: -------------------------------------------------------------------------------- 1 | # ChangePasswordViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **oldPassword** | **String** | | 7 | **password** | **String** | | 8 | **confirmPassword** | **String** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/CurrencyItem.md: -------------------------------------------------------------------------------- 1 | # CurrencyItem 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **logo** | **String** | | [optional] 7 | **currency** | [**Currency**](Currency.md) | | [optional] 8 | **title** | **String** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/ErrorViewModel.md: -------------------------------------------------------------------------------- 1 | # ErrorViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [**List<ErrorMessage>**](ErrorMessage.md) | | [optional] 7 | **code** | [**ErrorCodes**](ErrorCodes.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ForgotPasswordViewModel.md: -------------------------------------------------------------------------------- 1 | # ForgotPasswordViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **email** | **String** | | 7 | **captchaCheckResult** | [**CaptchaCheckResult**](CaptchaCheckResult.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/FundSets.md: -------------------------------------------------------------------------------- 1 | 2 | # FundSets 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **sets** | [**List<FundFacet>**](FundFacet.md) | | [optional] 8 | **favoritesCount** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/FundsList.md: -------------------------------------------------------------------------------- 1 | 2 | # FundsList 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **funds** | [**List<FundDetails>**](FundDetails.md) | | [optional] 8 | **total** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/RecoveryCodesViewModel.md: -------------------------------------------------------------------------------- 1 | # RecoveryCodesViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **codes** | [**List<RecoveryCode>**](RecoveryCode.md) | | [optional] 7 | **authToken** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/SignalTradingEvents.md: -------------------------------------------------------------------------------- 1 | # SignalTradingEvents 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **events** | [**List<SignalTradingEvent>**](SignalTradingEvent.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/model/events/OnFavoriteTickersSelectAccountClickedEvent.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.model.events; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 23/09/2021. 6 | */ 7 | public class OnFavoriteTickersSelectAccountClickedEvent 8 | { 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/ui/common/BlockScreenHolder.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.ui.common; 2 | 3 | /** 4 | * GenesisVisionAndroid 5 | * Created by Vitaly on 25/06/2018. 6 | */ 7 | public interface BlockScreenHolder 8 | { 9 | void showBlock(); 10 | 11 | void hideBlock(); 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_from_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/background_profit_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/button_filters_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/button_primary_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/fund_asset_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_profit_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_select_currency.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_filters_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_keyboard_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_primary_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_primary_normal_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_primary_normal_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_primary_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/chart_highlight_box_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/date_range_option_selected.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/divider_transparent.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/line_bottomsheet.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/program_list_item_background_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/time_frame_underline.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /apiClient/docs/BalanceChartPoint.md: -------------------------------------------------------------------------------- 1 | # BalanceChartPoint 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **date** | **Long** | | [optional] 7 | **managerFunds** | **Double** | | [optional] 8 | **investorsFunds** | **Double** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/ExchangeAssetItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # ExchangeAssetItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<ExchangeAsset>**](ExchangeAsset.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ExchangeInfoItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # ExchangeInfoItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<ExchangeInfo>**](ExchangeInfo.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelPublicProfile.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelPublicProfile 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<PublicProfile>**](PublicProfile.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelRewardDetails.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelRewardDetails 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<RewardDetails>**](RewardDetails.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/PeriodDate.md: -------------------------------------------------------------------------------- 1 | 2 | # PeriodDate 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **dateFrom** | [**DateTime**](DateTime.md) | | [optional] 8 | **dateTo** | [**DateTime**](DateTime.md) | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/PlatformCurrencyInfo.md: -------------------------------------------------------------------------------- 1 | # PlatformCurrencyInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **String** | | [optional] 7 | **color** | **String** | | [optional] 8 | **minConvertAmount** | **Double** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/PublicProfileItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # PublicProfileItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<PublicProfile>**](PublicProfile.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ResendConfirmationViewModel.md: -------------------------------------------------------------------------------- 1 | # ResendConfirmationViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **email** | **String** | | 7 | **captchaCheckResult** | [**CaptchaCheckResult**](CaptchaCheckResult.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/RewardDetailsItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # RewardDetailsItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<RewardDetails>**](RewardDetails.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ThreeFactorAuthenticatorConfirm.md: -------------------------------------------------------------------------------- 1 | # ThreeFactorAuthenticatorConfirm 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **email** | **String** | | 7 | **code** | **String** | | [optional] 8 | **token** | **String** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/TradesDelay.md: -------------------------------------------------------------------------------- 1 | # TradesDelay 2 | 3 | ## Enum 4 | 5 | * `NONE` (value: `"None"`) 6 | * `FIVEMINUTES` (value: `"FiveMinutes"`) 7 | * `FIFTEENMINUTES` (value: `"FifteenMinutes"`) 8 | * `THIRTYMINUTES` (value: `"ThirtyMinutes"`) 9 | * `ONEHOUR` (value: `"OneHour"`) 10 | * `SIXHOURS` (value: `"SixHours"`) 11 | -------------------------------------------------------------------------------- /apiClient/docs/UsersRealAssets.md: -------------------------------------------------------------------------------- 1 | 2 | # UsersRealAssets 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **usersAssets** | [**Map<String, List<RealOefAssetPart>>**](List.md) | Guid - program id | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/background_profit_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/background_select_currency.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/button_filters_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/button_primary_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/line_bottomsheet.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/program_list_item_background_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/time_frame_underline.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_add_new_post_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/date_range_option_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/date_range_option_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawCancelOrderId.md: -------------------------------------------------------------------------------- 1 | # BinanceRawCancelOrderId 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **String** | | [optional] 7 | **clientOrderId** | **String** | | [optional] 8 | **ocoOrder** | **Boolean** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawPrice.md: -------------------------------------------------------------------------------- 1 | # BinanceRawPrice 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **symbol** | **String** | | [optional] 7 | **price** | **Double** | | [optional] 8 | **timestamp** | [**DateTime**](DateTime.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/Color.md: -------------------------------------------------------------------------------- 1 | # Color 2 | 3 | ## Enum 4 | 5 | * `WHITE` (value: `"White"`) 6 | * `RED` (value: `"Red"`) 7 | * `ORANGE` (value: `"Orange"`) 8 | * `YELLOW` (value: `"Yellow"`) 9 | * `GREEN` (value: `"Green"`) 10 | * `BLUE` (value: `"Blue"`) 11 | * `PURPLE` (value: `"Purple"`) 12 | * `BLACK` (value: `"Black"`) 13 | -------------------------------------------------------------------------------- /apiClient/docs/ExternalKeysViewModel.md: -------------------------------------------------------------------------------- 1 | # ExternalKeysViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **keys** | [**List<ExternalKeyViewModel>**](ExternalKeyViewModel.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/GuidesCategoryItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # GuidesCategoryItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<GuidesCategory>**](GuidesCategory.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelReferralFriend.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelReferralFriend 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<ReferralFriend>**](ReferralFriend.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/LimitWithoutKyc.md: -------------------------------------------------------------------------------- 1 | # LimitWithoutKyc 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **limit** | **Double** | | [optional] 7 | **currency** | [**Currency**](Currency.md) | | [optional] 8 | **invested** | **Double** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/ManagerProfitChartData.md: -------------------------------------------------------------------------------- 1 | 2 | # ManagerProfitChartData 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **date** | [**DateTime**](DateTime.md) | | [optional] 8 | **totalProfit** | **Double** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/NotificationList.md: -------------------------------------------------------------------------------- 1 | # NotificationList 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **notifications** | [**List<NotificationViewModel>**](NotificationViewModel.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/RePost.md: -------------------------------------------------------------------------------- 1 | # RePost 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | [**UUID**](UUID.md) | | [optional] 7 | **text** | **String** | | [optional] 8 | **images** | [**List<NewPostImage>**](NewPostImage.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/ReferralFriendItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # ReferralFriendItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<ReferralFriend>**](ReferralFriend.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/SignalAccountsList.md: -------------------------------------------------------------------------------- 1 | # SignalAccountsList 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **signalAccounts** | [**List<SignalAccountDetails>**](SignalAccountDetails.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/SignalsList.md: -------------------------------------------------------------------------------- 1 | 2 | # SignalsList 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **programs** | [**List<SignalDetails>**](SignalDetails.md) | | [optional] 8 | **total** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/date_range_option_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/date_range_option_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/date_range_option_selected.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_primary_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /apiClient/docs/AndroidAppVersion.md: -------------------------------------------------------------------------------- 1 | # AndroidAppVersion 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **minVersion** | [**AndroidVersion**](AndroidVersion.md) | | [optional] 7 | **lastVersion** | [**AndroidVersion**](AndroidVersion.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawKlineItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # BinanceRawKlineItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<BinanceRawKline>**](BinanceRawKline.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawOrderItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # BinanceRawOrderItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<BinanceRawOrder>**](BinanceRawOrder.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/DetachFromSignalProvider.md: -------------------------------------------------------------------------------- 1 | # DetachFromSignalProvider 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **tradingAccountId** | [**UUID**](UUID.md) | | [optional] 7 | **mode** | [**SignalDetachMode**](SignalDetachMode.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/EditPost.md: -------------------------------------------------------------------------------- 1 | # EditPost 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | [**UUID**](UUID.md) | | [optional] 7 | **text** | **String** | | [optional] 8 | **images** | [**List<NewPostImage>**](NewPostImage.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/ExternalKycAccessToken.md: -------------------------------------------------------------------------------- 1 | # ExternalKycAccessToken 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **baseAddress** | **String** | | [optional] 7 | **accessToken** | **String** | | [optional] 8 | **flowName** | **String** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/GuidesCategory.md: -------------------------------------------------------------------------------- 1 | # GuidesCategory 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | **String** | | [optional] 7 | **canonicalName** | **String** | | [optional] 8 | **guides** | [**List<Guide>**](Guide.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/InvestmentProgramViewModel.md: -------------------------------------------------------------------------------- 1 | 2 | # InvestmentProgramViewModel 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **investmentProgram** | [**InvestmentProgramDetails**](InvestmentProgramDetails.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelFundDetailsList.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelFundDetailsList 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<FundDetailsList>**](FundDetailsList.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelUserDetailsList.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelUserDetailsList 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<UserDetailsList>**](UserDetailsList.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ManagersList.md: -------------------------------------------------------------------------------- 1 | 2 | # ManagersList 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **managers** | [**List<ManagerProfile>**](ManagerProfile.md) | | [optional] 8 | **total** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramSets.md: -------------------------------------------------------------------------------- 1 | 2 | # ProgramSets 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **sets** | [**List<ProgramFacet>**](ProgramFacet.md) | | [optional] 8 | **favoritesCount** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramsList.md: -------------------------------------------------------------------------------- 1 | 2 | # ProgramsList 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **programs** | [**List<ProgramDetails>**](ProgramDetails.md) | | [optional] 8 | **total** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/SignalProviderSubscribers.md: -------------------------------------------------------------------------------- 1 | # SignalProviderSubscribers 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **subscribers** | [**List<SignalSubscriber>**](SignalSubscriber.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/Token.md: -------------------------------------------------------------------------------- 1 | 2 | # Token 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **tokenName** | **String** | | [optional] 8 | **tokenSymbol** | **String** | | [optional] 9 | **initialPrice** | **Double** | | [optional] 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /apiClient/docs/TransactionsViewModel.md: -------------------------------------------------------------------------------- 1 | # TransactionsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **transactions** | [**List<TransactionViewModel>**](TransactionViewModel.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/TwoFactorCodeWithPassword.md: -------------------------------------------------------------------------------- 1 | # TwoFactorCodeWithPassword 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **password** | **String** | | 7 | **twoFactorCode** | **String** | | [optional] 8 | **recoveryCode** | **String** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/UserDetailsListItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # UserDetailsListItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<UserDetailsList>**](UserDetailsList.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/net/api/client/BinanceApiClient.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.net.api.client; 2 | 3 | import io.swagger.client.ApiClient; 4 | 5 | /** 6 | * GenesisVisionAndroid 7 | * Created by Vitaly on 28/01/2021. 8 | */ 9 | public class BinanceApiClient extends ApiClient 10 | { 11 | } 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/button_primary_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_keyboard_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/list_item_divider.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /apiClient/docs/AssetSignalSettings.md: -------------------------------------------------------------------------------- 1 | # AssetSignalSettings 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **signalSuccessFee** | **Double** | | [optional] 7 | **signalVolumeFee** | **Double** | | [optional] 8 | **isActive** | **Boolean** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/CopyTradingAccountsList.md: -------------------------------------------------------------------------------- 1 | # CopyTradingAccountsList 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **accounts** | [**List<CopyTradingAccountInfo>**](CopyTradingAccountInfo.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/CreateSignalProvider.md: -------------------------------------------------------------------------------- 1 | # CreateSignalProvider 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | [**UUID**](UUID.md) | AssetId | [optional] 7 | **volumeFee** | **Double** | | [optional] 8 | **successFee** | **Double** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/DayOfWeekType.md: -------------------------------------------------------------------------------- 1 | # DayOfWeekType 2 | 3 | ## Enum 4 | 5 | * `SUNDAY` (value: `"Sunday"`) 6 | * `MONDAY` (value: `"Monday"`) 7 | * `TUESDAY` (value: `"Tuesday"`) 8 | * `WEDNESDAY` (value: `"Wednesday"`) 9 | * `THURSDAY` (value: `"Thursday"`) 10 | * `FRIDAY` (value: `"Friday"`) 11 | * `SATURDAY` (value: `"Saturday"`) 12 | -------------------------------------------------------------------------------- /apiClient/docs/ManagerOpenTrades.md: -------------------------------------------------------------------------------- 1 | 2 | # ManagerOpenTrades 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **managerAccountId** | [**UUID**](UUID.md) | | 8 | **trades** | [**List<OpenOrderModel>**](OpenOrderModel.md) | | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/MoneyLocation.md: -------------------------------------------------------------------------------- 1 | # MoneyLocation 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **name** | [**MoneyLocationType**](MoneyLocationType.md) | | [optional] 7 | **percent** | **Double** | | [optional] 8 | **color** | **String** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/OrderSignalFee.md: -------------------------------------------------------------------------------- 1 | # OrderSignalFee 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **amount** | **Double** | | [optional] 7 | **currency** | [**Currency**](Currency.md) | | [optional] 8 | **type** | [**FeeType**](FeeType.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramPeriodsViewModel.md: -------------------------------------------------------------------------------- 1 | # ProgramPeriodsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **periods** | [**List<ProgramPeriodViewModel>**](ProgramPeriodViewModel.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/PushNotificationChannel.md: -------------------------------------------------------------------------------- 1 | # PushNotificationChannel 2 | 3 | ## Enum 4 | 5 | * `PLATFORM` (value: `"Platform"`) 6 | * `PROFILE` (value: `"Profile"`) 7 | * `ASSET` (value: `"Asset"`) 8 | * `USER` (value: `"User"`) 9 | * `SIGNAL` (value: `"Signal"`) 10 | * `SOCIAL` (value: `"Social"`) 11 | * `OTHER` (value: `"Other"`) 12 | -------------------------------------------------------------------------------- /apiClient/docs/ReallocationModel.md: -------------------------------------------------------------------------------- 1 | # ReallocationModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **date** | [**DateTime**](DateTime.md) | | [optional] 7 | **parts** | [**List<FundAssetPartWithIcon>**](FundAssetPartWithIcon.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/RewardDetails.md: -------------------------------------------------------------------------------- 1 | # RewardDetails 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **date** | [**DateTime**](DateTime.md) | | [optional] 7 | **currency** | [**Currency**](Currency.md) | | [optional] 8 | **amount** | **Double** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/SocialSummaryHashTag.md: -------------------------------------------------------------------------------- 1 | # SocialSummaryHashTag 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **hashTag** | **String** | | [optional] 7 | **impressionsCount** | **Integer** | | [optional] 8 | **discussCount** | **Integer** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/WalletInvestmentPrograms.md: -------------------------------------------------------------------------------- 1 | 2 | # WalletInvestmentPrograms 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **investmentPrograms** | [**List<WalletInvestmentProgram>**](WalletInvestmentProgram.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/WithdrawalSummary.md: -------------------------------------------------------------------------------- 1 | # WithdrawalSummary 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **availableToWithdrawal** | **Double** | | [optional] 7 | **wallets** | [**List<WalletWithdrawalInfo>**](WalletWithdrawalInfo.md) | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/list_item_divider.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/program_list_item_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_select_currency_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /apiClient/docs/AmountRowCell.md: -------------------------------------------------------------------------------- 1 | # AmountRowCell 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | **String** | | [optional] 7 | **first** | [**AmountItem**](AmountItem.md) | | [optional] 8 | **second** | [**AmountItem**](AmountItem.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/AmountWithLogoCurrency.md: -------------------------------------------------------------------------------- 1 | # AmountWithLogoCurrency 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **amount** | **Double** | | [optional] 7 | **currency** | [**Currency**](Currency.md) | | [optional] 8 | **logoUrl** | **String** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/BasePlatformAssetItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # BasePlatformAssetItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<BasePlatformAsset>**](BasePlatformAsset.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/BrokersViewModel.md: -------------------------------------------------------------------------------- 1 | 2 | # BrokersViewModel 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **brokers** | [**List<BrokerTradeServer>**](BrokerTradeServer.md) | | [optional] 8 | **total** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/CoinsHistoryEventItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # CoinsHistoryEventItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<CoinsHistoryEvent>**](CoinsHistoryEvent.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/DExchangeResponse.md: -------------------------------------------------------------------------------- 1 | 2 | # DExchangeResponse 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **jsonrpc** | **String** | | [optional] 8 | **id** | **Integer** | | [optional] 9 | **result** | **Object** | | [optional] 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /apiClient/docs/FundAssetInvestmentRequest.md: -------------------------------------------------------------------------------- 1 | # FundAssetInvestmentRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **entryFee** | **Double** | | [optional] 7 | **exitFee** | **Double** | | [optional] 8 | **withdrawPercent** | **Double** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/FundCreateAssetPlatformInfo.md: -------------------------------------------------------------------------------- 1 | # FundCreateAssetPlatformInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **maxEntryFee** | **Double** | | [optional] 7 | **maxExitFee** | **Double** | | [optional] 8 | **minDeposit** | **Double** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/InvestmentEventViewModels.md: -------------------------------------------------------------------------------- 1 | # InvestmentEventViewModels 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **events** | [**List<InvestmentEventViewModel>**](InvestmentEventViewModel.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelFollowDetailsList.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelFollowDetailsList 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<FollowDetailsList>**](FollowDetailsList.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelProgramDetailsList.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelProgramDetailsList 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<ProgramDetailsList>**](ProgramDetailsList.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelReallocationModel.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelReallocationModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<ReallocationModel>**](ReallocationModel.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelSignalSubscription.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelSignalSubscription 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<SignalSubscription>**](SignalSubscription.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelSignalTradingEvent.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelSignalTradingEvent 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<SignalTradingEvent>**](SignalTradingEvent.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/OpenTradesViewModel.md: -------------------------------------------------------------------------------- 1 | 2 | # OpenTradesViewModel 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **trades** | [**List<OpenOrderModel>**](OpenOrderModel.md) | | [optional] 8 | **total** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/PartnershipDetails.md: -------------------------------------------------------------------------------- 1 | # PartnershipDetails 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **totalReferralsL1** | **Integer** | | [optional] 7 | **totalReferralsL2** | **Integer** | | [optional] 8 | **totalAmount** | **Double** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/PaymentTxInfo.md: -------------------------------------------------------------------------------- 1 | 2 | # PaymentTxInfo 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **id** | [**UUID**](UUID.md) | | [optional] 8 | **hash** | **String** | | [optional] 9 | **address** | **String** | | [optional] 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /apiClient/docs/PlatformCurrency.md: -------------------------------------------------------------------------------- 1 | 2 | # PlatformCurrency 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **name** | **String** | | [optional] 8 | **rateToGvt** | **Double** | | [optional] 9 | **color** | **String** | | [optional] 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /apiClient/docs/PowDetails.md: -------------------------------------------------------------------------------- 1 | # PowDetails 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **secureAlgorithm** | [**SecureAlgorithm**](SecureAlgorithm.md) | | [optional] 7 | **difficulty** | **Integer** | | [optional] 8 | **nonce** | **String** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/ProfilePublicShortItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # ProfilePublicShortItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<ProfilePublicShort>**](ProfilePublicShort.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ReallocationModelItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # ReallocationModelItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<ReallocationModel>**](ReallocationModel.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/SignalSubscriptionItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # SignalSubscriptionItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<SignalSubscription>**](SignalSubscription.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/SignalTradingEventItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # SignalTradingEventItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<SignalTradingEvent>**](SignalTradingEvent.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/background_select_currency_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_post_tag.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceExecutionType.md: -------------------------------------------------------------------------------- 1 | # BinanceExecutionType 2 | 3 | ## Enum 4 | 5 | * `NEW` (value: `"New"`) 6 | * `CANCELED` (value: `"Canceled"`) 7 | * `REPLACED` (value: `"Replaced"`) 8 | * `REJECTED` (value: `"Rejected"`) 9 | * `TRADE` (value: `"Trade"`) 10 | * `EXPIRED` (value: `"Expired"`) 11 | * `AMENDMENT` (value: `"Amendment"`) 12 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawBlvtKlineItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # BinanceRawBlvtKlineItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<BinanceRawBlvtKline>**](BinanceRawBlvtKline.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawFuturesUsdtAsset.md: -------------------------------------------------------------------------------- 1 | # BinanceRawFuturesUsdtAsset 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **asset** | **String** | | [optional] 7 | **marginAvailable** | **Boolean** | | [optional] 8 | **autoAssetExchange** | **Double** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/FreeTokens.md: -------------------------------------------------------------------------------- 1 | 2 | # FreeTokens 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **total** | **Double** | | [optional] 8 | **investorsTokens** | **Double** | | [optional] 9 | **requestsTokens** | **Double** | | [optional] 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /apiClient/docs/FundAssetPartDetails.md: -------------------------------------------------------------------------------- 1 | 2 | # FundAssetPartDetails 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **name** | **String** | | [optional] 8 | **asset** | **String** | | [optional] 9 | **percent** | **Double** | | [optional] 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /apiClient/docs/FundDetailsListItemItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # FundDetailsListItemItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<FundDetailsListItem>**](FundDetailsListItem.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelFundDetailsListItem.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelFundDetailsListItem 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<FundDetailsListItem>**](FundDetailsListItem.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ManagerFunds.md: -------------------------------------------------------------------------------- 1 | 2 | # ManagerFunds 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **funds** | [**List<ManagerDashboardProgram>**](ManagerDashboardProgram.md) | | [optional] 8 | **total** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/ProfitChart.md: -------------------------------------------------------------------------------- 1 | # ProfitChart 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **chart** | [**List<SimpleChartPoint>**](SimpleChartPoint.md) | | [optional] 7 | **profit** | **Double** | | [optional] 8 | **drawdown** | **Double** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramAssetInvestmentRequest.md: -------------------------------------------------------------------------------- 1 | # ProgramAssetInvestmentRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **isWithdrawAll** | **Boolean** | | [optional] 7 | **successFee** | **Double** | | [optional] 8 | **entryFee** | **Double** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/ProviderPlatformAssets.md: -------------------------------------------------------------------------------- 1 | # ProviderPlatformAssets 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **type** | [**AssetProvider**](AssetProvider.md) | | [optional] 7 | **tradingSchedule** | [**TradingScheduleInfo**](TradingScheduleInfo.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/WalletDepositData.md: -------------------------------------------------------------------------------- 1 | # WalletDepositData 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **address** | **String** | | [optional] 7 | **blockchain** | [**Blockchain**](Blockchain.md) | | [optional] 8 | **blockchainTitle** | **String** | | [optional] 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_futures_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shadow_up_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceIncomeType.md: -------------------------------------------------------------------------------- 1 | # BinanceIncomeType 2 | 3 | ## Enum 4 | 5 | * `TRANSFER` (value: `"Transfer"`) 6 | * `WELCOMEBONUS` (value: `"WelcomeBonus"`) 7 | * `REALIZEDPNL` (value: `"RealizedPnl"`) 8 | * `FUNDINGFEE` (value: `"FundingFee"`) 9 | * `COMMISSION` (value: `"Commission"`) 10 | * `INSURANCECLEAR` (value: `"InsuranceClear"`) 11 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawSymbolIcebergPartsFilter.md: -------------------------------------------------------------------------------- 1 | # BinanceRawSymbolIcebergPartsFilter 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **filterType** | [**BinanceSymbolFilterType**](BinanceSymbolFilterType.md) | | [optional] 7 | **limit** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawSymbolMaxPositionFilter.md: -------------------------------------------------------------------------------- 1 | # BinanceRawSymbolMaxPositionFilter 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **filterType** | [**BinanceSymbolFilterType**](BinanceSymbolFilterType.md) | | [optional] 7 | **maxPosition** | **Double** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/CaptchaCheckResult.md: -------------------------------------------------------------------------------- 1 | # CaptchaCheckResult 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **id** | **String** | | [optional] 7 | **pow** | [**PowResult**](PowResult.md) | | [optional] 8 | **geeTest** | [**GeeTestResult**](GeeTestResult.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/ExternalKeyAddViewModel.md: -------------------------------------------------------------------------------- 1 | # ExternalKeyAddViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | **String** | | 7 | **exchangeId** | [**UUID**](UUID.md) | | 8 | **key** | **String** | | 9 | **secret** | **String** | | [optional] 10 | -------------------------------------------------------------------------------- /apiClient/docs/InvestmentEventItemViewModel.md: -------------------------------------------------------------------------------- 1 | # InvestmentEventItemViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **title** | **String** | | [optional] 7 | **amount** | **Double** | | [optional] 8 | **currency** | [**Currency**](Currency.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelTransactionViewModel.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelTransactionViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<TransactionViewModel>**](TransactionViewModel.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ManagerProfitChart.md: -------------------------------------------------------------------------------- 1 | 2 | # ManagerProfitChart 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **title** | **String** | | [optional] 8 | **data** | [**List<ManagerProfitChartData>**](ManagerProfitChartData.md) | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/MigrationRequest.md: -------------------------------------------------------------------------------- 1 | # MigrationRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **dateCreate** | [**DateTime**](DateTime.md) | | [optional] 7 | **newLeverage** | **Integer** | | [optional] 8 | **newBroker** | [**Broker**](Broker.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/MultiWalletFilters.md: -------------------------------------------------------------------------------- 1 | 2 | # MultiWalletFilters 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **transactionType** | **List<String>** | | [optional] 8 | **externalTransactionType** | **List<String>** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramProfitCharts.md: -------------------------------------------------------------------------------- 1 | # ProgramProfitCharts 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **statistic** | [**ProgramChartStatistic**](ProgramChartStatistic.md) | | [optional] 7 | **charts** | [**List<SimpleChart>**](SimpleChart.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/RebalancesViewModel.md: -------------------------------------------------------------------------------- 1 | 2 | # RebalancesViewModel 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **rebalances** | [**List<RebalancingModel>**](RebalancingModel.md) | | [optional] 8 | **total** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/ResetPasswordViewModel.md: -------------------------------------------------------------------------------- 1 | # ResetPasswordViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **userId** | **String** | | 7 | **code** | **String** | | 8 | **password** | **String** | | 9 | **confirmPassword** | **String** | | [optional] 10 | -------------------------------------------------------------------------------- /apiClient/docs/TransactionViewModelItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # TransactionViewModelItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<TransactionViewModel>**](TransactionViewModel.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/java/vision/genesis/clientapp/feature/main/wallet/deposit/DepositWalletView.java: -------------------------------------------------------------------------------- 1 | package vision.genesis.clientapp.feature.main.wallet.deposit; 2 | 3 | import com.arellomobile.mvp.MvpView; 4 | 5 | /** 6 | * GenesisVision 7 | * Created by Vitaly on 2/26/18. 8 | */ 9 | 10 | interface DepositWalletView extends MvpView 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shadow_down_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shadow_down_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /apiClient/docs/AccountBalanceChart.md: -------------------------------------------------------------------------------- 1 | # AccountBalanceChart 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **balance** | **Double** | | [optional] 7 | **color** | **String** | | [optional] 8 | **chart** | [**List<SimpleChartPoint>**](SimpleChartPoint.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawFuturesSymbolBracket.md: -------------------------------------------------------------------------------- 1 | # BinanceRawFuturesSymbolBracket 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **brackets** | [**List<BinanceRawFuturesBracket>**](BinanceRawFuturesBracket.md) | | [optional] 7 | **symbol** | **String** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawSymbolMaxOrdersFilter.md: -------------------------------------------------------------------------------- 1 | # BinanceRawSymbolMaxOrdersFilter 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **filterType** | [**BinanceSymbolFilterType**](BinanceSymbolFilterType.md) | | [optional] 7 | **maxNumberOrders** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/DashboardTradingAssetItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # DashboardTradingAssetItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<DashboardTradingAsset>**](DashboardTradingAsset.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/FollowDetailsListItemItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # FollowDetailsListItemItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<FollowDetailsListItem>**](FollowDetailsListItem.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/FundAssetsState.md: -------------------------------------------------------------------------------- 1 | # FundAssetsState 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **date** | **Long** | | [optional] 7 | **value** | **Double** | | [optional] 8 | **assets** | [**List<FundAssetPartWithIcon>**](FundAssetPartWithIcon.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/FundBalanceChart.md: -------------------------------------------------------------------------------- 1 | # FundBalanceChart 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **balance** | **Double** | | [optional] 7 | **color** | **String** | | [optional] 8 | **chart** | [**List<BalanceChartPoint>**](BalanceChartPoint.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/FundHistoryEventType.md: -------------------------------------------------------------------------------- 1 | # FundHistoryEventType 2 | 3 | ## Enum 4 | 5 | * `CREATION` (value: `"Creation"`) 6 | * `INVESTMENT` (value: `"Investment"`) 7 | * `WITHDRAWAL` (value: `"Withdrawal"`) 8 | * `REBALANCE` (value: `"Rebalance"`) 9 | * `REALLOCATION` (value: `"Reallocation"`) 10 | * `CHALLENGEWINNER` (value: `"ChallengeWinner"`) 11 | -------------------------------------------------------------------------------- /apiClient/docs/InvestmentProgramUpdate.md: -------------------------------------------------------------------------------- 1 | 2 | # InvestmentProgramUpdate 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **title** | **String** | | [optional] 8 | **description** | **String** | | [optional] 9 | **logo** | **String** | | [optional] 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelDashboardTradingAsset.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelDashboardTradingAsset 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<DashboardTradingAsset>**](DashboardTradingAsset.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelFollowDetailsListItem.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelFollowDetailsListItem 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<FollowDetailsListItem>**](FollowDetailsListItem.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelTradingAccountDetails.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelTradingAccountDetails 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<TradingAccountDetails>**](TradingAccountDetails.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ManagerInvestmentPrograms.md: -------------------------------------------------------------------------------- 1 | 2 | # ManagerInvestmentPrograms 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **investmentPrograms** | [**List<InvestmentProgramDashboardManager>**](InvestmentProgramDashboardManager.md) | | [optional] 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apiClient/docs/ManagerPrograms.md: -------------------------------------------------------------------------------- 1 | 2 | # ManagerPrograms 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **programs** | [**List<ManagerDashboardProgram>**](ManagerDashboardProgram.md) | | [optional] 8 | **total** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/NewTournamentAccountRequest.md: -------------------------------------------------------------------------------- 1 | 2 | # NewTournamentAccountRequest 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **title** | **String** | | 8 | **description** | **String** | | [optional] 9 | **logo** | **String** | | [optional] 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /apiClient/docs/NewTradeEvent.md: -------------------------------------------------------------------------------- 1 | 2 | # NewTradeEvent 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **managerAccountId** | [**UUID**](UUID.md) | | 8 | **trades** | [**List<OrderModel>**](OrderModel.md) | | 9 | **balance** | **Double** | | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /apiClient/docs/NotificationViewModelItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # NotificationViewModelItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<NotificationViewModel>**](NotificationViewModel.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/PlatformAssets.md: -------------------------------------------------------------------------------- 1 | # PlatformAssets 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **assets** | [**List<PlatformAsset>**](PlatformAsset.md) | | [optional] 7 | **providers** | [**List<ProviderPlatformAssets>**](ProviderPlatformAssets.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/TradingAccountDetailsItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # TradingAccountDetailsItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<TradingAccountDetails>**](TradingAccountDetails.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/transactions_shadow.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /apiClient/docs/AssetInvestmentRequestItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # AssetInvestmentRequestItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<AssetInvestmentRequest>**](AssetInvestmentRequest.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawFuturesOpenInterest.md: -------------------------------------------------------------------------------- 1 | # BinanceRawFuturesOpenInterest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **symbol** | **String** | | [optional] 7 | **openInterest** | **Double** | | [optional] 8 | **timestamp** | [**DateTime**](DateTime.md) | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceRawFuturesOrderItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # BinanceRawFuturesOrderItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<BinanceRawFuturesOrder>**](BinanceRawFuturesOrder.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/BinanceTimeInForce.md: -------------------------------------------------------------------------------- 1 | # BinanceTimeInForce 2 | 3 | ## Enum 4 | 5 | * `GOODTILLCANCEL` (value: `"GoodTillCancel"`) 6 | * `IMMEDIATEORCANCEL` (value: `"ImmediateOrCancel"`) 7 | * `FILLORKILL` (value: `"FillOrKill"`) 8 | * `GOODTILLCROSSING` (value: `"GoodTillCrossing"`) 9 | * `GOODTILLEXPIREDORCANCELED` (value: `"GoodTillExpiredOrCanceled"`) 10 | -------------------------------------------------------------------------------- /apiClient/docs/ExchangeCredentialsInfoItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # ExchangeCredentialsInfoItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<ExchangeCredentialsInfo>**](ExchangeCredentialsInfo.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/FollowProfitPercentCharts.md: -------------------------------------------------------------------------------- 1 | # FollowProfitPercentCharts 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **statistic** | [**FollowChartStatistic**](FollowChartStatistic.md) | | [optional] 7 | **charts** | [**List<SimpleChart>**](SimpleChart.md) | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelAssetInvestmentRequest.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelAssetInvestmentRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<AssetInvestmentRequest>**](AssetInvestmentRequest.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelCopyTradingAccountInfo.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelCopyTradingAccountInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<CopyTradingAccountInfo>**](CopyTradingAccountInfo.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ItemsViewModelProgramDetailsListItem.md: -------------------------------------------------------------------------------- 1 | # ItemsViewModelProgramDetailsListItem 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<ProgramDetailsListItem>**](ProgramDetailsListItem.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ManagerPortfolioEvents.md: -------------------------------------------------------------------------------- 1 | 2 | # ManagerPortfolioEvents 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **events** | [**List<ManagerPortfolioEvent>**](ManagerPortfolioEvent.md) | | [optional] 8 | **total** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/NewExternalTradingAccountRequest.md: -------------------------------------------------------------------------------- 1 | # NewExternalTradingAccountRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **brokerAccountTypeId** | [**UUID**](UUID.md) | | [optional] 7 | **key** | **String** | | [optional] 8 | **secret** | **String** | | [optional] 9 | -------------------------------------------------------------------------------- /apiClient/docs/ProgramDetailsListItemItemsViewModel.md: -------------------------------------------------------------------------------- 1 | # ProgramDetailsListItemItemsViewModel 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **items** | [**List<ProgramDetailsListItem>**](ProgramDetailsListItem.md) | | [optional] 7 | **total** | **Integer** | | [optional] 8 | -------------------------------------------------------------------------------- /apiClient/docs/ReallocationsViewModel.md: -------------------------------------------------------------------------------- 1 | 2 | # ReallocationsViewModel 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **reallocations** | [**List<ReallocationModel>**](ReallocationModel.md) | | [optional] 8 | **total** | **Integer** | | [optional] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apiClient/docs/SimpleChart.md: -------------------------------------------------------------------------------- 1 | # SimpleChart 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **currency** | [**Currency**](Currency.md) | | [optional] 7 | **color** | **String** | | [optional] 8 | **chart** | [**List<SimpleChartPoint>**](SimpleChartPoint.md) | | [optional] 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_primary_frame.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | --------------------------------------------------------------------------------