/xchange-deribit/src/main/java/org/knowm/xchange/deribit/v2/dto/account/AccountSummary.java

http://github.com/timmolter/XChange · Java · 133 lines · 69 code · 33 blank · 31 comment · 0 complexity · baaaaf41af2635a68bcb327dd3ef5e73 MD5 · raw file

  1. package org.knowm.xchange.deribit.v2.dto.account;
  2. import com.fasterxml.jackson.annotation.JsonProperty;
  3. import java.math.BigDecimal;
  4. import lombok.Data;
  5. @Data
  6. public class AccountSummary {
  7. /** Profit and loss */
  8. @JsonProperty("total_pl")
  9. private BigDecimal totalPl;
  10. /** Session unrealized profit and loss */
  11. @JsonProperty("session_upl")
  12. private BigDecimal sessionUpl;
  13. /** Session realized profit and loss */
  14. @JsonProperty("session_rpl")
  15. private BigDecimal sessionRpl;
  16. /** Session funding */
  17. @JsonProperty("session_funding")
  18. private BigDecimal sessionFunding;
  19. /** true when portfolio margining is enabled for user */
  20. @JsonProperty("portfolio_margining_enabled")
  21. private boolean portfolioMarginingEnabled;
  22. /** Options summary vega */
  23. @JsonProperty("options_vega")
  24. private BigDecimal optionsVega;
  25. /** Options summary theta */
  26. @JsonProperty("options_theta")
  27. private BigDecimal optionsTheta;
  28. /** Options session unrealized profit and Loss */
  29. @JsonProperty("options_session_upl")
  30. private BigDecimal optionsSessionUpl;
  31. /** Options session realized profit and Loss */
  32. @JsonProperty("options_session_rpl")
  33. private BigDecimal optionsSessionRpl;
  34. /** Options profit and Loss */
  35. @JsonProperty("options_pl")
  36. private BigDecimal optionsPl;
  37. /** Options summary gamma */
  38. @JsonProperty("options_gamma")
  39. private BigDecimal optionsGamma;
  40. /** Options summary delta */
  41. @JsonProperty("options_delta")
  42. private BigDecimal optionsDelta;
  43. /** The account's margin balance */
  44. @JsonProperty("margin_balance")
  45. private BigDecimal marginBalance;
  46. /** The maintenance margin. */
  47. @JsonProperty("maintenance_margin")
  48. private BigDecimal maintenanceMargin;
  49. /** The account's initial margin */
  50. @JsonProperty("initial_margin")
  51. private BigDecimal initialMargin;
  52. /** Futures session unrealized profit and Loss */
  53. @JsonProperty("futures_session_upl")
  54. private BigDecimal futuresSessionUpl;
  55. /** Futures session realized profit and Loss */
  56. @JsonProperty("futures_session_rpl")
  57. private BigDecimal futuresSessionRpl;
  58. /** Futures profit and Loss */
  59. @JsonProperty("futures_pl")
  60. private BigDecimal futuresPl;
  61. /** The account's current equity */
  62. @JsonProperty("equity")
  63. private BigDecimal equity;
  64. /** The deposit address for the account (if available) */
  65. @JsonProperty("deposit_address")
  66. private String depositAddress;
  67. /** The sum of position deltas */
  68. @JsonProperty("delta_total")
  69. private BigDecimal deltaTotal;
  70. /** The selected currency */
  71. @JsonProperty("currency")
  72. private String currency;
  73. /** The account's balance */
  74. @JsonProperty("balance")
  75. private BigDecimal balance;
  76. /** The account's available to withdrawal funds */
  77. @JsonProperty("available_withdrawal_funds")
  78. private BigDecimal availableWithdrawalFunds;
  79. /** The account's available funds */
  80. @JsonProperty("available_funds")
  81. private BigDecimal availableFunds;
  82. /** Account name (given by user) (available when parameter extended = true) */
  83. @JsonProperty("username")
  84. private String username;
  85. /** Account type (available when parameter extended = true) */
  86. @JsonProperty("type")
  87. private String type;
  88. /** Whether two factor authentication is enabled (available when parameter extended = true) */
  89. @JsonProperty("tfa_enabled")
  90. private Boolean tfaEnabled;
  91. /** System generated user nickname (available when parameter extended = true) */
  92. @JsonProperty("system_name")
  93. private String systemName;
  94. /** Account id (available when parameter extended = true) */
  95. @JsonProperty("id")
  96. private Long id;
  97. /** User email (available when parameter extended = true) */
  98. @JsonProperty("email")
  99. private String email;
  100. }