File tree Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 201
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8fa8b313edec69eb17149f293bc69616490adb3ccb07376b22f1f1b555b800c7 .yml
3
- openapi_spec_hash : 0c078eeca22e12fa282d4aa4f638a843
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-3b0c9217a75af2d86d38e83c81301c1e3997b9827ab88600152dfc6359605798 .yml
3
+ openapi_spec_hash : 9ae9741413c5b6d5cbca0e6935a76b57
4
4
config_hash : 97774f946585cecb19181a1817870d0b
Original file line number Diff line number Diff line change @@ -59,6 +59,11 @@ export interface InboundMailItem {
59
59
*/
60
60
id : string ;
61
61
62
+ /**
63
+ * The checks in the mail item.
64
+ */
65
+ checks : Array < InboundMailItem . Check > ;
66
+
62
67
/**
63
68
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Inbound
64
69
* Mail Item was created.
@@ -106,6 +111,28 @@ export interface InboundMailItem {
106
111
type : 'inbound_mail_item' ;
107
112
}
108
113
114
+ export namespace InboundMailItem {
115
+ /**
116
+ * Inbound Mail Item Checks represent the checks in an Inbound Mail Item.
117
+ */
118
+ export interface Check {
119
+ /**
120
+ * The amount of the check.
121
+ */
122
+ amount : number ;
123
+
124
+ /**
125
+ * The identifier for the File containing the back of the check.
126
+ */
127
+ back_file_id : string | null ;
128
+
129
+ /**
130
+ * The identifier for the File containing the front of the check.
131
+ */
132
+ front_file_id : string | null ;
133
+ }
134
+ }
135
+
109
136
export interface InboundMailItemListParams extends PageParams {
110
137
created_at ?: InboundMailItemListParams . CreatedAt ;
111
138
You can’t perform that action at this time.
0 commit comments