You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The Customer the deposit account belongs to. The customer is either a business or a individual.
88
+
* The Customer the deposit account belongs to. This relationship is only available if the account belongs to a single customer, business or individual.
89
89
*/
90
-
customer: Relationship
90
+
customer?: Relationship
91
+
92
+
/**
93
+
* The list of Customers the deposit account belongs to. This relationship is only available if the account belongs to multiple individual customers.
94
+
*/
95
+
customers?: Relationship[]
91
96
92
97
/**
93
98
* The Counterparty the payment to be made to.
@@ -122,24 +127,29 @@ interface BookPayment {
122
127
account: Relationship
123
128
124
129
/**
125
-
* The Customer the deposit account belongs to. The customer is either a business or a individual.
130
+
* The Customer the deposit account belongs to. This relationship is only available if the account belongs to a single customer, business or individual.
131
+
*/
132
+
customer?: Relationship
133
+
134
+
/**
135
+
* The list of Customers the deposit account belongs to. This relationship is only available if the account belongs to a multiple individual customers.
126
136
*/
127
-
customer: Relationship
137
+
customers?: Relationship[]
128
138
129
139
/**
130
140
* The Counterparty account the payment to be made to.
131
141
*/
132
142
counterpartyAccount: Relationship
133
143
134
144
/**
135
-
* The Customer the counterparty account belongs to.The customer is either a business or a individual.
145
+
* The Customer the counterparty account belongs to.The customer is either a business or an individual, might be empty if there is more than one associated customer.
* The Customer the deposit account belongs to. This relationship is only available if the account belongs to a single customer, business or individual.
180
190
*/
181
-
customer: Relationship
191
+
customer?: Relationship
182
192
183
193
/**
184
-
* The Customer the deposit account belongs to.
194
+
* The list of Customers the deposit account belongs to. This relationship is only available if the account belongs to a multiple individual customers.
185
195
*/
186
-
customers: Relationship[]
196
+
customers?: Relationship[]
187
197
188
198
/**
189
199
* The Wire Transaction generated by this payment.
190
200
*/
191
-
transaction: Relationship
201
+
transaction: Relationship
202
+
}
203
+
}
204
+
205
+
exportinterfaceBillPayment{
206
+
/**
207
+
* Identifier of the bill payment resource.
208
+
*/
209
+
id: string
210
+
211
+
/**
212
+
* Type of the payment resource. The value is always billPayment.
* Describes relationships between the Wire payment and the originating deposit account and customer.
223
+
*/
224
+
relationships: {
225
+
/**
226
+
* The Deposit Account creating the payment.
227
+
*/
228
+
account: Relationship
229
+
230
+
/**
231
+
* The Customer the deposit account belongs to. This relationship is only available if the account belongs to a single customer, butisness or individual.
232
+
*/
233
+
customer?: Relationship
234
+
235
+
/**
236
+
* The list of Customers the deposit account belongs to. This relationship is only available if the account belongs to a multiple individual customer
237
+
*/
238
+
customers?: Relationship[]
239
+
240
+
/**
241
+
* The BillPay Transaction generated by this payment.
0 commit comments