Class: ThePlaidApi::SignalEvaluateCoreAttributes

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/the_plaid_api/models/signal_evaluate_core_attributes.rb

Overview

The core attributes object contains additional data that can be used to assess the ACH return risk. If using a Balance-only ruleset, only ‘available_balance` and `current_balance` will be returned as core attributes. If using a Signal Transaction Scores ruleset, over 80 core attributes will be returned. Examples of attributes include: `available_balance` and `current_balance`: The balance in the ACH transaction funding account `days_since_first_plaid_connection`: The number of days since the first time the Item was connected to an application via Plaid `plaid_connections_count_7d`: The number of times the Item has been connected to applications via Plaid over the past 7 days `plaid_connections_count_30d`: The number of times the Item has been connected to applications via Plaid over the past 30 days `total_plaid_connections_count`: The number of times the Item has been connected to applications via Plaid `is_savings_or_money_market_account`: Indicates whether the ACH transaction funding account is a savings/money market account For the full list and detailed documentation of core attributes available, or to request that core attributes not be returned, contact Sales or your Plaid account manager.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#check_for_conflict, #process_additional_properties, #process_array, #process_basic_value, #process_hash, #to_hash, #to_json

Constructor Details

#initialize(unauthorized_transactions_count_7d: SKIP, unauthorized_transactions_count_30d: SKIP, unauthorized_transactions_count_60d: SKIP, unauthorized_transactions_count_90d: SKIP, nsf_overdraft_transactions_count_7d: SKIP, nsf_overdraft_transactions_count_30d: SKIP, nsf_overdraft_transactions_count_60d: SKIP, nsf_overdraft_transactions_count_90d: SKIP, days_since_first_plaid_connection: SKIP, plaid_connections_count_7d: SKIP, plaid_connections_count_30d: SKIP, total_plaid_connections_count: SKIP, is_savings_or_money_market_account: SKIP, total_credit_transactions_amount_10d: SKIP, total_debit_transactions_amount_10d: SKIP, p50_credit_transactions_amount_28d: SKIP, p50_debit_transactions_amount_28d: SKIP, p95_credit_transactions_amount_28d: SKIP, p95_debit_transactions_amount_28d: SKIP, days_with_negative_balance_count_90d: SKIP, p90_eod_balance_30d: SKIP, p90_eod_balance_60d: SKIP, p90_eod_balance_90d: SKIP, p10_eod_balance_30d: SKIP, p10_eod_balance_60d: SKIP, p10_eod_balance_90d: SKIP, available_balance: SKIP, current_balance: SKIP, balance_last_updated: SKIP, phone_change_count_28d: SKIP, phone_change_count_90d: SKIP, email_change_count_28d: SKIP, email_change_count_90d: SKIP, address_change_count_28d: SKIP, address_change_count_90d: SKIP, plaid_non_oauth_authentication_attempts_count_3d: SKIP, plaid_non_oauth_authentication_attempts_count_7d: SKIP, plaid_non_oauth_authentication_attempts_count_30d: SKIP, failed_plaid_non_oauth_authentication_attempts_count_3d: SKIP, failed_plaid_non_oauth_authentication_attempts_count_7d: SKIP, failed_plaid_non_oauth_authentication_attempts_count_30d: SKIP, debit_transactions_count_10d: SKIP, credit_transactions_count_10d: SKIP, debit_transactions_count_30d: SKIP, credit_transactions_count_30d: SKIP, debit_transactions_count_60d: SKIP, credit_transactions_count_60d: SKIP, debit_transactions_count_90d: SKIP, credit_transactions_count_90d: SKIP, total_debit_transactions_amount_30d: SKIP, total_credit_transactions_amount_30d: SKIP, total_debit_transactions_amount_60d: SKIP, total_credit_transactions_amount_60d: SKIP, total_debit_transactions_amount_90d: SKIP, total_credit_transactions_amount_90d: SKIP, p50_eod_balance_30d: SKIP, p50_eod_balance_60d: SKIP, p50_eod_balance_90d: SKIP, p50_eod_balance_31d_to_60d: SKIP, p50_eod_balance_61d_to_90d: SKIP, p90_eod_balance_31d_to_60d: SKIP, p90_eod_balance_61d_to_90d: SKIP, p10_eod_balance_31d_to_60d: SKIP, p10_eod_balance_61d_to_90d: SKIP, transactions_last_updated: SKIP, is_account_closed: SKIP, is_account_frozen_or_restricted: SKIP, distinct_ip_addresses_count_3d: SKIP, distinct_ip_addresses_count_7d: SKIP, distinct_ip_addresses_count_30d: SKIP, distinct_ip_addresses_count_90d: SKIP, distinct_user_agents_count_3d: SKIP, distinct_user_agents_count_7d: SKIP, distinct_user_agents_count_30d: SKIP, distinct_user_agents_count_90d: SKIP, distinct_ssl_tls_connection_sessions_count_3d: SKIP, distinct_ssl_tls_connection_sessions_count_7d: SKIP, distinct_ssl_tls_connection_sessions_count_30d: SKIP, distinct_ssl_tls_connection_sessions_count_90d: SKIP, days_since_account_opening: SKIP, balance_to_transaction_amount_ratio: SKIP, additional_properties: nil) ⇒ SignalEvaluateCoreAttributes

Returns a new instance of SignalEvaluateCoreAttributes.



754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 754

def initialize(
  unauthorized_transactions_count_7d: SKIP,
  unauthorized_transactions_count_30d: SKIP,
  unauthorized_transactions_count_60d: SKIP,
  unauthorized_transactions_count_90d: SKIP,
  nsf_overdraft_transactions_count_7d: SKIP,
  nsf_overdraft_transactions_count_30d: SKIP,
  nsf_overdraft_transactions_count_60d: SKIP,
  nsf_overdraft_transactions_count_90d: SKIP,
  days_since_first_plaid_connection: SKIP, plaid_connections_count_7d: SKIP,
  plaid_connections_count_30d: SKIP, total_plaid_connections_count: SKIP,
  is_savings_or_money_market_account: SKIP,
  total_credit_transactions_amount_10d: SKIP,
  total_debit_transactions_amount_10d: SKIP,
  p50_credit_transactions_amount_28d: SKIP,
  p50_debit_transactions_amount_28d: SKIP,
  p95_credit_transactions_amount_28d: SKIP,
  p95_debit_transactions_amount_28d: SKIP,
  days_with_negative_balance_count_90d: SKIP, p90_eod_balance_30d: SKIP,
  p90_eod_balance_60d: SKIP, p90_eod_balance_90d: SKIP,
  p10_eod_balance_30d: SKIP, p10_eod_balance_60d: SKIP,
  p10_eod_balance_90d: SKIP, available_balance: SKIP, current_balance: SKIP,
  balance_last_updated: SKIP, phone_change_count_28d: SKIP,
  phone_change_count_90d: SKIP, email_change_count_28d: SKIP,
  email_change_count_90d: SKIP, address_change_count_28d: SKIP,
  address_change_count_90d: SKIP,
  plaid_non_oauth_authentication_attempts_count_3d: SKIP,
  plaid_non_oauth_authentication_attempts_count_7d: SKIP,
  plaid_non_oauth_authentication_attempts_count_30d: SKIP,
  failed_plaid_non_oauth_authentication_attempts_count_3d: SKIP,
  failed_plaid_non_oauth_authentication_attempts_count_7d: SKIP,
  failed_plaid_non_oauth_authentication_attempts_count_30d: SKIP,
  debit_transactions_count_10d: SKIP, credit_transactions_count_10d: SKIP,
  debit_transactions_count_30d: SKIP, credit_transactions_count_30d: SKIP,
  debit_transactions_count_60d: SKIP, credit_transactions_count_60d: SKIP,
  debit_transactions_count_90d: SKIP, credit_transactions_count_90d: SKIP,
  total_debit_transactions_amount_30d: SKIP,
  total_credit_transactions_amount_30d: SKIP,
  total_debit_transactions_amount_60d: SKIP,
  total_credit_transactions_amount_60d: SKIP,
  total_debit_transactions_amount_90d: SKIP,
  total_credit_transactions_amount_90d: SKIP, p50_eod_balance_30d: SKIP,
  p50_eod_balance_60d: SKIP, p50_eod_balance_90d: SKIP,
  p50_eod_balance_31d_to_60d: SKIP, p50_eod_balance_61d_to_90d: SKIP,
  p90_eod_balance_31d_to_60d: SKIP, p90_eod_balance_61d_to_90d: SKIP,
  p10_eod_balance_31d_to_60d: SKIP, p10_eod_balance_61d_to_90d: SKIP,
  transactions_last_updated: SKIP, is_account_closed: SKIP,
  is_account_frozen_or_restricted: SKIP,
  distinct_ip_addresses_count_3d: SKIP,
  distinct_ip_addresses_count_7d: SKIP,
  distinct_ip_addresses_count_30d: SKIP,
  distinct_ip_addresses_count_90d: SKIP,
  distinct_user_agents_count_3d: SKIP, distinct_user_agents_count_7d: SKIP,
  distinct_user_agents_count_30d: SKIP,
  distinct_user_agents_count_90d: SKIP,
  distinct_ssl_tls_connection_sessions_count_3d: SKIP,
  distinct_ssl_tls_connection_sessions_count_7d: SKIP,
  distinct_ssl_tls_connection_sessions_count_30d: SKIP,
  distinct_ssl_tls_connection_sessions_count_90d: SKIP,
  days_since_account_opening: SKIP,
  balance_to_transaction_amount_ratio: SKIP, additional_properties: nil
)
  # Add additional model properties to the instance
  additional_properties = {} if additional_properties.nil?

  unless unauthorized_transactions_count_7d == SKIP
    @unauthorized_transactions_count_7d =
      unauthorized_transactions_count_7d
  end
  unless unauthorized_transactions_count_30d == SKIP
    @unauthorized_transactions_count_30d =
      unauthorized_transactions_count_30d
  end
  unless unauthorized_transactions_count_60d == SKIP
    @unauthorized_transactions_count_60d =
      unauthorized_transactions_count_60d
  end
  unless unauthorized_transactions_count_90d == SKIP
    @unauthorized_transactions_count_90d =
      unauthorized_transactions_count_90d
  end
  unless nsf_overdraft_transactions_count_7d == SKIP
    @nsf_overdraft_transactions_count_7d =
      nsf_overdraft_transactions_count_7d
  end
  unless nsf_overdraft_transactions_count_30d == SKIP
    @nsf_overdraft_transactions_count_30d =
      nsf_overdraft_transactions_count_30d
  end
  unless nsf_overdraft_transactions_count_60d == SKIP
    @nsf_overdraft_transactions_count_60d =
      nsf_overdraft_transactions_count_60d
  end
  unless nsf_overdraft_transactions_count_90d == SKIP
    @nsf_overdraft_transactions_count_90d =
      nsf_overdraft_transactions_count_90d
  end
  unless days_since_first_plaid_connection == SKIP
    @days_since_first_plaid_connection =
      days_since_first_plaid_connection
  end
  unless plaid_connections_count_7d == SKIP
    @plaid_connections_count_7d =
      plaid_connections_count_7d
  end
  unless plaid_connections_count_30d == SKIP
    @plaid_connections_count_30d =
      plaid_connections_count_30d
  end
  unless total_plaid_connections_count == SKIP
    @total_plaid_connections_count =
      total_plaid_connections_count
  end
  unless  == SKIP
    @is_savings_or_money_market_account =
      
  end
  unless total_credit_transactions_amount_10d == SKIP
    @total_credit_transactions_amount_10d =
      total_credit_transactions_amount_10d
  end
  unless total_debit_transactions_amount_10d == SKIP
    @total_debit_transactions_amount_10d =
      total_debit_transactions_amount_10d
  end
  unless p50_credit_transactions_amount_28d == SKIP
    @p50_credit_transactions_amount_28d =
      p50_credit_transactions_amount_28d
  end
  unless p50_debit_transactions_amount_28d == SKIP
    @p50_debit_transactions_amount_28d =
      p50_debit_transactions_amount_28d
  end
  unless p95_credit_transactions_amount_28d == SKIP
    @p95_credit_transactions_amount_28d =
      p95_credit_transactions_amount_28d
  end
  unless p95_debit_transactions_amount_28d == SKIP
    @p95_debit_transactions_amount_28d =
      p95_debit_transactions_amount_28d
  end
  unless days_with_negative_balance_count_90d == SKIP
    @days_with_negative_balance_count_90d =
      days_with_negative_balance_count_90d
  end
  @p90_eod_balance_30d = p90_eod_balance_30d unless p90_eod_balance_30d == SKIP
  @p90_eod_balance_60d = p90_eod_balance_60d unless p90_eod_balance_60d == SKIP
  @p90_eod_balance_90d = p90_eod_balance_90d unless p90_eod_balance_90d == SKIP
  @p10_eod_balance_30d = p10_eod_balance_30d unless p10_eod_balance_30d == SKIP
  @p10_eod_balance_60d = p10_eod_balance_60d unless p10_eod_balance_60d == SKIP
  @p10_eod_balance_90d = p10_eod_balance_90d unless p10_eod_balance_90d == SKIP
  @available_balance = available_balance unless available_balance == SKIP
  @current_balance = current_balance unless current_balance == SKIP
  @balance_last_updated = balance_last_updated unless balance_last_updated == SKIP
  @phone_change_count_28d = phone_change_count_28d unless phone_change_count_28d == SKIP
  @phone_change_count_90d = phone_change_count_90d unless phone_change_count_90d == SKIP
  @email_change_count_28d = email_change_count_28d unless email_change_count_28d == SKIP
  @email_change_count_90d = email_change_count_90d unless email_change_count_90d == SKIP
  @address_change_count_28d = address_change_count_28d unless address_change_count_28d == SKIP
  @address_change_count_90d = address_change_count_90d unless address_change_count_90d == SKIP
  unless plaid_non_oauth_authentication_attempts_count_3d == SKIP
    @plaid_non_oauth_authentication_attempts_count_3d =
      plaid_non_oauth_authentication_attempts_count_3d
  end
  unless plaid_non_oauth_authentication_attempts_count_7d == SKIP
    @plaid_non_oauth_authentication_attempts_count_7d =
      plaid_non_oauth_authentication_attempts_count_7d
  end
  unless plaid_non_oauth_authentication_attempts_count_30d == SKIP
    @plaid_non_oauth_authentication_attempts_count_30d =
      plaid_non_oauth_authentication_attempts_count_30d
  end
  unless failed_plaid_non_oauth_authentication_attempts_count_3d == SKIP
    @failed_plaid_non_oauth_authentication_attempts_count_3d =
      failed_plaid_non_oauth_authentication_attempts_count_3d
  end
  unless failed_plaid_non_oauth_authentication_attempts_count_7d == SKIP
    @failed_plaid_non_oauth_authentication_attempts_count_7d =
      failed_plaid_non_oauth_authentication_attempts_count_7d
  end
  unless failed_plaid_non_oauth_authentication_attempts_count_30d == SKIP
    @failed_plaid_non_oauth_authentication_attempts_count_30d =
      failed_plaid_non_oauth_authentication_attempts_count_30d
  end
  unless debit_transactions_count_10d == SKIP
    @debit_transactions_count_10d =
      debit_transactions_count_10d
  end
  unless credit_transactions_count_10d == SKIP
    @credit_transactions_count_10d =
      credit_transactions_count_10d
  end
  unless debit_transactions_count_30d == SKIP
    @debit_transactions_count_30d =
      debit_transactions_count_30d
  end
  unless credit_transactions_count_30d == SKIP
    @credit_transactions_count_30d =
      credit_transactions_count_30d
  end
  unless debit_transactions_count_60d == SKIP
    @debit_transactions_count_60d =
      debit_transactions_count_60d
  end
  unless credit_transactions_count_60d == SKIP
    @credit_transactions_count_60d =
      credit_transactions_count_60d
  end
  unless debit_transactions_count_90d == SKIP
    @debit_transactions_count_90d =
      debit_transactions_count_90d
  end
  unless credit_transactions_count_90d == SKIP
    @credit_transactions_count_90d =
      credit_transactions_count_90d
  end
  unless total_debit_transactions_amount_30d == SKIP
    @total_debit_transactions_amount_30d =
      total_debit_transactions_amount_30d
  end
  unless total_credit_transactions_amount_30d == SKIP
    @total_credit_transactions_amount_30d =
      total_credit_transactions_amount_30d
  end
  unless total_debit_transactions_amount_60d == SKIP
    @total_debit_transactions_amount_60d =
      total_debit_transactions_amount_60d
  end
  unless total_credit_transactions_amount_60d == SKIP
    @total_credit_transactions_amount_60d =
      total_credit_transactions_amount_60d
  end
  unless total_debit_transactions_amount_90d == SKIP
    @total_debit_transactions_amount_90d =
      total_debit_transactions_amount_90d
  end
  unless total_credit_transactions_amount_90d == SKIP
    @total_credit_transactions_amount_90d =
      total_credit_transactions_amount_90d
  end
  @p50_eod_balance_30d = p50_eod_balance_30d unless p50_eod_balance_30d == SKIP
  @p50_eod_balance_60d = p50_eod_balance_60d unless p50_eod_balance_60d == SKIP
  @p50_eod_balance_90d = p50_eod_balance_90d unless p50_eod_balance_90d == SKIP
  unless p50_eod_balance_31d_to_60d == SKIP
    @p50_eod_balance_31d_to_60d =
      p50_eod_balance_31d_to_60d
  end
  unless p50_eod_balance_61d_to_90d == SKIP
    @p50_eod_balance_61d_to_90d =
      p50_eod_balance_61d_to_90d
  end
  unless p90_eod_balance_31d_to_60d == SKIP
    @p90_eod_balance_31d_to_60d =
      p90_eod_balance_31d_to_60d
  end
  unless p90_eod_balance_61d_to_90d == SKIP
    @p90_eod_balance_61d_to_90d =
      p90_eod_balance_61d_to_90d
  end
  unless p10_eod_balance_31d_to_60d == SKIP
    @p10_eod_balance_31d_to_60d =
      p10_eod_balance_31d_to_60d
  end
  unless p10_eod_balance_61d_to_90d == SKIP
    @p10_eod_balance_61d_to_90d =
      p10_eod_balance_61d_to_90d
  end
  unless transactions_last_updated == SKIP
    @transactions_last_updated =
      transactions_last_updated
  end
  @is_account_closed =  unless  == SKIP
  unless  == SKIP
    @is_account_frozen_or_restricted =
      
  end
  unless distinct_ip_addresses_count_3d == SKIP
    @distinct_ip_addresses_count_3d =
      distinct_ip_addresses_count_3d
  end
  unless distinct_ip_addresses_count_7d == SKIP
    @distinct_ip_addresses_count_7d =
      distinct_ip_addresses_count_7d
  end
  unless distinct_ip_addresses_count_30d == SKIP
    @distinct_ip_addresses_count_30d =
      distinct_ip_addresses_count_30d
  end
  unless distinct_ip_addresses_count_90d == SKIP
    @distinct_ip_addresses_count_90d =
      distinct_ip_addresses_count_90d
  end
  unless distinct_user_agents_count_3d == SKIP
    @distinct_user_agents_count_3d =
      distinct_user_agents_count_3d
  end
  unless distinct_user_agents_count_7d == SKIP
    @distinct_user_agents_count_7d =
      distinct_user_agents_count_7d
  end
  unless distinct_user_agents_count_30d == SKIP
    @distinct_user_agents_count_30d =
      distinct_user_agents_count_30d
  end
  unless distinct_user_agents_count_90d == SKIP
    @distinct_user_agents_count_90d =
      distinct_user_agents_count_90d
  end
  unless distinct_ssl_tls_connection_sessions_count_3d == SKIP
    @distinct_ssl_tls_connection_sessions_count_3d =
      distinct_ssl_tls_connection_sessions_count_3d
  end
  unless distinct_ssl_tls_connection_sessions_count_7d == SKIP
    @distinct_ssl_tls_connection_sessions_count_7d =
      distinct_ssl_tls_connection_sessions_count_7d
  end
  unless distinct_ssl_tls_connection_sessions_count_30d == SKIP
    @distinct_ssl_tls_connection_sessions_count_30d =
      distinct_ssl_tls_connection_sessions_count_30d
  end
  unless distinct_ssl_tls_connection_sessions_count_90d == SKIP
    @distinct_ssl_tls_connection_sessions_count_90d =
      distinct_ssl_tls_connection_sessions_count_90d
  end
  unless  == SKIP
    @days_since_account_opening =
      
  end
  unless balance_to_transaction_amount_ratio == SKIP
    @balance_to_transaction_amount_ratio =
      balance_to_transaction_amount_ratio
  end
  @additional_properties = additional_properties
end

Instance Attribute Details

#address_change_count_28dInteger

The number of times the account’s addresses on file have changed over the past 28 days

Returns:

  • (Integer)


208
209
210
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 208

def address_change_count_28d
  @address_change_count_28d
end

#address_change_count_90dInteger

The number of times the account’s addresses on file have changed over the past 90 days

Returns:

  • (Integer)


213
214
215
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 213

def address_change_count_90d
  @address_change_count_90d
end

#available_balanceFloat

Available balance, as of the ‘balance_last_updated` time. The available balance is the current balance less any outstanding holds or debits that have not yet posted to the account.

Returns:

  • (Float)


172
173
174
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 172

def available_balance
  @available_balance
end

#balance_last_updatedDateTime

Timestamp in [ISO 8601](wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time that the balance for the given account has been updated.

Returns:

  • (DateTime)


183
184
185
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 183

def balance_last_updated
  @balance_last_updated
end

#balance_to_transaction_amount_ratioFloat

Taking ‘available_or_current_balance` and dividing it by the transaction amount. Useful to say “10% buffer”, for example. This is a convenience function to build Signal Rules upon.

Returns:

  • (Float)


443
444
445
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 443

def balance_to_transaction_amount_ratio
  @balance_to_transaction_amount_ratio
end

#credit_transactions_count_10dInteger

The total number of credit (inflow) transactions over the past 10 days from the account that will be debited

Returns:

  • (Integer)


253
254
255
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 253

def credit_transactions_count_10d
  @credit_transactions_count_10d
end

#credit_transactions_count_30dInteger

The total number of credit (inflow) transactions over the past 30 days from the account that will be debited

Returns:

  • (Integer)


263
264
265
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 263

def credit_transactions_count_30d
  @credit_transactions_count_30d
end

#credit_transactions_count_60dInteger

The total number of credit (inflow) transactions over the past 60 days from the account that will be debited

Returns:

  • (Integer)


273
274
275
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 273

def credit_transactions_count_60d
  @credit_transactions_count_60d
end

#credit_transactions_count_90dInteger

The total number of credit (inflow) transactions over the past 90 days from the account that will be debited

Returns:

  • (Integer)


283
284
285
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 283

def credit_transactions_count_90d
  @credit_transactions_count_90d
end

#current_balanceFloat

Current balance, as of the ‘balance_last_updated` time. The current balance is the total amount of funds in the account.

Returns:

  • (Float)


177
178
179
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 177

def current_balance
  @current_balance
end

#days_since_account_openingInteger

The number of days since the bank account was opened, as reported by the financial institution

Returns:

  • (Integer)


437
438
439
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 437

def 
  @days_since_account_opening
end

#days_since_first_plaid_connectionInteger

The number of days since the first time the Item was connected to an application via Plaid

Returns:

  • (Integer)


81
82
83
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 81

def days_since_first_plaid_connection
  @days_since_first_plaid_connection
end

#days_with_negative_balance_count_90dInteger

The number of days within the past 90 days when the account that will be debited had a negative end-of-day available balance

Returns:

  • (Integer)


136
137
138
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 136

def days_with_negative_balance_count_90d
  @days_with_negative_balance_count_90d
end

#debit_transactions_count_10dInteger

The total number of debit (outflow) transactions over the past 10 days from the account that will be debited

Returns:

  • (Integer)


248
249
250
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 248

def debit_transactions_count_10d
  @debit_transactions_count_10d
end

#debit_transactions_count_30dInteger

The total number of debit (outflow) transactions over the past 30 days from the account that will be debited

Returns:

  • (Integer)


258
259
260
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 258

def debit_transactions_count_30d
  @debit_transactions_count_30d
end

#debit_transactions_count_60dInteger

The total number of debit (outflow) transactions over the past 60 days from the account that will be debited

Returns:

  • (Integer)


268
269
270
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 268

def debit_transactions_count_60d
  @debit_transactions_count_60d
end

#debit_transactions_count_90dInteger

The total number of debit (outflow) transactions over the past 90 days from the account that will be debited

Returns:

  • (Integer)


278
279
280
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 278

def debit_transactions_count_90d
  @debit_transactions_count_90d
end

#distinct_ip_addresses_count_30dInteger

The number of distinct IP addresses linked to the same bank account during Plaid authentication in the last 30 days (max 100)

Returns:

  • (Integer)


387
388
389
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 387

def distinct_ip_addresses_count_30d
  @distinct_ip_addresses_count_30d
end

#distinct_ip_addresses_count_3dInteger

The number of distinct IP addresses linked to the same bank account during Plaid authentication in the last 3 days

Returns:

  • (Integer)


377
378
379
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 377

def distinct_ip_addresses_count_3d
  @distinct_ip_addresses_count_3d
end

#distinct_ip_addresses_count_7dInteger

The number of distinct IP addresses linked to the same bank account during Plaid authentication in the last 7 days

Returns:

  • (Integer)


382
383
384
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 382

def distinct_ip_addresses_count_7d
  @distinct_ip_addresses_count_7d
end

#distinct_ip_addresses_count_90dInteger

The number of distinct IP addresses linked to the same bank account during Plaid authentication in the last 90 days (max 100)

Returns:

  • (Integer)


392
393
394
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 392

def distinct_ip_addresses_count_90d
  @distinct_ip_addresses_count_90d
end

#distinct_ssl_tls_connection_sessions_count_30dInteger

The number of distinct SSL/TLS connection sessions linked to the same bank account during Plaid authentication in the last 30 days

Returns:

  • (Integer)


427
428
429
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 427

def distinct_ssl_tls_connection_sessions_count_30d
  @distinct_ssl_tls_connection_sessions_count_30d
end

#distinct_ssl_tls_connection_sessions_count_3dInteger

The number of distinct SSL/TLS connection sessions linked to the same bank account during Plaid authentication in the last 3 days

Returns:

  • (Integer)


417
418
419
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 417

def distinct_ssl_tls_connection_sessions_count_3d
  @distinct_ssl_tls_connection_sessions_count_3d
end

#distinct_ssl_tls_connection_sessions_count_7dInteger

The number of distinct SSL/TLS connection sessions linked to the same bank account during Plaid authentication in the last 7 days

Returns:

  • (Integer)


422
423
424
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 422

def distinct_ssl_tls_connection_sessions_count_7d
  @distinct_ssl_tls_connection_sessions_count_7d
end

#distinct_ssl_tls_connection_sessions_count_90dInteger

The number of distinct SSL/TLS connection sessions linked to the same bank account during Plaid authentication in the last 90 days

Returns:

  • (Integer)


432
433
434
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 432

def distinct_ssl_tls_connection_sessions_count_90d
  @distinct_ssl_tls_connection_sessions_count_90d
end

#distinct_user_agents_count_30dInteger

The number of distinct user agents linked to the same bank account during Plaid authentication in the last 30 days

Returns:

  • (Integer)


407
408
409
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 407

def distinct_user_agents_count_30d
  @distinct_user_agents_count_30d
end

#distinct_user_agents_count_3dInteger

The number of distinct user agents linked to the same bank account during Plaid authentication in the last 3 days

Returns:

  • (Integer)


397
398
399
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 397

def distinct_user_agents_count_3d
  @distinct_user_agents_count_3d
end

#distinct_user_agents_count_7dInteger

The number of distinct user agents linked to the same bank account during Plaid authentication in the last 7 days

Returns:

  • (Integer)


402
403
404
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 402

def distinct_user_agents_count_7d
  @distinct_user_agents_count_7d
end

#distinct_user_agents_count_90dInteger

The number of distinct user agents linked to the same bank account during Plaid authentication in the last 90 days

Returns:

  • (Integer)


412
413
414
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 412

def distinct_user_agents_count_90d
  @distinct_user_agents_count_90d
end

#email_change_count_28dInteger

The number of times the account’s email addresses on file have changed over the past 28 days

Returns:

  • (Integer)


198
199
200
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 198

def email_change_count_28d
  @email_change_count_28d
end

#email_change_count_90dInteger

The number of times the account’s email addresses on file have changed over the past 90 days

Returns:

  • (Integer)


203
204
205
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 203

def email_change_count_90d
  @email_change_count_90d
end

#failed_plaid_non_oauth_authentication_attempts_count_30dInteger

The number of failed non-OAuth authentication attempts via Plaid for this bank account over the past 30 days

Returns:

  • (Integer)


243
244
245
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 243

def failed_plaid_non_oauth_authentication_attempts_count_30d
  @failed_plaid_non_oauth_authentication_attempts_count_30d
end

#failed_plaid_non_oauth_authentication_attempts_count_3dInteger

The number of failed non-OAuth authentication attempts via Plaid for this bank account over the past 3 days

Returns:

  • (Integer)


233
234
235
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 233

def failed_plaid_non_oauth_authentication_attempts_count_3d
  @failed_plaid_non_oauth_authentication_attempts_count_3d
end

#failed_plaid_non_oauth_authentication_attempts_count_7dInteger

The number of failed non-OAuth authentication attempts via Plaid for this bank account over the past 7 days

Returns:

  • (Integer)


238
239
240
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 238

def failed_plaid_non_oauth_authentication_attempts_count_7d
  @failed_plaid_non_oauth_authentication_attempts_count_7d
end

#is_account_closedTrueClass | FalseClass

Indicates if the receiver bank account is closed

Returns:

  • (TrueClass | FalseClass)


368
369
370
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 368

def 
  @is_account_closed
end

#is_account_frozen_or_restrictedTrueClass | FalseClass

Indicates if the receiver bank account is either frozen or restricted

Returns:

  • (TrueClass | FalseClass)


372
373
374
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 372

def 
  @is_account_frozen_or_restricted
end

#is_savings_or_money_market_accountTrueClass | FalseClass

Indicates if the ACH transaction funding account is a savings/money market account

Returns:

  • (TrueClass | FalseClass)


101
102
103
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 101

def 
  @is_savings_or_money_market_account
end

#nsf_overdraft_transactions_count_30dInteger

We parse and analyze historical transaction metadata to identify the number of possible past returns due to non-sufficient funds/overdrafts over the past 30 days from the account that will be debited.

Returns:

  • (Integer)


64
65
66
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 64

def nsf_overdraft_transactions_count_30d
  @nsf_overdraft_transactions_count_30d
end

#nsf_overdraft_transactions_count_60dInteger

We parse and analyze historical transaction metadata to identify the number of possible past returns due to non-sufficient funds/overdrafts over the past 60 days from the account that will be debited.

Returns:

  • (Integer)


70
71
72
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 70

def nsf_overdraft_transactions_count_60d
  @nsf_overdraft_transactions_count_60d
end

#nsf_overdraft_transactions_count_7dInteger

We parse and analyze historical transaction metadata to identify the number of possible past returns due to non-sufficient funds/overdrafts over the past 7 days from the account that will be debited.

Returns:

  • (Integer)


58
59
60
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 58

def nsf_overdraft_transactions_count_7d
  @nsf_overdraft_transactions_count_7d
end

#nsf_overdraft_transactions_count_90dInteger

We parse and analyze historical transaction metadata to identify the number of possible past returns due to non-sufficient funds/overdrafts over the past 90 days from the account that will be debited.

Returns:

  • (Integer)


76
77
78
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 76

def nsf_overdraft_transactions_count_90d
  @nsf_overdraft_transactions_count_90d
end

#p10_eod_balance_30dFloat

The 10th percentile of the end-of-day available balance over the past 30 days of the account that will be debited

Returns:

  • (Float)


156
157
158
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 156

def p10_eod_balance_30d
  @p10_eod_balance_30d
end

#p10_eod_balance_31d_to_60dFloat

The 10th percentile of the end-of-day available balance between day 31 and day 60 over the past 60 days of the account that will be debited

Returns:

  • (Float)


353
354
355
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 353

def p10_eod_balance_31d_to_60d
  @p10_eod_balance_31d_to_60d
end

#p10_eod_balance_60dFloat

The 10th percentile of the end-of-day available balance over the past 60 days of the account that will be debited

Returns:

  • (Float)


161
162
163
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 161

def p10_eod_balance_60d
  @p10_eod_balance_60d
end

#p10_eod_balance_61d_to_90dFloat

The 10th percentile of the end-of-day available balance between day 61 and day 90 over the past 60 days of the account that will be debited

Returns:

  • (Float)


358
359
360
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 358

def p10_eod_balance_61d_to_90d
  @p10_eod_balance_61d_to_90d
end

#p10_eod_balance_90dFloat

The 10th percentile of the end-of-day available balance over the past 90 days of the account that will be debited

Returns:

  • (Float)


166
167
168
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 166

def p10_eod_balance_90d
  @p10_eod_balance_90d
end

#p50_credit_transactions_amount_28dFloat

The 50th percentile of all credit (inflow) transaction amounts over the past 28 days from the account that will be debited

Returns:

  • (Float)


116
117
118
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 116

def p50_credit_transactions_amount_28d
  @p50_credit_transactions_amount_28d
end

#p50_debit_transactions_amount_28dFloat

The 50th percentile of all debit (outflow) transaction amounts over the past 28 days from the account that will be debited

Returns:

  • (Float)


121
122
123
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 121

def p50_debit_transactions_amount_28d
  @p50_debit_transactions_amount_28d
end

#p50_eod_balance_30dFloat

The 50th percentile of the end-of-day available balance over the past 30 days of the account that will be debited

Returns:

  • (Float)


318
319
320
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 318

def p50_eod_balance_30d
  @p50_eod_balance_30d
end

#p50_eod_balance_31d_to_60dFloat

The 50th percentile of the end-of-day available balance between day 31 and day 60 over the past 60 days of the account that will be debited

Returns:

  • (Float)


333
334
335
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 333

def p50_eod_balance_31d_to_60d
  @p50_eod_balance_31d_to_60d
end

#p50_eod_balance_60dFloat

The 50th percentile of the end-of-day available balance over the past 60 days of the account that will be debited

Returns:

  • (Float)


323
324
325
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 323

def p50_eod_balance_60d
  @p50_eod_balance_60d
end

#p50_eod_balance_61d_to_90dFloat

The 50th percentile of the end-of-day available balance between day 61 and day 90 over the past 60 days of the account that will be debited

Returns:

  • (Float)


338
339
340
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 338

def p50_eod_balance_61d_to_90d
  @p50_eod_balance_61d_to_90d
end

#p50_eod_balance_90dFloat

The 50th percentile of the end-of-day available balance over the past 90 days of the account that will be debited

Returns:

  • (Float)


328
329
330
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 328

def p50_eod_balance_90d
  @p50_eod_balance_90d
end

#p90_eod_balance_30dFloat

The 90th percentile of the end-of-day available balance over the past 30 days of the account that will be debited

Returns:

  • (Float)


141
142
143
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 141

def p90_eod_balance_30d
  @p90_eod_balance_30d
end

#p90_eod_balance_31d_to_60dFloat

The 90th percentile of the end-of-day available balance between day 31 and day 60 over the past 60 days of the account that will be debited

Returns:

  • (Float)


343
344
345
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 343

def p90_eod_balance_31d_to_60d
  @p90_eod_balance_31d_to_60d
end

#p90_eod_balance_60dFloat

The 90th percentile of the end-of-day available balance over the past 60 days of the account that will be debited

Returns:

  • (Float)


146
147
148
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 146

def p90_eod_balance_60d
  @p90_eod_balance_60d
end

#p90_eod_balance_61d_to_90dFloat

The 90th percentile of the end-of-day available balance between day 61 and day 90 over the past 60 days of the account that will be debited

Returns:

  • (Float)


348
349
350
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 348

def p90_eod_balance_61d_to_90d
  @p90_eod_balance_61d_to_90d
end

#p90_eod_balance_90dFloat

The 90th percentile of the end-of-day available balance over the past 90 days of the account that will be debited

Returns:

  • (Float)


151
152
153
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 151

def p90_eod_balance_90d
  @p90_eod_balance_90d
end

#p95_credit_transactions_amount_28dFloat

The 95th percentile of all credit (inflow) transaction amounts over the past 28 days from the account that will be debited

Returns:

  • (Float)


126
127
128
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 126

def p95_credit_transactions_amount_28d
  @p95_credit_transactions_amount_28d
end

#p95_debit_transactions_amount_28dFloat

The 95th percentile of all debit (outflow) transaction amounts over the past 28 days from the account that will be debited

Returns:

  • (Float)


131
132
133
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 131

def p95_debit_transactions_amount_28d
  @p95_debit_transactions_amount_28d
end

#phone_change_count_28dInteger

The number of times the account’s phone numbers on file have changed over the past 28 days

Returns:

  • (Integer)


188
189
190
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 188

def phone_change_count_28d
  @phone_change_count_28d
end

#phone_change_count_90dInteger

The number of times the account’s phone numbers on file have changed over the past 90 days

Returns:

  • (Integer)


193
194
195
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 193

def phone_change_count_90d
  @phone_change_count_90d
end

#plaid_connections_count_30dInteger

The number of times the Item has been connected to applications via Plaid over the past 30 days

Returns:

  • (Integer)


91
92
93
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 91

def plaid_connections_count_30d
  @plaid_connections_count_30d
end

#plaid_connections_count_7dInteger

The number of times the Item has been connected to applications via Plaid over the past 7 days

Returns:

  • (Integer)


86
87
88
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 86

def plaid_connections_count_7d
  @plaid_connections_count_7d
end

#plaid_non_oauth_authentication_attempts_count_30dInteger

The number of non-OAuth authentication attempts via Plaid for this bank account over the past 30 days

Returns:

  • (Integer)


228
229
230
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 228

def plaid_non_oauth_authentication_attempts_count_30d
  @plaid_non_oauth_authentication_attempts_count_30d
end

#plaid_non_oauth_authentication_attempts_count_3dInteger

The number of non-OAuth authentication attempts via Plaid for this bank account over the past 3 days

Returns:

  • (Integer)


218
219
220
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 218

def plaid_non_oauth_authentication_attempts_count_3d
  @plaid_non_oauth_authentication_attempts_count_3d
end

#plaid_non_oauth_authentication_attempts_count_7dInteger

The number of non-OAuth authentication attempts via Plaid for this bank account over the past 7 days

Returns:

  • (Integer)


223
224
225
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 223

def plaid_non_oauth_authentication_attempts_count_7d
  @plaid_non_oauth_authentication_attempts_count_7d
end

#total_credit_transactions_amount_10dFloat

The total credit (inflow) transaction amount over the past 10 days from the account that will be debited

Returns:

  • (Float)


106
107
108
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 106

def total_credit_transactions_amount_10d
  @total_credit_transactions_amount_10d
end

#total_credit_transactions_amount_30dFloat

The total credit (inflow) transaction amount over the past 30 days from the account that will be debited

Returns:

  • (Float)


293
294
295
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 293

def total_credit_transactions_amount_30d
  @total_credit_transactions_amount_30d
end

#total_credit_transactions_amount_60dFloat

The total credit (inflow) transaction amount over the past 60 days from the account that will be debited

Returns:

  • (Float)


303
304
305
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 303

def total_credit_transactions_amount_60d
  @total_credit_transactions_amount_60d
end

#total_credit_transactions_amount_90dFloat

The total credit (inflow) transaction amount over the past 90 days from the account that will be debited

Returns:

  • (Float)


313
314
315
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 313

def total_credit_transactions_amount_90d
  @total_credit_transactions_amount_90d
end

#total_debit_transactions_amount_10dFloat

The total debit (outflow) transaction amount over the past 10 days from the account that will be debited

Returns:

  • (Float)


111
112
113
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 111

def total_debit_transactions_amount_10d
  @total_debit_transactions_amount_10d
end

#total_debit_transactions_amount_30dFloat

The total debit (outflow) transaction amount over the past 30 days from the account that will be debited

Returns:

  • (Float)


288
289
290
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 288

def total_debit_transactions_amount_30d
  @total_debit_transactions_amount_30d
end

#total_debit_transactions_amount_60dFloat

The total debit (outflow) transaction amount over the past 60 days from the account that will be debited

Returns:

  • (Float)


298
299
300
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 298

def total_debit_transactions_amount_60d
  @total_debit_transactions_amount_60d
end

#total_debit_transactions_amount_90dFloat

The total debit (outflow) transaction amount over the past 90 days from the account that will be debited

Returns:

  • (Float)


308
309
310
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 308

def total_debit_transactions_amount_90d
  @total_debit_transactions_amount_90d
end

#total_plaid_connections_countInteger

The total number of times the Item has been connected to applications via Plaid

Returns:

  • (Integer)


96
97
98
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 96

def total_plaid_connections_count
  @total_plaid_connections_count
end

#transactions_last_updatedDateTime

Timestamp in [ISO 8601](wikipedia.org/wiki/ISO_8601) format (YYYY-MM-DDTHH:mm:ssZ) indicating the last time that the transactions for the given account have been updated.

Returns:

  • (DateTime)


364
365
366
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 364

def transactions_last_updated
  @transactions_last_updated
end

#unauthorized_transactions_count_30dInteger

We parse and analyze historical transaction metadata to identify the number of possible past returns due to unauthorized transactions over the past 30 days from the account that will be debited.

Returns:

  • (Integer)


40
41
42
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 40

def unauthorized_transactions_count_30d
  @unauthorized_transactions_count_30d
end

#unauthorized_transactions_count_60dInteger

We parse and analyze historical transaction metadata to identify the number of possible past returns due to unauthorized transactions over the past 60 days from the account that will be debited.

Returns:

  • (Integer)


46
47
48
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 46

def unauthorized_transactions_count_60d
  @unauthorized_transactions_count_60d
end

#unauthorized_transactions_count_7dInteger

We parse and analyze historical transaction metadata to identify the number of possible past returns due to unauthorized transactions over the past 7 days from the account that will be debited.

Returns:

  • (Integer)


34
35
36
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 34

def unauthorized_transactions_count_7d
  @unauthorized_transactions_count_7d
end

#unauthorized_transactions_count_90dInteger

We parse and analyze historical transaction metadata to identify the number of possible past returns due to unauthorized transactions over the past 90 days from the account that will be debited.

Returns:

  • (Integer)


52
53
54
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 52

def unauthorized_transactions_count_90d
  @unauthorized_transactions_count_90d
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 1090

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  unauthorized_transactions_count_7d =
    hash.key?('unauthorized_transactions_count_7d') ? hash['unauthorized_transactions_count_7d'] : SKIP
  unauthorized_transactions_count_30d =
    hash.key?('unauthorized_transactions_count_30d') ? hash['unauthorized_transactions_count_30d'] : SKIP
  unauthorized_transactions_count_60d =
    hash.key?('unauthorized_transactions_count_60d') ? hash['unauthorized_transactions_count_60d'] : SKIP
  unauthorized_transactions_count_90d =
    hash.key?('unauthorized_transactions_count_90d') ? hash['unauthorized_transactions_count_90d'] : SKIP
  nsf_overdraft_transactions_count_7d =
    hash.key?('nsf_overdraft_transactions_count_7d') ? hash['nsf_overdraft_transactions_count_7d'] : SKIP
  nsf_overdraft_transactions_count_30d =
    hash.key?('nsf_overdraft_transactions_count_30d') ? hash['nsf_overdraft_transactions_count_30d'] : SKIP
  nsf_overdraft_transactions_count_60d =
    hash.key?('nsf_overdraft_transactions_count_60d') ? hash['nsf_overdraft_transactions_count_60d'] : SKIP
  nsf_overdraft_transactions_count_90d =
    hash.key?('nsf_overdraft_transactions_count_90d') ? hash['nsf_overdraft_transactions_count_90d'] : SKIP
  days_since_first_plaid_connection =
    hash.key?('days_since_first_plaid_connection') ? hash['days_since_first_plaid_connection'] : SKIP
  plaid_connections_count_7d =
    hash.key?('plaid_connections_count_7d') ? hash['plaid_connections_count_7d'] : SKIP
  plaid_connections_count_30d =
    hash.key?('plaid_connections_count_30d') ? hash['plaid_connections_count_30d'] : SKIP
  total_plaid_connections_count =
    hash.key?('total_plaid_connections_count') ? hash['total_plaid_connections_count'] : SKIP
   =
    hash.key?('is_savings_or_money_market_account') ? hash['is_savings_or_money_market_account'] : SKIP
  total_credit_transactions_amount_10d =
    hash.key?('total_credit_transactions_amount_10d') ? hash['total_credit_transactions_amount_10d'] : SKIP
  total_debit_transactions_amount_10d =
    hash.key?('total_debit_transactions_amount_10d') ? hash['total_debit_transactions_amount_10d'] : SKIP
  p50_credit_transactions_amount_28d =
    hash.key?('p50_credit_transactions_amount_28d') ? hash['p50_credit_transactions_amount_28d'] : SKIP
  p50_debit_transactions_amount_28d =
    hash.key?('p50_debit_transactions_amount_28d') ? hash['p50_debit_transactions_amount_28d'] : SKIP
  p95_credit_transactions_amount_28d =
    hash.key?('p95_credit_transactions_amount_28d') ? hash['p95_credit_transactions_amount_28d'] : SKIP
  p95_debit_transactions_amount_28d =
    hash.key?('p95_debit_transactions_amount_28d') ? hash['p95_debit_transactions_amount_28d'] : SKIP
  days_with_negative_balance_count_90d =
    hash.key?('days_with_negative_balance_count_90d') ? hash['days_with_negative_balance_count_90d'] : SKIP
  p90_eod_balance_30d =
    hash.key?('p90_eod_balance_30d') ? hash['p90_eod_balance_30d'] : SKIP
  p90_eod_balance_60d =
    hash.key?('p90_eod_balance_60d') ? hash['p90_eod_balance_60d'] : SKIP
  p90_eod_balance_90d =
    hash.key?('p90_eod_balance_90d') ? hash['p90_eod_balance_90d'] : SKIP
  p10_eod_balance_30d =
    hash.key?('p10_eod_balance_30d') ? hash['p10_eod_balance_30d'] : SKIP
  p10_eod_balance_60d =
    hash.key?('p10_eod_balance_60d') ? hash['p10_eod_balance_60d'] : SKIP
  p10_eod_balance_90d =
    hash.key?('p10_eod_balance_90d') ? hash['p10_eod_balance_90d'] : SKIP
  available_balance =
    hash.key?('available_balance') ? hash['available_balance'] : SKIP
  current_balance =
    hash.key?('current_balance') ? hash['current_balance'] : SKIP
  balance_last_updated = if hash.key?('balance_last_updated')
                           (DateTimeHelper.from_rfc3339(hash['balance_last_updated']) if hash['balance_last_updated'])
                         else
                           SKIP
                         end
  phone_change_count_28d =
    hash.key?('phone_change_count_28d') ? hash['phone_change_count_28d'] : SKIP
  phone_change_count_90d =
    hash.key?('phone_change_count_90d') ? hash['phone_change_count_90d'] : SKIP
  email_change_count_28d =
    hash.key?('email_change_count_28d') ? hash['email_change_count_28d'] : SKIP
  email_change_count_90d =
    hash.key?('email_change_count_90d') ? hash['email_change_count_90d'] : SKIP
  address_change_count_28d =
    hash.key?('address_change_count_28d') ? hash['address_change_count_28d'] : SKIP
  address_change_count_90d =
    hash.key?('address_change_count_90d') ? hash['address_change_count_90d'] : SKIP
  plaid_non_oauth_authentication_attempts_count_3d =
    hash.key?('plaid_non_oauth_authentication_attempts_count_3d') ? hash['plaid_non_oauth_authentication_attempts_count_3d'] : SKIP
  plaid_non_oauth_authentication_attempts_count_7d =
    hash.key?('plaid_non_oauth_authentication_attempts_count_7d') ? hash['plaid_non_oauth_authentication_attempts_count_7d'] : SKIP
  plaid_non_oauth_authentication_attempts_count_30d =
    hash.key?('plaid_non_oauth_authentication_attempts_count_30d') ? hash['plaid_non_oauth_authentication_attempts_count_30d'] : SKIP
  failed_plaid_non_oauth_authentication_attempts_count_3d =
    hash.key?('failed_plaid_non_oauth_authentication_attempts_count_3d') ? hash['failed_plaid_non_oauth_authentication_attempts_count_3d'] : SKIP
  failed_plaid_non_oauth_authentication_attempts_count_7d =
    hash.key?('failed_plaid_non_oauth_authentication_attempts_count_7d') ? hash['failed_plaid_non_oauth_authentication_attempts_count_7d'] : SKIP
  failed_plaid_non_oauth_authentication_attempts_count_30d =
    hash.key?('failed_plaid_non_oauth_authentication_attempts_count_30d') ? hash['failed_plaid_non_oauth_authentication_attempts_count_30d'] : SKIP
  debit_transactions_count_10d =
    hash.key?('debit_transactions_count_10d') ? hash['debit_transactions_count_10d'] : SKIP
  credit_transactions_count_10d =
    hash.key?('credit_transactions_count_10d') ? hash['credit_transactions_count_10d'] : SKIP
  debit_transactions_count_30d =
    hash.key?('debit_transactions_count_30d') ? hash['debit_transactions_count_30d'] : SKIP
  credit_transactions_count_30d =
    hash.key?('credit_transactions_count_30d') ? hash['credit_transactions_count_30d'] : SKIP
  debit_transactions_count_60d =
    hash.key?('debit_transactions_count_60d') ? hash['debit_transactions_count_60d'] : SKIP
  credit_transactions_count_60d =
    hash.key?('credit_transactions_count_60d') ? hash['credit_transactions_count_60d'] : SKIP
  debit_transactions_count_90d =
    hash.key?('debit_transactions_count_90d') ? hash['debit_transactions_count_90d'] : SKIP
  credit_transactions_count_90d =
    hash.key?('credit_transactions_count_90d') ? hash['credit_transactions_count_90d'] : SKIP
  total_debit_transactions_amount_30d =
    hash.key?('total_debit_transactions_amount_30d') ? hash['total_debit_transactions_amount_30d'] : SKIP
  total_credit_transactions_amount_30d =
    hash.key?('total_credit_transactions_amount_30d') ? hash['total_credit_transactions_amount_30d'] : SKIP
  total_debit_transactions_amount_60d =
    hash.key?('total_debit_transactions_amount_60d') ? hash['total_debit_transactions_amount_60d'] : SKIP
  total_credit_transactions_amount_60d =
    hash.key?('total_credit_transactions_amount_60d') ? hash['total_credit_transactions_amount_60d'] : SKIP
  total_debit_transactions_amount_90d =
    hash.key?('total_debit_transactions_amount_90d') ? hash['total_debit_transactions_amount_90d'] : SKIP
  total_credit_transactions_amount_90d =
    hash.key?('total_credit_transactions_amount_90d') ? hash['total_credit_transactions_amount_90d'] : SKIP
  p50_eod_balance_30d =
    hash.key?('p50_eod_balance_30d') ? hash['p50_eod_balance_30d'] : SKIP
  p50_eod_balance_60d =
    hash.key?('p50_eod_balance_60d') ? hash['p50_eod_balance_60d'] : SKIP
  p50_eod_balance_90d =
    hash.key?('p50_eod_balance_90d') ? hash['p50_eod_balance_90d'] : SKIP
  p50_eod_balance_31d_to_60d =
    hash.key?('p50_eod_balance_31d_to_60d') ? hash['p50_eod_balance_31d_to_60d'] : SKIP
  p50_eod_balance_61d_to_90d =
    hash.key?('p50_eod_balance_61d_to_90d') ? hash['p50_eod_balance_61d_to_90d'] : SKIP
  p90_eod_balance_31d_to_60d =
    hash.key?('p90_eod_balance_31d_to_60d') ? hash['p90_eod_balance_31d_to_60d'] : SKIP
  p90_eod_balance_61d_to_90d =
    hash.key?('p90_eod_balance_61d_to_90d') ? hash['p90_eod_balance_61d_to_90d'] : SKIP
  p10_eod_balance_31d_to_60d =
    hash.key?('p10_eod_balance_31d_to_60d') ? hash['p10_eod_balance_31d_to_60d'] : SKIP
  p10_eod_balance_61d_to_90d =
    hash.key?('p10_eod_balance_61d_to_90d') ? hash['p10_eod_balance_61d_to_90d'] : SKIP
  transactions_last_updated = if hash.key?('transactions_last_updated')
                                (DateTimeHelper.from_rfc3339(hash['transactions_last_updated']) if hash['transactions_last_updated'])
                              else
                                SKIP
                              end
   =
    hash.key?('is_account_closed') ? hash['is_account_closed'] : SKIP
   =
    hash.key?('is_account_frozen_or_restricted') ? hash['is_account_frozen_or_restricted'] : SKIP
  distinct_ip_addresses_count_3d =
    hash.key?('distinct_ip_addresses_count_3d') ? hash['distinct_ip_addresses_count_3d'] : SKIP
  distinct_ip_addresses_count_7d =
    hash.key?('distinct_ip_addresses_count_7d') ? hash['distinct_ip_addresses_count_7d'] : SKIP
  distinct_ip_addresses_count_30d =
    hash.key?('distinct_ip_addresses_count_30d') ? hash['distinct_ip_addresses_count_30d'] : SKIP
  distinct_ip_addresses_count_90d =
    hash.key?('distinct_ip_addresses_count_90d') ? hash['distinct_ip_addresses_count_90d'] : SKIP
  distinct_user_agents_count_3d =
    hash.key?('distinct_user_agents_count_3d') ? hash['distinct_user_agents_count_3d'] : SKIP
  distinct_user_agents_count_7d =
    hash.key?('distinct_user_agents_count_7d') ? hash['distinct_user_agents_count_7d'] : SKIP
  distinct_user_agents_count_30d =
    hash.key?('distinct_user_agents_count_30d') ? hash['distinct_user_agents_count_30d'] : SKIP
  distinct_user_agents_count_90d =
    hash.key?('distinct_user_agents_count_90d') ? hash['distinct_user_agents_count_90d'] : SKIP
  distinct_ssl_tls_connection_sessions_count_3d =
    hash.key?('distinct_ssl_tls_connection_sessions_count_3d') ? hash['distinct_ssl_tls_connection_sessions_count_3d'] : SKIP
  distinct_ssl_tls_connection_sessions_count_7d =
    hash.key?('distinct_ssl_tls_connection_sessions_count_7d') ? hash['distinct_ssl_tls_connection_sessions_count_7d'] : SKIP
  distinct_ssl_tls_connection_sessions_count_30d =
    hash.key?('distinct_ssl_tls_connection_sessions_count_30d') ? hash['distinct_ssl_tls_connection_sessions_count_30d'] : SKIP
  distinct_ssl_tls_connection_sessions_count_90d =
    hash.key?('distinct_ssl_tls_connection_sessions_count_90d') ? hash['distinct_ssl_tls_connection_sessions_count_90d'] : SKIP
   =
    hash.key?('days_since_account_opening') ? hash['days_since_account_opening'] : SKIP
  balance_to_transaction_amount_ratio =
    hash.key?('balance_to_transaction_amount_ratio') ? hash['balance_to_transaction_amount_ratio'] : SKIP

  # Create a new hash for additional properties, removing known properties.
  new_hash = hash.reject { |k, _| names.value?(k) }

  additional_properties = APIHelper.get_additional_properties(
    new_hash, proc { |value| value }
  )

  # Create object from extracted values.
  SignalEvaluateCoreAttributes.new(unauthorized_transactions_count_7d: unauthorized_transactions_count_7d,
                                   unauthorized_transactions_count_30d: unauthorized_transactions_count_30d,
                                   unauthorized_transactions_count_60d: unauthorized_transactions_count_60d,
                                   unauthorized_transactions_count_90d: unauthorized_transactions_count_90d,
                                   nsf_overdraft_transactions_count_7d: nsf_overdraft_transactions_count_7d,
                                   nsf_overdraft_transactions_count_30d: nsf_overdraft_transactions_count_30d,
                                   nsf_overdraft_transactions_count_60d: nsf_overdraft_transactions_count_60d,
                                   nsf_overdraft_transactions_count_90d: nsf_overdraft_transactions_count_90d,
                                   days_since_first_plaid_connection: days_since_first_plaid_connection,
                                   plaid_connections_count_7d: plaid_connections_count_7d,
                                   plaid_connections_count_30d: plaid_connections_count_30d,
                                   total_plaid_connections_count: total_plaid_connections_count,
                                   is_savings_or_money_market_account: ,
                                   total_credit_transactions_amount_10d: total_credit_transactions_amount_10d,
                                   total_debit_transactions_amount_10d: total_debit_transactions_amount_10d,
                                   p50_credit_transactions_amount_28d: p50_credit_transactions_amount_28d,
                                   p50_debit_transactions_amount_28d: p50_debit_transactions_amount_28d,
                                   p95_credit_transactions_amount_28d: p95_credit_transactions_amount_28d,
                                   p95_debit_transactions_amount_28d: p95_debit_transactions_amount_28d,
                                   days_with_negative_balance_count_90d: days_with_negative_balance_count_90d,
                                   p90_eod_balance_30d: p90_eod_balance_30d,
                                   p90_eod_balance_60d: p90_eod_balance_60d,
                                   p90_eod_balance_90d: p90_eod_balance_90d,
                                   p10_eod_balance_30d: p10_eod_balance_30d,
                                   p10_eod_balance_60d: p10_eod_balance_60d,
                                   p10_eod_balance_90d: p10_eod_balance_90d,
                                   available_balance: available_balance,
                                   current_balance: current_balance,
                                   balance_last_updated: balance_last_updated,
                                   phone_change_count_28d: phone_change_count_28d,
                                   phone_change_count_90d: phone_change_count_90d,
                                   email_change_count_28d: email_change_count_28d,
                                   email_change_count_90d: email_change_count_90d,
                                   address_change_count_28d: address_change_count_28d,
                                   address_change_count_90d: address_change_count_90d,
                                   plaid_non_oauth_authentication_attempts_count_3d: plaid_non_oauth_authentication_attempts_count_3d,
                                   plaid_non_oauth_authentication_attempts_count_7d: plaid_non_oauth_authentication_attempts_count_7d,
                                   plaid_non_oauth_authentication_attempts_count_30d: plaid_non_oauth_authentication_attempts_count_30d,
                                   failed_plaid_non_oauth_authentication_attempts_count_3d: failed_plaid_non_oauth_authentication_attempts_count_3d,
                                   failed_plaid_non_oauth_authentication_attempts_count_7d: failed_plaid_non_oauth_authentication_attempts_count_7d,
                                   failed_plaid_non_oauth_authentication_attempts_count_30d: failed_plaid_non_oauth_authentication_attempts_count_30d,
                                   debit_transactions_count_10d: debit_transactions_count_10d,
                                   credit_transactions_count_10d: credit_transactions_count_10d,
                                   debit_transactions_count_30d: debit_transactions_count_30d,
                                   credit_transactions_count_30d: credit_transactions_count_30d,
                                   debit_transactions_count_60d: debit_transactions_count_60d,
                                   credit_transactions_count_60d: credit_transactions_count_60d,
                                   debit_transactions_count_90d: debit_transactions_count_90d,
                                   credit_transactions_count_90d: credit_transactions_count_90d,
                                   total_debit_transactions_amount_30d: total_debit_transactions_amount_30d,
                                   total_credit_transactions_amount_30d: total_credit_transactions_amount_30d,
                                   total_debit_transactions_amount_60d: total_debit_transactions_amount_60d,
                                   total_credit_transactions_amount_60d: total_credit_transactions_amount_60d,
                                   total_debit_transactions_amount_90d: total_debit_transactions_amount_90d,
                                   total_credit_transactions_amount_90d: total_credit_transactions_amount_90d,
                                   p50_eod_balance_30d: p50_eod_balance_30d,
                                   p50_eod_balance_60d: p50_eod_balance_60d,
                                   p50_eod_balance_90d: p50_eod_balance_90d,
                                   p50_eod_balance_31d_to_60d: p50_eod_balance_31d_to_60d,
                                   p50_eod_balance_61d_to_90d: p50_eod_balance_61d_to_90d,
                                   p90_eod_balance_31d_to_60d: p90_eod_balance_31d_to_60d,
                                   p90_eod_balance_61d_to_90d: p90_eod_balance_61d_to_90d,
                                   p10_eod_balance_31d_to_60d: p10_eod_balance_31d_to_60d,
                                   p10_eod_balance_61d_to_90d: p10_eod_balance_61d_to_90d,
                                   transactions_last_updated: transactions_last_updated,
                                   is_account_closed: ,
                                   is_account_frozen_or_restricted: ,
                                   distinct_ip_addresses_count_3d: distinct_ip_addresses_count_3d,
                                   distinct_ip_addresses_count_7d: distinct_ip_addresses_count_7d,
                                   distinct_ip_addresses_count_30d: distinct_ip_addresses_count_30d,
                                   distinct_ip_addresses_count_90d: distinct_ip_addresses_count_90d,
                                   distinct_user_agents_count_3d: distinct_user_agents_count_3d,
                                   distinct_user_agents_count_7d: distinct_user_agents_count_7d,
                                   distinct_user_agents_count_30d: distinct_user_agents_count_30d,
                                   distinct_user_agents_count_90d: distinct_user_agents_count_90d,
                                   distinct_ssl_tls_connection_sessions_count_3d: distinct_ssl_tls_connection_sessions_count_3d,
                                   distinct_ssl_tls_connection_sessions_count_7d: distinct_ssl_tls_connection_sessions_count_7d,
                                   distinct_ssl_tls_connection_sessions_count_30d: distinct_ssl_tls_connection_sessions_count_30d,
                                   distinct_ssl_tls_connection_sessions_count_90d: distinct_ssl_tls_connection_sessions_count_90d,
                                   days_since_account_opening: ,
                                   balance_to_transaction_amount_ratio: balance_to_transaction_amount_ratio,
                                   additional_properties: additional_properties)
end

.namesObject

A mapping from model property names to API property names.



446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 446

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['unauthorized_transactions_count_7d'] =
    'unauthorized_transactions_count_7d'
  @_hash['unauthorized_transactions_count_30d'] =
    'unauthorized_transactions_count_30d'
  @_hash['unauthorized_transactions_count_60d'] =
    'unauthorized_transactions_count_60d'
  @_hash['unauthorized_transactions_count_90d'] =
    'unauthorized_transactions_count_90d'
  @_hash['nsf_overdraft_transactions_count_7d'] =
    'nsf_overdraft_transactions_count_7d'
  @_hash['nsf_overdraft_transactions_count_30d'] =
    'nsf_overdraft_transactions_count_30d'
  @_hash['nsf_overdraft_transactions_count_60d'] =
    'nsf_overdraft_transactions_count_60d'
  @_hash['nsf_overdraft_transactions_count_90d'] =
    'nsf_overdraft_transactions_count_90d'
  @_hash['days_since_first_plaid_connection'] =
    'days_since_first_plaid_connection'
  @_hash['plaid_connections_count_7d'] = 'plaid_connections_count_7d'
  @_hash['plaid_connections_count_30d'] = 'plaid_connections_count_30d'
  @_hash['total_plaid_connections_count'] =
    'total_plaid_connections_count'
  @_hash['is_savings_or_money_market_account'] =
    'is_savings_or_money_market_account'
  @_hash['total_credit_transactions_amount_10d'] =
    'total_credit_transactions_amount_10d'
  @_hash['total_debit_transactions_amount_10d'] =
    'total_debit_transactions_amount_10d'
  @_hash['p50_credit_transactions_amount_28d'] =
    'p50_credit_transactions_amount_28d'
  @_hash['p50_debit_transactions_amount_28d'] =
    'p50_debit_transactions_amount_28d'
  @_hash['p95_credit_transactions_amount_28d'] =
    'p95_credit_transactions_amount_28d'
  @_hash['p95_debit_transactions_amount_28d'] =
    'p95_debit_transactions_amount_28d'
  @_hash['days_with_negative_balance_count_90d'] =
    'days_with_negative_balance_count_90d'
  @_hash['p90_eod_balance_30d'] = 'p90_eod_balance_30d'
  @_hash['p90_eod_balance_60d'] = 'p90_eod_balance_60d'
  @_hash['p90_eod_balance_90d'] = 'p90_eod_balance_90d'
  @_hash['p10_eod_balance_30d'] = 'p10_eod_balance_30d'
  @_hash['p10_eod_balance_60d'] = 'p10_eod_balance_60d'
  @_hash['p10_eod_balance_90d'] = 'p10_eod_balance_90d'
  @_hash['available_balance'] = 'available_balance'
  @_hash['current_balance'] = 'current_balance'
  @_hash['balance_last_updated'] = 'balance_last_updated'
  @_hash['phone_change_count_28d'] = 'phone_change_count_28d'
  @_hash['phone_change_count_90d'] = 'phone_change_count_90d'
  @_hash['email_change_count_28d'] = 'email_change_count_28d'
  @_hash['email_change_count_90d'] = 'email_change_count_90d'
  @_hash['address_change_count_28d'] = 'address_change_count_28d'
  @_hash['address_change_count_90d'] = 'address_change_count_90d'
  @_hash['plaid_non_oauth_authentication_attempts_count_3d'] =
    'plaid_non_oauth_authentication_attempts_count_3d'
  @_hash['plaid_non_oauth_authentication_attempts_count_7d'] =
    'plaid_non_oauth_authentication_attempts_count_7d'
  @_hash['plaid_non_oauth_authentication_attempts_count_30d'] =
    'plaid_non_oauth_authentication_attempts_count_30d'
  @_hash['failed_plaid_non_oauth_authentication_attempts_count_3d'] =
    'failed_plaid_non_oauth_authentication_attempts_count_3d'
  @_hash['failed_plaid_non_oauth_authentication_attempts_count_7d'] =
    'failed_plaid_non_oauth_authentication_attempts_count_7d'
  @_hash['failed_plaid_non_oauth_authentication_attempts_count_30d'] =
    'failed_plaid_non_oauth_authentication_attempts_count_30d'
  @_hash['debit_transactions_count_10d'] = 'debit_transactions_count_10d'
  @_hash['credit_transactions_count_10d'] =
    'credit_transactions_count_10d'
  @_hash['debit_transactions_count_30d'] = 'debit_transactions_count_30d'
  @_hash['credit_transactions_count_30d'] =
    'credit_transactions_count_30d'
  @_hash['debit_transactions_count_60d'] = 'debit_transactions_count_60d'
  @_hash['credit_transactions_count_60d'] =
    'credit_transactions_count_60d'
  @_hash['debit_transactions_count_90d'] = 'debit_transactions_count_90d'
  @_hash['credit_transactions_count_90d'] =
    'credit_transactions_count_90d'
  @_hash['total_debit_transactions_amount_30d'] =
    'total_debit_transactions_amount_30d'
  @_hash['total_credit_transactions_amount_30d'] =
    'total_credit_transactions_amount_30d'
  @_hash['total_debit_transactions_amount_60d'] =
    'total_debit_transactions_amount_60d'
  @_hash['total_credit_transactions_amount_60d'] =
    'total_credit_transactions_amount_60d'
  @_hash['total_debit_transactions_amount_90d'] =
    'total_debit_transactions_amount_90d'
  @_hash['total_credit_transactions_amount_90d'] =
    'total_credit_transactions_amount_90d'
  @_hash['p50_eod_balance_30d'] = 'p50_eod_balance_30d'
  @_hash['p50_eod_balance_60d'] = 'p50_eod_balance_60d'
  @_hash['p50_eod_balance_90d'] = 'p50_eod_balance_90d'
  @_hash['p50_eod_balance_31d_to_60d'] = 'p50_eod_balance_31d_to_60d'
  @_hash['p50_eod_balance_61d_to_90d'] = 'p50_eod_balance_61d_to_90d'
  @_hash['p90_eod_balance_31d_to_60d'] = 'p90_eod_balance_31d_to_60d'
  @_hash['p90_eod_balance_61d_to_90d'] = 'p90_eod_balance_61d_to_90d'
  @_hash['p10_eod_balance_31d_to_60d'] = 'p10_eod_balance_31d_to_60d'
  @_hash['p10_eod_balance_61d_to_90d'] = 'p10_eod_balance_61d_to_90d'
  @_hash['transactions_last_updated'] = 'transactions_last_updated'
  @_hash['is_account_closed'] = 'is_account_closed'
  @_hash['is_account_frozen_or_restricted'] =
    'is_account_frozen_or_restricted'
  @_hash['distinct_ip_addresses_count_3d'] =
    'distinct_ip_addresses_count_3d'
  @_hash['distinct_ip_addresses_count_7d'] =
    'distinct_ip_addresses_count_7d'
  @_hash['distinct_ip_addresses_count_30d'] =
    'distinct_ip_addresses_count_30d'
  @_hash['distinct_ip_addresses_count_90d'] =
    'distinct_ip_addresses_count_90d'
  @_hash['distinct_user_agents_count_3d'] =
    'distinct_user_agents_count_3d'
  @_hash['distinct_user_agents_count_7d'] =
    'distinct_user_agents_count_7d'
  @_hash['distinct_user_agents_count_30d'] =
    'distinct_user_agents_count_30d'
  @_hash['distinct_user_agents_count_90d'] =
    'distinct_user_agents_count_90d'
  @_hash['distinct_ssl_tls_connection_sessions_count_3d'] =
    'distinct_ssl_tls_connection_sessions_count_3d'
  @_hash['distinct_ssl_tls_connection_sessions_count_7d'] =
    'distinct_ssl_tls_connection_sessions_count_7d'
  @_hash['distinct_ssl_tls_connection_sessions_count_30d'] =
    'distinct_ssl_tls_connection_sessions_count_30d'
  @_hash['distinct_ssl_tls_connection_sessions_count_90d'] =
    'distinct_ssl_tls_connection_sessions_count_90d'
  @_hash['days_since_account_opening'] = 'days_since_account_opening'
  @_hash['balance_to_transaction_amount_ratio'] =
    'balance_to_transaction_amount_ratio'
  @_hash
end

.nullablesObject

An array for nullable fields



668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 668

def self.nullables
  %w[
    unauthorized_transactions_count_7d
    unauthorized_transactions_count_30d
    unauthorized_transactions_count_60d
    unauthorized_transactions_count_90d
    nsf_overdraft_transactions_count_7d
    nsf_overdraft_transactions_count_30d
    nsf_overdraft_transactions_count_60d
    nsf_overdraft_transactions_count_90d
    days_since_first_plaid_connection
    plaid_connections_count_7d
    plaid_connections_count_30d
    total_plaid_connections_count
    is_savings_or_money_market_account
    total_credit_transactions_amount_10d
    total_debit_transactions_amount_10d
    p50_credit_transactions_amount_28d
    p50_debit_transactions_amount_28d
    p95_credit_transactions_amount_28d
    p95_debit_transactions_amount_28d
    days_with_negative_balance_count_90d
    p90_eod_balance_30d
    p90_eod_balance_60d
    p90_eod_balance_90d
    p10_eod_balance_30d
    p10_eod_balance_60d
    p10_eod_balance_90d
    available_balance
    current_balance
    balance_last_updated
    phone_change_count_28d
    phone_change_count_90d
    email_change_count_28d
    email_change_count_90d
    address_change_count_28d
    address_change_count_90d
    plaid_non_oauth_authentication_attempts_count_3d
    plaid_non_oauth_authentication_attempts_count_7d
    plaid_non_oauth_authentication_attempts_count_30d
    failed_plaid_non_oauth_authentication_attempts_count_3d
    failed_plaid_non_oauth_authentication_attempts_count_7d
    failed_plaid_non_oauth_authentication_attempts_count_30d
    debit_transactions_count_10d
    credit_transactions_count_10d
    debit_transactions_count_30d
    credit_transactions_count_30d
    debit_transactions_count_60d
    credit_transactions_count_60d
    debit_transactions_count_90d
    credit_transactions_count_90d
    total_debit_transactions_amount_30d
    total_credit_transactions_amount_30d
    total_debit_transactions_amount_60d
    total_credit_transactions_amount_60d
    total_debit_transactions_amount_90d
    total_credit_transactions_amount_90d
    p50_eod_balance_30d
    p50_eod_balance_60d
    p50_eod_balance_90d
    p50_eod_balance_31d_to_60d
    p50_eod_balance_61d_to_90d
    p90_eod_balance_31d_to_60d
    p90_eod_balance_61d_to_90d
    p10_eod_balance_31d_to_60d
    p10_eod_balance_61d_to_90d
    transactions_last_updated
    is_account_closed
    is_account_frozen_or_restricted
    distinct_ip_addresses_count_3d
    distinct_ip_addresses_count_7d
    distinct_ip_addresses_count_30d
    distinct_ip_addresses_count_90d
    distinct_user_agents_count_3d
    distinct_user_agents_count_7d
    distinct_user_agents_count_30d
    distinct_user_agents_count_90d
    distinct_ssl_tls_connection_sessions_count_3d
    distinct_ssl_tls_connection_sessions_count_7d
    distinct_ssl_tls_connection_sessions_count_30d
    distinct_ssl_tls_connection_sessions_count_90d
    days_since_account_opening
    balance_to_transaction_amount_ratio
  ]
end

.optionalsObject

An array for optional fields



581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 581

def self.optionals
  %w[
    unauthorized_transactions_count_7d
    unauthorized_transactions_count_30d
    unauthorized_transactions_count_60d
    unauthorized_transactions_count_90d
    nsf_overdraft_transactions_count_7d
    nsf_overdraft_transactions_count_30d
    nsf_overdraft_transactions_count_60d
    nsf_overdraft_transactions_count_90d
    days_since_first_plaid_connection
    plaid_connections_count_7d
    plaid_connections_count_30d
    total_plaid_connections_count
    is_savings_or_money_market_account
    total_credit_transactions_amount_10d
    total_debit_transactions_amount_10d
    p50_credit_transactions_amount_28d
    p50_debit_transactions_amount_28d
    p95_credit_transactions_amount_28d
    p95_debit_transactions_amount_28d
    days_with_negative_balance_count_90d
    p90_eod_balance_30d
    p90_eod_balance_60d
    p90_eod_balance_90d
    p10_eod_balance_30d
    p10_eod_balance_60d
    p10_eod_balance_90d
    available_balance
    current_balance
    balance_last_updated
    phone_change_count_28d
    phone_change_count_90d
    email_change_count_28d
    email_change_count_90d
    address_change_count_28d
    address_change_count_90d
    plaid_non_oauth_authentication_attempts_count_3d
    plaid_non_oauth_authentication_attempts_count_7d
    plaid_non_oauth_authentication_attempts_count_30d
    failed_plaid_non_oauth_authentication_attempts_count_3d
    failed_plaid_non_oauth_authentication_attempts_count_7d
    failed_plaid_non_oauth_authentication_attempts_count_30d
    debit_transactions_count_10d
    credit_transactions_count_10d
    debit_transactions_count_30d
    credit_transactions_count_30d
    debit_transactions_count_60d
    credit_transactions_count_60d
    debit_transactions_count_90d
    credit_transactions_count_90d
    total_debit_transactions_amount_30d
    total_credit_transactions_amount_30d
    total_debit_transactions_amount_60d
    total_credit_transactions_amount_60d
    total_debit_transactions_amount_90d
    total_credit_transactions_amount_90d
    p50_eod_balance_30d
    p50_eod_balance_60d
    p50_eod_balance_90d
    p50_eod_balance_31d_to_60d
    p50_eod_balance_61d_to_90d
    p90_eod_balance_31d_to_60d
    p90_eod_balance_61d_to_90d
    p10_eod_balance_31d_to_60d
    p10_eod_balance_61d_to_90d
    transactions_last_updated
    is_account_closed
    is_account_frozen_or_restricted
    distinct_ip_addresses_count_3d
    distinct_ip_addresses_count_7d
    distinct_ip_addresses_count_30d
    distinct_ip_addresses_count_90d
    distinct_user_agents_count_3d
    distinct_user_agents_count_7d
    distinct_user_agents_count_30d
    distinct_user_agents_count_90d
    distinct_ssl_tls_connection_sessions_count_3d
    distinct_ssl_tls_connection_sessions_count_7d
    distinct_ssl_tls_connection_sessions_count_30d
    distinct_ssl_tls_connection_sessions_count_90d
    days_since_account_opening
    balance_to_transaction_amount_ratio
  ]
end

Instance Method Details

#inspectObject

Provides a debugging-friendly string with detailed object information.



1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 1452

def inspect
  class_name = self.class.name.split('::').last
  "<#{class_name} unauthorized_transactions_count_7d:"\
  " #{@unauthorized_transactions_count_7d.inspect}, unauthorized_transactions_count_30d:"\
  " #{@unauthorized_transactions_count_30d.inspect}, unauthorized_transactions_count_60d:"\
  " #{@unauthorized_transactions_count_60d.inspect}, unauthorized_transactions_count_90d:"\
  " #{@unauthorized_transactions_count_90d.inspect}, nsf_overdraft_transactions_count_7d:"\
  " #{@nsf_overdraft_transactions_count_7d.inspect}, nsf_overdraft_transactions_count_30d:"\
  " #{@nsf_overdraft_transactions_count_30d.inspect}, nsf_overdraft_transactions_count_60d:"\
  " #{@nsf_overdraft_transactions_count_60d.inspect}, nsf_overdraft_transactions_count_90d:"\
  " #{@nsf_overdraft_transactions_count_90d.inspect}, days_since_first_plaid_connection:"\
  " #{@days_since_first_plaid_connection.inspect}, plaid_connections_count_7d:"\
  " #{@plaid_connections_count_7d.inspect}, plaid_connections_count_30d:"\
  " #{@plaid_connections_count_30d.inspect}, total_plaid_connections_count:"\
  " #{@total_plaid_connections_count.inspect}, is_savings_or_money_market_account:"\
  " #{@is_savings_or_money_market_account.inspect}, total_credit_transactions_amount_10d:"\
  " #{@total_credit_transactions_amount_10d.inspect}, total_debit_transactions_amount_10d:"\
  " #{@total_debit_transactions_amount_10d.inspect}, p50_credit_transactions_amount_28d:"\
  " #{@p50_credit_transactions_amount_28d.inspect}, p50_debit_transactions_amount_28d:"\
  " #{@p50_debit_transactions_amount_28d.inspect}, p95_credit_transactions_amount_28d:"\
  " #{@p95_credit_transactions_amount_28d.inspect}, p95_debit_transactions_amount_28d:"\
  " #{@p95_debit_transactions_amount_28d.inspect}, days_with_negative_balance_count_90d:"\
  " #{@days_with_negative_balance_count_90d.inspect}, p90_eod_balance_30d:"\
  " #{@p90_eod_balance_30d.inspect}, p90_eod_balance_60d: #{@p90_eod_balance_60d.inspect},"\
  " p90_eod_balance_90d: #{@p90_eod_balance_90d.inspect}, p10_eod_balance_30d:"\
  " #{@p10_eod_balance_30d.inspect}, p10_eod_balance_60d: #{@p10_eod_balance_60d.inspect},"\
  " p10_eod_balance_90d: #{@p10_eod_balance_90d.inspect}, available_balance:"\
  " #{@available_balance.inspect}, current_balance: #{@current_balance.inspect},"\
  " balance_last_updated: #{@balance_last_updated.inspect}, phone_change_count_28d:"\
  " #{@phone_change_count_28d.inspect}, phone_change_count_90d:"\
  " #{@phone_change_count_90d.inspect}, email_change_count_28d:"\
  " #{@email_change_count_28d.inspect}, email_change_count_90d:"\
  " #{@email_change_count_90d.inspect}, address_change_count_28d:"\
  " #{@address_change_count_28d.inspect}, address_change_count_90d:"\
  " #{@address_change_count_90d.inspect}, plaid_non_oauth_authentication_attempts_count_3d:"\
  " #{@plaid_non_oauth_authentication_attempts_count_3d.inspect},"\
  ' plaid_non_oauth_authentication_attempts_count_7d:'\
  " #{@plaid_non_oauth_authentication_attempts_count_7d.inspect},"\
  ' plaid_non_oauth_authentication_attempts_count_30d:'\
  " #{@plaid_non_oauth_authentication_attempts_count_30d.inspect},"\
  ' failed_plaid_non_oauth_authentication_attempts_count_3d:'\
  " #{@failed_plaid_non_oauth_authentication_attempts_count_3d.inspect},"\
  ' failed_plaid_non_oauth_authentication_attempts_count_7d:'\
  " #{@failed_plaid_non_oauth_authentication_attempts_count_7d.inspect},"\
  ' failed_plaid_non_oauth_authentication_attempts_count_30d:'\
  " #{@failed_plaid_non_oauth_authentication_attempts_count_30d.inspect},"\
  " debit_transactions_count_10d: #{@debit_transactions_count_10d.inspect},"\
  " credit_transactions_count_10d: #{@credit_transactions_count_10d.inspect},"\
  " debit_transactions_count_30d: #{@debit_transactions_count_30d.inspect},"\
  " credit_transactions_count_30d: #{@credit_transactions_count_30d.inspect},"\
  " debit_transactions_count_60d: #{@debit_transactions_count_60d.inspect},"\
  " credit_transactions_count_60d: #{@credit_transactions_count_60d.inspect},"\
  " debit_transactions_count_90d: #{@debit_transactions_count_90d.inspect},"\
  " credit_transactions_count_90d: #{@credit_transactions_count_90d.inspect},"\
  " total_debit_transactions_amount_30d: #{@total_debit_transactions_amount_30d.inspect},"\
  " total_credit_transactions_amount_30d: #{@total_credit_transactions_amount_30d.inspect},"\
  " total_debit_transactions_amount_60d: #{@total_debit_transactions_amount_60d.inspect},"\
  " total_credit_transactions_amount_60d: #{@total_credit_transactions_amount_60d.inspect},"\
  " total_debit_transactions_amount_90d: #{@total_debit_transactions_amount_90d.inspect},"\
  " total_credit_transactions_amount_90d: #{@total_credit_transactions_amount_90d.inspect},"\
  " p50_eod_balance_30d: #{@p50_eod_balance_30d.inspect}, p50_eod_balance_60d:"\
  " #{@p50_eod_balance_60d.inspect}, p50_eod_balance_90d: #{@p50_eod_balance_90d.inspect},"\
  " p50_eod_balance_31d_to_60d: #{@p50_eod_balance_31d_to_60d.inspect},"\
  " p50_eod_balance_61d_to_90d: #{@p50_eod_balance_61d_to_90d.inspect},"\
  " p90_eod_balance_31d_to_60d: #{@p90_eod_balance_31d_to_60d.inspect},"\
  " p90_eod_balance_61d_to_90d: #{@p90_eod_balance_61d_to_90d.inspect},"\
  " p10_eod_balance_31d_to_60d: #{@p10_eod_balance_31d_to_60d.inspect},"\
  " p10_eod_balance_61d_to_90d: #{@p10_eod_balance_61d_to_90d.inspect},"\
  " transactions_last_updated: #{@transactions_last_updated.inspect}, is_account_closed:"\
  " #{@is_account_closed.inspect}, is_account_frozen_or_restricted:"\
  " #{@is_account_frozen_or_restricted.inspect}, distinct_ip_addresses_count_3d:"\
  " #{@distinct_ip_addresses_count_3d.inspect}, distinct_ip_addresses_count_7d:"\
  " #{@distinct_ip_addresses_count_7d.inspect}, distinct_ip_addresses_count_30d:"\
  " #{@distinct_ip_addresses_count_30d.inspect}, distinct_ip_addresses_count_90d:"\
  " #{@distinct_ip_addresses_count_90d.inspect}, distinct_user_agents_count_3d:"\
  " #{@distinct_user_agents_count_3d.inspect}, distinct_user_agents_count_7d:"\
  " #{@distinct_user_agents_count_7d.inspect}, distinct_user_agents_count_30d:"\
  " #{@distinct_user_agents_count_30d.inspect}, distinct_user_agents_count_90d:"\
  " #{@distinct_user_agents_count_90d.inspect}, distinct_ssl_tls_connection_sessions_count_3d:"\
  " #{@distinct_ssl_tls_connection_sessions_count_3d.inspect},"\
  ' distinct_ssl_tls_connection_sessions_count_7d:'\
  " #{@distinct_ssl_tls_connection_sessions_count_7d.inspect},"\
  ' distinct_ssl_tls_connection_sessions_count_30d:'\
  " #{@distinct_ssl_tls_connection_sessions_count_30d.inspect},"\
  ' distinct_ssl_tls_connection_sessions_count_90d:'\
  " #{@distinct_ssl_tls_connection_sessions_count_90d.inspect}, days_since_account_opening:"\
  " #{@days_since_account_opening.inspect}, balance_to_transaction_amount_ratio:"\
  " #{@balance_to_transaction_amount_ratio.inspect}, additional_properties:"\
  " #{@additional_properties}>"
end

#to_custom_balance_last_updatedObject



1355
1356
1357
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 1355

def to_custom_balance_last_updated
  DateTimeHelper.to_rfc3339(balance_last_updated)
end

#to_custom_transactions_last_updatedObject



1359
1360
1361
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 1359

def to_custom_transactions_last_updated
  DateTimeHelper.to_rfc3339(transactions_last_updated)
end

#to_sObject

Provides a human-readable string representation of the object.



1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
# File 'lib/the_plaid_api/models/signal_evaluate_core_attributes.rb', line 1364

def to_s
  class_name = self.class.name.split('::').last
  "<#{class_name} unauthorized_transactions_count_7d: #{@unauthorized_transactions_count_7d},"\
  " unauthorized_transactions_count_30d: #{@unauthorized_transactions_count_30d},"\
  " unauthorized_transactions_count_60d: #{@unauthorized_transactions_count_60d},"\
  " unauthorized_transactions_count_90d: #{@unauthorized_transactions_count_90d},"\
  " nsf_overdraft_transactions_count_7d: #{@nsf_overdraft_transactions_count_7d},"\
  " nsf_overdraft_transactions_count_30d: #{@nsf_overdraft_transactions_count_30d},"\
  " nsf_overdraft_transactions_count_60d: #{@nsf_overdraft_transactions_count_60d},"\
  " nsf_overdraft_transactions_count_90d: #{@nsf_overdraft_transactions_count_90d},"\
  " days_since_first_plaid_connection: #{@days_since_first_plaid_connection},"\
  " plaid_connections_count_7d: #{@plaid_connections_count_7d}, plaid_connections_count_30d:"\
  " #{@plaid_connections_count_30d}, total_plaid_connections_count:"\
  " #{@total_plaid_connections_count}, is_savings_or_money_market_account:"\
  " #{@is_savings_or_money_market_account}, total_credit_transactions_amount_10d:"\
  " #{@total_credit_transactions_amount_10d}, total_debit_transactions_amount_10d:"\
  " #{@total_debit_transactions_amount_10d}, p50_credit_transactions_amount_28d:"\
  " #{@p50_credit_transactions_amount_28d}, p50_debit_transactions_amount_28d:"\
  " #{@p50_debit_transactions_amount_28d}, p95_credit_transactions_amount_28d:"\
  " #{@p95_credit_transactions_amount_28d}, p95_debit_transactions_amount_28d:"\
  " #{@p95_debit_transactions_amount_28d}, days_with_negative_balance_count_90d:"\
  " #{@days_with_negative_balance_count_90d}, p90_eod_balance_30d: #{@p90_eod_balance_30d},"\
  " p90_eod_balance_60d: #{@p90_eod_balance_60d}, p90_eod_balance_90d:"\
  " #{@p90_eod_balance_90d}, p10_eod_balance_30d: #{@p10_eod_balance_30d},"\
  " p10_eod_balance_60d: #{@p10_eod_balance_60d}, p10_eod_balance_90d:"\
  " #{@p10_eod_balance_90d}, available_balance: #{@available_balance}, current_balance:"\
  " #{@current_balance}, balance_last_updated: #{@balance_last_updated},"\
  " phone_change_count_28d: #{@phone_change_count_28d}, phone_change_count_90d:"\
  " #{@phone_change_count_90d}, email_change_count_28d: #{@email_change_count_28d},"\
  " email_change_count_90d: #{@email_change_count_90d}, address_change_count_28d:"\
  " #{@address_change_count_28d}, address_change_count_90d: #{@address_change_count_90d},"\
  ' plaid_non_oauth_authentication_attempts_count_3d:'\
  " #{@plaid_non_oauth_authentication_attempts_count_3d},"\
  ' plaid_non_oauth_authentication_attempts_count_7d:'\
  " #{@plaid_non_oauth_authentication_attempts_count_7d},"\
  ' plaid_non_oauth_authentication_attempts_count_30d:'\
  " #{@plaid_non_oauth_authentication_attempts_count_30d},"\
  ' failed_plaid_non_oauth_authentication_attempts_count_3d:'\
  " #{@failed_plaid_non_oauth_authentication_attempts_count_3d},"\
  ' failed_plaid_non_oauth_authentication_attempts_count_7d:'\
  " #{@failed_plaid_non_oauth_authentication_attempts_count_7d},"\
  ' failed_plaid_non_oauth_authentication_attempts_count_30d:'\
  " #{@failed_plaid_non_oauth_authentication_attempts_count_30d},"\
  " debit_transactions_count_10d: #{@debit_transactions_count_10d},"\
  " credit_transactions_count_10d: #{@credit_transactions_count_10d},"\
  " debit_transactions_count_30d: #{@debit_transactions_count_30d},"\
  " credit_transactions_count_30d: #{@credit_transactions_count_30d},"\
  " debit_transactions_count_60d: #{@debit_transactions_count_60d},"\
  " credit_transactions_count_60d: #{@credit_transactions_count_60d},"\
  " debit_transactions_count_90d: #{@debit_transactions_count_90d},"\
  " credit_transactions_count_90d: #{@credit_transactions_count_90d},"\
  " total_debit_transactions_amount_30d: #{@total_debit_transactions_amount_30d},"\
  " total_credit_transactions_amount_30d: #{@total_credit_transactions_amount_30d},"\
  " total_debit_transactions_amount_60d: #{@total_debit_transactions_amount_60d},"\
  " total_credit_transactions_amount_60d: #{@total_credit_transactions_amount_60d},"\
  " total_debit_transactions_amount_90d: #{@total_debit_transactions_amount_90d},"\
  " total_credit_transactions_amount_90d: #{@total_credit_transactions_amount_90d},"\
  " p50_eod_balance_30d: #{@p50_eod_balance_30d}, p50_eod_balance_60d:"\
  " #{@p50_eod_balance_60d}, p50_eod_balance_90d: #{@p50_eod_balance_90d},"\
  " p50_eod_balance_31d_to_60d: #{@p50_eod_balance_31d_to_60d}, p50_eod_balance_61d_to_90d:"\
  " #{@p50_eod_balance_61d_to_90d}, p90_eod_balance_31d_to_60d:"\
  " #{@p90_eod_balance_31d_to_60d}, p90_eod_balance_61d_to_90d:"\
  " #{@p90_eod_balance_61d_to_90d}, p10_eod_balance_31d_to_60d:"\
  " #{@p10_eod_balance_31d_to_60d}, p10_eod_balance_61d_to_90d:"\
  " #{@p10_eod_balance_61d_to_90d}, transactions_last_updated: #{@transactions_last_updated},"\
  " is_account_closed: #{@is_account_closed}, is_account_frozen_or_restricted:"\
  " #{@is_account_frozen_or_restricted}, distinct_ip_addresses_count_3d:"\
  " #{@distinct_ip_addresses_count_3d}, distinct_ip_addresses_count_7d:"\
  " #{@distinct_ip_addresses_count_7d}, distinct_ip_addresses_count_30d:"\
  " #{@distinct_ip_addresses_count_30d}, distinct_ip_addresses_count_90d:"\
  " #{@distinct_ip_addresses_count_90d}, distinct_user_agents_count_3d:"\
  " #{@distinct_user_agents_count_3d}, distinct_user_agents_count_7d:"\
  " #{@distinct_user_agents_count_7d}, distinct_user_agents_count_30d:"\
  " #{@distinct_user_agents_count_30d}, distinct_user_agents_count_90d:"\
  " #{@distinct_user_agents_count_90d}, distinct_ssl_tls_connection_sessions_count_3d:"\
  " #{@distinct_ssl_tls_connection_sessions_count_3d},"\
  ' distinct_ssl_tls_connection_sessions_count_7d:'\
  " #{@distinct_ssl_tls_connection_sessions_count_7d},"\
  ' distinct_ssl_tls_connection_sessions_count_30d:'\
  " #{@distinct_ssl_tls_connection_sessions_count_30d},"\
  ' distinct_ssl_tls_connection_sessions_count_90d:'\
  " #{@distinct_ssl_tls_connection_sessions_count_90d}, days_since_account_opening:"\
  " #{@days_since_account_opening}, balance_to_transaction_amount_ratio:"\
  " #{@balance_to_transaction_amount_ratio}, additional_properties:"\
  " #{@additional_properties}>"
end