fuse_client 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +82 -1
  4. data/docs/CreateAssetReportResponse.md +3 -1
  5. data/docs/CreateEntityResponse.md +3 -1
  6. data/docs/CreateLinkTokenResponse.md +1 -1
  7. data/docs/CreateSessionResponse.md +1 -1
  8. data/docs/ExchangeFinancialConnectionsPublicTokenResponse.md +1 -1
  9. data/docs/GetAssetReportResponse.md +3 -1
  10. data/docs/GetEntityResponse.md +3 -1
  11. data/docs/GetFinancialConnectionsAccountBalanceResponse.md +3 -1
  12. data/docs/GetFinancialConnectionsAccountDetailsResponse.md +3 -1
  13. data/docs/GetFinancialConnectionsAccountsResponse.md +3 -1
  14. data/docs/GetFinancialConnectionsOwnersResponseAccountsInner.md +3 -1
  15. data/docs/GetFinancialInstitutionResponse.md +3 -1
  16. data/docs/GetInvestmentHoldingsResponse.md +3 -1
  17. data/docs/GetInvestmentTransactionsResponse.md +3 -1
  18. data/docs/GetLiabilitiesResponse.md +3 -1
  19. data/docs/GetTransactionsResponse.md +3 -1
  20. data/docs/SyncFinancialConnectionsDataResponse.md +3 -1
  21. data/docs/SyncTransactionsResponse.md +3 -1
  22. data/docs/UpdateEntityResponse.md +3 -1
  23. data/lib/fuse_client/models/create_asset_report_response.rb +14 -4
  24. data/lib/fuse_client/models/create_entity_response.rb +14 -4
  25. data/lib/fuse_client/models/create_link_token_response.rb +1 -1
  26. data/lib/fuse_client/models/create_session_response.rb +1 -1
  27. data/lib/fuse_client/models/exchange_financial_connections_public_token_response.rb +1 -1
  28. data/lib/fuse_client/models/get_asset_report_response.rb +14 -4
  29. data/lib/fuse_client/models/get_entity_response.rb +14 -4
  30. data/lib/fuse_client/models/get_financial_connections_account_balance_response.rb +14 -4
  31. data/lib/fuse_client/models/get_financial_connections_account_details_response.rb +14 -4
  32. data/lib/fuse_client/models/get_financial_connections_accounts_response.rb +14 -4
  33. data/lib/fuse_client/models/get_financial_connections_owners_response_accounts_inner.rb +14 -4
  34. data/lib/fuse_client/models/get_financial_institution_response.rb +14 -4
  35. data/lib/fuse_client/models/get_investment_holdings_response.rb +14 -4
  36. data/lib/fuse_client/models/get_investment_transactions_response.rb +14 -4
  37. data/lib/fuse_client/models/get_liabilities_response.rb +14 -4
  38. data/lib/fuse_client/models/get_transactions_response.rb +14 -4
  39. data/lib/fuse_client/models/sync_financial_connections_data_response.rb +14 -4
  40. data/lib/fuse_client/models/sync_transactions_response.rb +14 -4
  41. data/lib/fuse_client/models/update_entity_response.rb +14 -4
  42. data/lib/fuse_client/version.rb +1 -1
  43. data/spec/models/create_asset_report_response_spec.rb +6 -0
  44. data/spec/models/create_entity_response_spec.rb +6 -0
  45. data/spec/models/get_asset_report_response_spec.rb +6 -0
  46. data/spec/models/get_entity_response_spec.rb +6 -0
  47. data/spec/models/get_financial_connections_account_balance_response_spec.rb +6 -0
  48. data/spec/models/get_financial_connections_account_details_response_spec.rb +6 -0
  49. data/spec/models/get_financial_connections_accounts_response_spec.rb +6 -0
  50. data/spec/models/get_financial_connections_owners_response_accounts_inner_spec.rb +6 -0
  51. data/spec/models/get_financial_institution_response_spec.rb +6 -0
  52. data/spec/models/get_investment_holdings_response_spec.rb +6 -0
  53. data/spec/models/get_investment_transactions_response_spec.rb +6 -0
  54. data/spec/models/get_liabilities_response_spec.rb +6 -0
  55. data/spec/models/get_transactions_response_spec.rb +6 -0
  56. data/spec/models/sync_financial_connections_data_response_spec.rb +6 -0
  57. data/spec/models/sync_transactions_response_spec.rb +6 -0
  58. data/spec/models/update_entity_response_spec.rb +6 -0
  59. metadata +2 -2
@@ -26,13 +26,17 @@ module FuseClient
26
26
 
27
27
  attr_accessor :institution_ids
28
28
 
29
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
30
+ attr_accessor :request_id
31
+
29
32
  # Attribute mapping from ruby-style variable name to JSON key.
30
33
  def self.attribute_map
31
34
  {
32
35
  :'id' => :'id',
33
36
  :'email' => :'email',
34
37
  :'aggregators' => :'aggregators',
35
- :'institution_ids' => :'institution_ids'
38
+ :'institution_ids' => :'institution_ids',
39
+ :'request_id' => :'request_id'
36
40
  }
37
41
  end
38
42
 
@@ -47,7 +51,8 @@ module FuseClient
47
51
  :'id' => :'String',
48
52
  :'email' => :'String',
49
53
  :'aggregators' => :'Array<Aggregator>',
50
- :'institution_ids' => :'Array<String>'
54
+ :'institution_ids' => :'Array<String>',
55
+ :'request_id' => :'String'
51
56
  }
52
57
  end
53
58
 
@@ -91,6 +96,10 @@ module FuseClient
91
96
  self.institution_ids = value
92
97
  end
93
98
  end
99
+
100
+ if attributes.key?(:'request_id')
101
+ self.request_id = attributes[:'request_id']
102
+ end
94
103
  end
95
104
 
96
105
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -129,7 +138,8 @@ module FuseClient
129
138
  id == o.id &&
130
139
  email == o.email &&
131
140
  aggregators == o.aggregators &&
132
- institution_ids == o.institution_ids
141
+ institution_ids == o.institution_ids &&
142
+ request_id == o.request_id
133
143
  end
134
144
 
135
145
  # @see the `==` method
@@ -141,7 +151,7 @@ module FuseClient
141
151
  # Calculates hash code according to all attributes.
142
152
  # @return [Integer] Hash code
143
153
  def hash
144
- [id, email, aggregators, institution_ids].hash
154
+ [id, email, aggregators, institution_ids, request_id].hash
145
155
  end
146
156
 
147
157
  # Builds the object from hash
@@ -17,10 +17,14 @@ module FuseClient
17
17
  class GetFinancialConnectionsAccountBalanceResponse
18
18
  attr_accessor :balances
19
19
 
20
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
21
+ attr_accessor :request_id
22
+
20
23
  # Attribute mapping from ruby-style variable name to JSON key.
21
24
  def self.attribute_map
22
25
  {
23
- :'balances' => :'balances'
26
+ :'balances' => :'balances',
27
+ :'request_id' => :'request_id'
24
28
  }
25
29
  end
26
30
 
@@ -32,7 +36,8 @@ module FuseClient
32
36
  # Attribute type mapping.
33
37
  def self.openapi_types
34
38
  {
35
- :'balances' => :'Array<FinancialConnectionsAccountBalance>'
39
+ :'balances' => :'Array<FinancialConnectionsAccountBalance>',
40
+ :'request_id' => :'String'
36
41
  }
37
42
  end
38
43
 
@@ -62,6 +67,10 @@ module FuseClient
62
67
  self.balances = value
63
68
  end
64
69
  end
70
+
71
+ if attributes.key?(:'request_id')
72
+ self.request_id = attributes[:'request_id']
73
+ end
65
74
  end
66
75
 
67
76
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -82,7 +91,8 @@ module FuseClient
82
91
  def ==(o)
83
92
  return true if self.equal?(o)
84
93
  self.class == o.class &&
85
- balances == o.balances
94
+ balances == o.balances &&
95
+ request_id == o.request_id
86
96
  end
87
97
 
88
98
  # @see the `==` method
@@ -94,7 +104,7 @@ module FuseClient
94
104
  # Calculates hash code according to all attributes.
95
105
  # @return [Integer] Hash code
96
106
  def hash
97
- [balances].hash
107
+ [balances, request_id].hash
98
108
  end
99
109
 
100
110
  # Builds the object from hash
@@ -19,11 +19,15 @@ module FuseClient
19
19
 
20
20
  attr_accessor :financial_connection
21
21
 
22
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
23
+ attr_accessor :request_id
24
+
22
25
  # Attribute mapping from ruby-style variable name to JSON key.
23
26
  def self.attribute_map
24
27
  {
25
28
  :'account_details' => :'account_details',
26
- :'financial_connection' => :'financial_connection'
29
+ :'financial_connection' => :'financial_connection',
30
+ :'request_id' => :'request_id'
27
31
  }
28
32
  end
29
33
 
@@ -36,7 +40,8 @@ module FuseClient
36
40
  def self.openapi_types
37
41
  {
38
42
  :'account_details' => :'Array<FinancialConnectionsAccountDetails>',
39
- :'financial_connection' => :'FinancialConnectionData'
43
+ :'financial_connection' => :'FinancialConnectionData',
44
+ :'request_id' => :'String'
40
45
  }
41
46
  end
42
47
 
@@ -70,6 +75,10 @@ module FuseClient
70
75
  if attributes.key?(:'financial_connection')
71
76
  self.financial_connection = attributes[:'financial_connection']
72
77
  end
78
+
79
+ if attributes.key?(:'request_id')
80
+ self.request_id = attributes[:'request_id']
81
+ end
73
82
  end
74
83
 
75
84
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -91,7 +100,8 @@ module FuseClient
91
100
  return true if self.equal?(o)
92
101
  self.class == o.class &&
93
102
  account_details == o.account_details &&
94
- financial_connection == o.financial_connection
103
+ financial_connection == o.financial_connection &&
104
+ request_id == o.request_id
95
105
  end
96
106
 
97
107
  # @see the `==` method
@@ -103,7 +113,7 @@ module FuseClient
103
113
  # Calculates hash code according to all attributes.
104
114
  # @return [Integer] Hash code
105
115
  def hash
106
- [account_details, financial_connection].hash
116
+ [account_details, financial_connection, request_id].hash
107
117
  end
108
118
 
109
119
  # Builds the object from hash
@@ -19,11 +19,15 @@ module FuseClient
19
19
 
20
20
  attr_accessor :financial_connection
21
21
 
22
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
23
+ attr_accessor :request_id
24
+
22
25
  # Attribute mapping from ruby-style variable name to JSON key.
23
26
  def self.attribute_map
24
27
  {
25
28
  :'accounts' => :'accounts',
26
- :'financial_connection' => :'financial_connection'
29
+ :'financial_connection' => :'financial_connection',
30
+ :'request_id' => :'request_id'
27
31
  }
28
32
  end
29
33
 
@@ -36,7 +40,8 @@ module FuseClient
36
40
  def self.openapi_types
37
41
  {
38
42
  :'accounts' => :'Array<FinancialConnectionsAccount>',
39
- :'financial_connection' => :'FinancialConnectionData'
43
+ :'financial_connection' => :'FinancialConnectionData',
44
+ :'request_id' => :'String'
40
45
  }
41
46
  end
42
47
 
@@ -70,6 +75,10 @@ module FuseClient
70
75
  if attributes.key?(:'financial_connection')
71
76
  self.financial_connection = attributes[:'financial_connection']
72
77
  end
78
+
79
+ if attributes.key?(:'request_id')
80
+ self.request_id = attributes[:'request_id']
81
+ end
73
82
  end
74
83
 
75
84
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -91,7 +100,8 @@ module FuseClient
91
100
  return true if self.equal?(o)
92
101
  self.class == o.class &&
93
102
  accounts == o.accounts &&
94
- financial_connection == o.financial_connection
103
+ financial_connection == o.financial_connection &&
104
+ request_id == o.request_id
95
105
  end
96
106
 
97
107
  # @see the `==` method
@@ -103,7 +113,7 @@ module FuseClient
103
113
  # Calculates hash code according to all attributes.
104
114
  # @return [Integer] Hash code
105
115
  def hash
106
- [accounts, financial_connection].hash
116
+ [accounts, financial_connection, request_id].hash
107
117
  end
108
118
 
109
119
  # Builds the object from hash
@@ -20,11 +20,15 @@ module FuseClient
20
20
 
21
21
  attr_accessor :owners
22
22
 
23
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
24
+ attr_accessor :request_id
25
+
23
26
  # Attribute mapping from ruby-style variable name to JSON key.
24
27
  def self.attribute_map
25
28
  {
26
29
  :'remote_account_id' => :'remote_account_id',
27
- :'owners' => :'owners'
30
+ :'owners' => :'owners',
31
+ :'request_id' => :'request_id'
28
32
  }
29
33
  end
30
34
 
@@ -37,7 +41,8 @@ module FuseClient
37
41
  def self.openapi_types
38
42
  {
39
43
  :'remote_account_id' => :'String',
40
- :'owners' => :'Array<FinancialConnectionsOwner>'
44
+ :'owners' => :'Array<FinancialConnectionsOwner>',
45
+ :'request_id' => :'String'
41
46
  }
42
47
  end
43
48
 
@@ -71,6 +76,10 @@ module FuseClient
71
76
  self.owners = value
72
77
  end
73
78
  end
79
+
80
+ if attributes.key?(:'request_id')
81
+ self.request_id = attributes[:'request_id']
82
+ end
74
83
  end
75
84
 
76
85
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -92,7 +101,8 @@ module FuseClient
92
101
  return true if self.equal?(o)
93
102
  self.class == o.class &&
94
103
  remote_account_id == o.remote_account_id &&
95
- owners == o.owners
104
+ owners == o.owners &&
105
+ request_id == o.request_id
96
106
  end
97
107
 
98
108
  # @see the `==` method
@@ -104,7 +114,7 @@ module FuseClient
104
114
  # Calculates hash code according to all attributes.
105
115
  # @return [Integer] Hash code
106
116
  def hash
107
- [remote_account_id, owners].hash
117
+ [remote_account_id, owners, request_id].hash
108
118
  end
109
119
 
110
120
  # Builds the object from hash
@@ -17,10 +17,14 @@ module FuseClient
17
17
  class GetFinancialInstitutionResponse
18
18
  attr_accessor :financial_institution
19
19
 
20
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
21
+ attr_accessor :request_id
22
+
20
23
  # Attribute mapping from ruby-style variable name to JSON key.
21
24
  def self.attribute_map
22
25
  {
23
- :'financial_institution' => :'financial_institution'
26
+ :'financial_institution' => :'financial_institution',
27
+ :'request_id' => :'request_id'
24
28
  }
25
29
  end
26
30
 
@@ -32,7 +36,8 @@ module FuseClient
32
36
  # Attribute type mapping.
33
37
  def self.openapi_types
34
38
  {
35
- :'financial_institution' => :'FinancialInstitution'
39
+ :'financial_institution' => :'FinancialInstitution',
40
+ :'request_id' => :'String'
36
41
  }
37
42
  end
38
43
 
@@ -60,6 +65,10 @@ module FuseClient
60
65
  if attributes.key?(:'financial_institution')
61
66
  self.financial_institution = attributes[:'financial_institution']
62
67
  end
68
+
69
+ if attributes.key?(:'request_id')
70
+ self.request_id = attributes[:'request_id']
71
+ end
63
72
  end
64
73
 
65
74
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -80,7 +89,8 @@ module FuseClient
80
89
  def ==(o)
81
90
  return true if self.equal?(o)
82
91
  self.class == o.class &&
83
- financial_institution == o.financial_institution
92
+ financial_institution == o.financial_institution &&
93
+ request_id == o.request_id
84
94
  end
85
95
 
86
96
  # @see the `==` method
@@ -92,7 +102,7 @@ module FuseClient
92
102
  # Calculates hash code according to all attributes.
93
103
  # @return [Integer] Hash code
94
104
  def hash
95
- [financial_institution].hash
105
+ [financial_institution, request_id].hash
96
106
  end
97
107
 
98
108
  # Builds the object from hash
@@ -21,12 +21,16 @@ module FuseClient
21
21
 
22
22
  attr_accessor :securities
23
23
 
24
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
25
+ attr_accessor :request_id
26
+
24
27
  # Attribute mapping from ruby-style variable name to JSON key.
25
28
  def self.attribute_map
26
29
  {
27
30
  :'accounts' => :'accounts',
28
31
  :'holdings' => :'holdings',
29
- :'securities' => :'securities'
32
+ :'securities' => :'securities',
33
+ :'request_id' => :'request_id'
30
34
  }
31
35
  end
32
36
 
@@ -40,7 +44,8 @@ module FuseClient
40
44
  {
41
45
  :'accounts' => :'Array<FinancialConnectionsInvestmentAccount>',
42
46
  :'holdings' => :'Array<FinancialConnectionsHolding>',
43
- :'securities' => :'Array<FinancialConnectionsInvestmentSecurity>'
47
+ :'securities' => :'Array<FinancialConnectionsInvestmentSecurity>',
48
+ :'request_id' => :'String'
44
49
  }
45
50
  end
46
51
 
@@ -82,6 +87,10 @@ module FuseClient
82
87
  self.securities = value
83
88
  end
84
89
  end
90
+
91
+ if attributes.key?(:'request_id')
92
+ self.request_id = attributes[:'request_id']
93
+ end
85
94
  end
86
95
 
87
96
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -104,7 +113,8 @@ module FuseClient
104
113
  self.class == o.class &&
105
114
  accounts == o.accounts &&
106
115
  holdings == o.holdings &&
107
- securities == o.securities
116
+ securities == o.securities &&
117
+ request_id == o.request_id
108
118
  end
109
119
 
110
120
  # @see the `==` method
@@ -116,7 +126,7 @@ module FuseClient
116
126
  # Calculates hash code according to all attributes.
117
127
  # @return [Integer] Hash code
118
128
  def hash
119
- [accounts, holdings, securities].hash
129
+ [accounts, holdings, securities, request_id].hash
120
130
  end
121
131
 
122
132
  # Builds the object from hash
@@ -21,12 +21,16 @@ module FuseClient
21
21
 
22
22
  attr_accessor :securities
23
23
 
24
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
25
+ attr_accessor :request_id
26
+
24
27
  # Attribute mapping from ruby-style variable name to JSON key.
25
28
  def self.attribute_map
26
29
  {
27
30
  :'accounts' => :'accounts',
28
31
  :'investment_transactions' => :'investment_transactions',
29
- :'securities' => :'securities'
32
+ :'securities' => :'securities',
33
+ :'request_id' => :'request_id'
30
34
  }
31
35
  end
32
36
 
@@ -40,7 +44,8 @@ module FuseClient
40
44
  {
41
45
  :'accounts' => :'Array<FinancialConnectionsInvestmentAccount>',
42
46
  :'investment_transactions' => :'Array<FinancialConnectionsInvestmentTransaction>',
43
- :'securities' => :'Array<FinancialConnectionsInvestmentSecurity>'
47
+ :'securities' => :'Array<FinancialConnectionsInvestmentSecurity>',
48
+ :'request_id' => :'String'
44
49
  }
45
50
  end
46
51
 
@@ -82,6 +87,10 @@ module FuseClient
82
87
  self.securities = value
83
88
  end
84
89
  end
90
+
91
+ if attributes.key?(:'request_id')
92
+ self.request_id = attributes[:'request_id']
93
+ end
85
94
  end
86
95
 
87
96
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -104,7 +113,8 @@ module FuseClient
104
113
  self.class == o.class &&
105
114
  accounts == o.accounts &&
106
115
  investment_transactions == o.investment_transactions &&
107
- securities == o.securities
116
+ securities == o.securities &&
117
+ request_id == o.request_id
108
118
  end
109
119
 
110
120
  # @see the `==` method
@@ -116,7 +126,7 @@ module FuseClient
116
126
  # Calculates hash code according to all attributes.
117
127
  # @return [Integer] Hash code
118
128
  def hash
119
- [accounts, investment_transactions, securities].hash
129
+ [accounts, investment_transactions, securities, request_id].hash
120
130
  end
121
131
 
122
132
  # Builds the object from hash
@@ -17,10 +17,14 @@ module FuseClient
17
17
  class GetLiabilitiesResponse
18
18
  attr_accessor :liabilities
19
19
 
20
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
21
+ attr_accessor :request_id
22
+
20
23
  # Attribute mapping from ruby-style variable name to JSON key.
21
24
  def self.attribute_map
22
25
  {
23
- :'liabilities' => :'liabilities'
26
+ :'liabilities' => :'liabilities',
27
+ :'request_id' => :'request_id'
24
28
  }
25
29
  end
26
30
 
@@ -32,7 +36,8 @@ module FuseClient
32
36
  # Attribute type mapping.
33
37
  def self.openapi_types
34
38
  {
35
- :'liabilities' => :'Array<FinancialConnectionsAccountLiability>'
39
+ :'liabilities' => :'Array<FinancialConnectionsAccountLiability>',
40
+ :'request_id' => :'String'
36
41
  }
37
42
  end
38
43
 
@@ -62,6 +67,10 @@ module FuseClient
62
67
  self.liabilities = value
63
68
  end
64
69
  end
70
+
71
+ if attributes.key?(:'request_id')
72
+ self.request_id = attributes[:'request_id']
73
+ end
65
74
  end
66
75
 
67
76
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -82,7 +91,8 @@ module FuseClient
82
91
  def ==(o)
83
92
  return true if self.equal?(o)
84
93
  self.class == o.class &&
85
- liabilities == o.liabilities
94
+ liabilities == o.liabilities &&
95
+ request_id == o.request_id
86
96
  end
87
97
 
88
98
  # @see the `==` method
@@ -94,7 +104,7 @@ module FuseClient
94
104
  # Calculates hash code according to all attributes.
95
105
  # @return [Integer] Hash code
96
106
  def hash
97
- [liabilities].hash
107
+ [liabilities, request_id].hash
98
108
  end
99
109
 
100
110
  # Builds the object from hash
@@ -23,12 +23,16 @@ module FuseClient
23
23
  # Indicates if there are more pages to navigate through
24
24
  attr_accessor :has_next
25
25
 
26
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
27
+ attr_accessor :request_id
28
+
26
29
  # Attribute mapping from ruby-style variable name to JSON key.
27
30
  def self.attribute_map
28
31
  {
29
32
  :'data' => :'data',
30
33
  :'cursor' => :'cursor',
31
- :'has_next' => :'has_next'
34
+ :'has_next' => :'has_next',
35
+ :'request_id' => :'request_id'
32
36
  }
33
37
  end
34
38
 
@@ -42,7 +46,8 @@ module FuseClient
42
46
  {
43
47
  :'data' => :'Array<GetTransactionsResponseDataInner>',
44
48
  :'cursor' => :'String',
45
- :'has_next' => :'Boolean'
49
+ :'has_next' => :'Boolean',
50
+ :'request_id' => :'String'
46
51
  }
47
52
  end
48
53
 
@@ -80,6 +85,10 @@ module FuseClient
80
85
  if attributes.key?(:'has_next')
81
86
  self.has_next = attributes[:'has_next']
82
87
  end
88
+
89
+ if attributes.key?(:'request_id')
90
+ self.request_id = attributes[:'request_id']
91
+ end
83
92
  end
84
93
 
85
94
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -102,7 +111,8 @@ module FuseClient
102
111
  self.class == o.class &&
103
112
  data == o.data &&
104
113
  cursor == o.cursor &&
105
- has_next == o.has_next
114
+ has_next == o.has_next &&
115
+ request_id == o.request_id
106
116
  end
107
117
 
108
118
  # @see the `==` method
@@ -114,7 +124,7 @@ module FuseClient
114
124
  # Calculates hash code according to all attributes.
115
125
  # @return [Integer] Hash code
116
126
  def hash
117
- [data, cursor, has_next].hash
127
+ [data, cursor, has_next, request_id].hash
118
128
  end
119
129
 
120
130
  # Builds the object from hash
@@ -18,10 +18,14 @@ module FuseClient
18
18
  # Response message
19
19
  attr_accessor :message
20
20
 
21
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
22
+ attr_accessor :request_id
23
+
21
24
  # Attribute mapping from ruby-style variable name to JSON key.
22
25
  def self.attribute_map
23
26
  {
24
- :'message' => :'message'
27
+ :'message' => :'message',
28
+ :'request_id' => :'request_id'
25
29
  }
26
30
  end
27
31
 
@@ -33,7 +37,8 @@ module FuseClient
33
37
  # Attribute type mapping.
34
38
  def self.openapi_types
35
39
  {
36
- :'message' => :'String'
40
+ :'message' => :'String',
41
+ :'request_id' => :'String'
37
42
  }
38
43
  end
39
44
 
@@ -61,6 +66,10 @@ module FuseClient
61
66
  if attributes.key?(:'message')
62
67
  self.message = attributes[:'message']
63
68
  end
69
+
70
+ if attributes.key?(:'request_id')
71
+ self.request_id = attributes[:'request_id']
72
+ end
64
73
  end
65
74
 
66
75
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -81,7 +90,8 @@ module FuseClient
81
90
  def ==(o)
82
91
  return true if self.equal?(o)
83
92
  self.class == o.class &&
84
- message == o.message
93
+ message == o.message &&
94
+ request_id == o.request_id
85
95
  end
86
96
 
87
97
  # @see the `==` method
@@ -93,7 +103,7 @@ module FuseClient
93
103
  # Calculates hash code according to all attributes.
94
104
  # @return [Integer] Hash code
95
105
  def hash
96
- [message].hash
106
+ [message, request_id].hash
97
107
  end
98
108
 
99
109
  # Builds the object from hash
@@ -30,6 +30,9 @@ module FuseClient
30
30
  # Represents if more than requested count of transaction updates exist. If true, the additional updates can be fetched by making an additional request with `cursor` set to `next_cursor`. If `has_next` is true, it's important to pull all available pages, to make it less likely for underlying data changes to conflict with pagination.
31
31
  attr_accessor :has_next
32
32
 
33
+ # An identifier that is exclusive to the request and can serve as a means for investigating and resolving issues.
34
+ attr_accessor :request_id
35
+
33
36
  # Attribute mapping from ruby-style variable name to JSON key.
34
37
  def self.attribute_map
35
38
  {
@@ -37,7 +40,8 @@ module FuseClient
37
40
  :'modified' => :'modified',
38
41
  :'removed' => :'removed',
39
42
  :'next_cursor' => :'next_cursor',
40
- :'has_next' => :'has_next'
43
+ :'has_next' => :'has_next',
44
+ :'request_id' => :'request_id'
41
45
  }
42
46
  end
43
47
 
@@ -53,7 +57,8 @@ module FuseClient
53
57
  :'modified' => :'Array<TransactionCommonModel>',
54
58
  :'removed' => :'Array<SyncTransactionsResponseRemovedInner>',
55
59
  :'next_cursor' => :'String',
56
- :'has_next' => :'Boolean'
60
+ :'has_next' => :'Boolean',
61
+ :'request_id' => :'String'
57
62
  }
58
63
  end
59
64
 
@@ -103,6 +108,10 @@ module FuseClient
103
108
  if attributes.key?(:'has_next')
104
109
  self.has_next = attributes[:'has_next']
105
110
  end
111
+
112
+ if attributes.key?(:'request_id')
113
+ self.request_id = attributes[:'request_id']
114
+ end
106
115
  end
107
116
 
108
117
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -127,7 +136,8 @@ module FuseClient
127
136
  modified == o.modified &&
128
137
  removed == o.removed &&
129
138
  next_cursor == o.next_cursor &&
130
- has_next == o.has_next
139
+ has_next == o.has_next &&
140
+ request_id == o.request_id
131
141
  end
132
142
 
133
143
  # @see the `==` method
@@ -139,7 +149,7 @@ module FuseClient
139
149
  # Calculates hash code according to all attributes.
140
150
  # @return [Integer] Hash code
141
151
  def hash
142
- [added, modified, removed, next_cursor, has_next].hash
152
+ [added, modified, removed, next_cursor, has_next, request_id].hash
143
153
  end
144
154
 
145
155
  # Builds the object from hash