File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 14
14
15
15
import * as Models from "./index" ;
16
16
17
+ import { Address } from "./address" ;
17
18
import { BankAccount } from "./bank-account" ;
18
19
import { SendDate } from "./send-date" ;
19
20
import { Thumbnail } from "./thumbnail" ;
@@ -125,20 +126,18 @@ export class Check {
125
126
}
126
127
127
128
/**
128
- * Must either be an address ID or an inline object with correct address parameters.
129
- * @type {any }
129
+ *
130
+ * @type {Address }
130
131
* @memberof Check
131
132
*/
132
-
133
- "to" ?: string | Models . AddressEditable ;
133
+ "to" ?: Address ;
134
134
135
135
/**
136
- * Must either be an address ID or an inline object with correct address parameters.
137
- * @type {any }
136
+ *
137
+ * @type {Address }
138
138
* @memberof Check
139
139
*/
140
-
141
- "from" ?: string | Models . AddressEditable ;
140
+ "from" ?: Address ;
142
141
143
142
/**
144
143
* An internal description that identifies this resource. Must be no longer than 255 characters.
You can’t perform that action at this time.
0 commit comments