This repository has been archived by the owner on Sep 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
4218 lines (4216 loc) · 120 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
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
579
580
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
666
667
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
753
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
/* tslint:disable */
/* eslint-disable */
/* auto-generated by NAPI-RS */
export interface AccessKeyData {
id: string
namespace: string
eventType: string
group: string
eventPath: string
eventObjectIdPath?: string
timestampPath?: string
parentAccessKey?: string
}
export interface IntegrationOsOptions {
serverUrl: string
}
export interface UnifiedOptions {
responsePassthrough?: boolean
passthroughHeaders?: Record<string, string>
passthroughQuery?: Record<string, string>
}
export interface DeleteOptions {
modifyToken?: string
}
export interface Response<Type> {
unified?: Type
passthrough?: any
meta: object
headers: Record<string, string>
statusCode: number
}
export interface Count {
count: number
}
export interface Pagination {
limit?: number
pageSize: number
nextCursor?: string
previousCursor?: string
}
export interface ListResponse<Type> {
unified: Array<Type>
passthrough?: any
pagination: Pagination
meta: object
headers: Record<string, string>
statusCode: number
}
export interface ListFilter {
createdAfter?: string
createdBefore?: string
updatedAfter?: string
updatedBefore?: string
limit?: number
cursor?: string
}
export interface Drives {
model?: string
name?: string
updatedAt?: string
createdAt?: string
id?: string
description?: string
}
export interface Folders {
description?: string
id?: string
size?: number
model?: string
permissions?: Permissions
name?: string
parentFolders?: ParentFolders
owner?: FileOwners
path?: string
downloadable?: boolean
createdAt?: string
updatedAt?: string
}
export interface Files {
parentFolders?: ParentFolders
owner?: FileOwners
id?: string
downloadable?: boolean
name?: string
extension?: string
path?: string
content?: string
exportable?: boolean
mimeType?: string
exportFormats?: string
model?: string
size?: number
createdAt?: string
type?: FileType
updatedAt?: string
description?: string
permissions?: Permissions
}
export interface FileOwners {
id?: string
createdAt?: string
updatedAt?: string
model?: string
name?: string
email?: string
}
export interface ParentFolders {
name?: string
createdAt?: string
updatedAt?: string
id?: string
model?: string
}
export interface Speakers {
model?: string
id?: string
userId?: string
title?: string
role?: SpeakerRole
speakerId?: string
email?: string
name?: string
}
export interface Recordings {
startTime?: string
callType?: CallDirection
topic?: string
participants?: Array<Speakers>
duration?: number
model?: string
files?: Array<Attachments>
modifyToken?: string
fileSize?: number
updatedAt?: string
password?: string
id?: string
name?: string
description?: string
createdAt?: string
accountId?: string
hostId?: string
endTime?: string
}
export interface Transcripts {
meetingId?: string
speakerId?: string
speakerName?: string
topic?: string
model?: string
createdAt?: string
sentences?: Array<Sentences>
updatedAt?: string
modifyToken?: string
id?: string
}
export interface Sentences {
sentence?: string
model?: string
endTime?: string
id?: string
startTime?: string
modifyToken?: string
speakerId?: string
updatedAt?: string
speakerName?: string
createdAt?: string
}
export interface Tables {
fields?: Array<Attributes>
modifyToken?: string
description?: string
createdAt?: string
id?: string
name?: string
updatedAt?: string
model?: string
}
export interface Databases {
tables?: Array<Tables>
url?: string
id?: string
description?: string
modifyToken?: string
name?: string
deleted?: boolean
title?: string
organizationId?: string
model?: string
createdAt?: string
permissionLevel?: string
region?: string
updatedAt?: string
active?: boolean
}
export interface Attributes {
unique?: boolean
customTypeDetails?: Array<Metadata>
model?: string
id?: string
modifyToken?: string
required?: boolean
updatedAt?: string
dataType?: DataType
createdAt?: string
name?: string
slug?: string
description?: string
}
export interface Records {
modifyToken?: string
model?: string
createdAt?: string
entity?: any
updatedAt?: string
id?: string
}
export interface Objects {
createdAt?: string
modifyToken?: string
custom?: boolean
pluralNoun?: string
updatedAt?: string
model?: string
name?: string
id?: string
singularNoun?: string
slug?: string
}
export interface CardDetails {
capturedAt?: string
authorizedAt?: string
expiryYear?: string
updatedAt?: string
status?: string
createdAt?: string
prepaidType?: PrepaidType
cvvStatus?: CvvStatus
entryMethod?: EntryMethod
fingerprint?: string
statementDescription?: string
bin?: string
type?: CardType
active?: boolean
model?: string
lastFour?: string
avcStatus?: AvcStatus
deleted?: boolean
brand?: string
modifyToken?: string
id?: string
expiryMonth?: string
}
export interface Modifiers {
updatedAt?: string
currency?: Currency
model?: string
id?: string
name?: string
deleted?: boolean
active?: boolean
modifyToken?: string
originalPrice?: number
createdAt?: string
customerNote?: string
linePrice?: number
groupId?: string
quantity?: number
}
export interface ModifierGroups {
createdAt?: string
deleted?: boolean
modifyToken?: string
description?: string
model?: string
type?: ModifierType
modifiers?: Array<Modifiers>
id?: string
name?: string
updatedAt?: string
active?: boolean
}
export interface InvoicePayments {
model?: string
createdAt?: string
modifyToken?: string
date?: string
updatedAt?: string
amount?: number
id?: string
}
export interface Locations {
defaultPhone?: string
currency?: Currency
tags?: Array<string>
type?: string
name?: string
countryCode?: string
model?: string
active?: boolean
defaultEmail?: string
businessHours?: Array<BusinessHours>
domain?: string
id?: string
phones?: Array<Phones>
merchantId?: string
createdAt?: string
updatedAt?: string
modifyToken?: string
businessName?: string
locationNumber?: string
address?: Addresses
description?: string
website?: string
socialProfiles?: Array<SocialProfiles>
customFields?: Array<CustomAttributes>
numberOfEmployees?: number
merchantCategoryCode?: string
timezone?: string
emails?: Array<Emails>
}
export interface CurrencyDetails {
model?: string
id?: string
value?: number
currency?: Currency
}
export interface UsageLimitExpirations {
model?: string
limit?: number
expirationDate?: string
}
export interface Webhooks {
model?: string
objects?: Array<string>
createdAt?: string
id?: string
updatedAt?: string
modifyToken?: string
isDeleted?: boolean
format?: Format
events?: Array<string>
address?: string
}
export interface PrerequisiteRanges {
model?: string
type?: PrerequisiteRangeType
lessThanOrEqualTo?: number
greaterThanOrEqualTo?: number
}
export interface PriceRules {
prerequisiteVariantIds?: Array<string>
deleted?: boolean
startDate?: string
oncePerCustomer?: boolean
usageLimit?: number
excludedVariantIds?: Array<string>
value?: number
excludedCollectionIds?: Array<string>
active?: boolean
entitledQuantity?: number
prerequisiteQuantity?: number
prerequisiteSavedSearchIds?: Array<string>
model?: string
valueType?: DiscountType
prerequisiteProductIds?: Array<string>
endDate?: string
id?: string
createdAt?: string
updatedAt?: string
entitledProductIds?: Array<string>
entitledVariantIds?: Array<string>
entitledCollectionIds?: Array<string>
customerSelection?: CustomerSelection
prerequisiteCollectionIds?: Array<string>
priority?: number
description?: string
allocationLimit?: number
prerequisiteRanges?: PrerequisiteRanges
targetType?: TargetType
allocationMethod?: AllocationMethod
modifyToken?: string
prerequisiteCustomerIds?: Array<string>
targetSelection?: TargetSelection
title?: string
currency?: string
entitledCountryIds?: Array<string>
excludedProductIds?: Array<string>
}
export interface Discounts {
title?: string
appliesTo?: AppliesTo
currency?: string
usageLimitExpirations?: UsageLimitExpirations
model?: string
code?: string
active?: boolean
status?: Status
createdAt?: string
usageLimitPerCustomer?: number
id?: string
description?: string
minimumQuantityOfItems?: number
minimumPurchaseAmount?: number
exclusions?: Array<string>
minimumRequirements?: MinimumRequirements
endDate?: string
usageLimit?: number
updatedAt?: string
type?: DiscountType
channelAvailability?: ChannelAvailability
customerEligibility?: CustomerEligibility
timesUsed?: number
customFields?: Array<CustomAttributes>
modifyToken?: string
value?: number
stackable?: boolean
startDate?: string
deleted?: boolean
}
export interface AIUsage {
promptTokens?: number
model?: string
completionTokens?: number
totalTokens?: number
}
export interface AIMessages {
model?: string
role?: string
finishReason?: string
index?: number
content?: string
}
export interface Chats {
usage?: AIUsage
seed?: number
topP?: number
model?: string
maxTokens?: number
temperature?: number
messages?: Array<AIMessages>
topK?: number
modifyToken?: string
stopSequences?: Array<string>
modelUsed?: string
createdAt?: string
id?: string
objectType?: string
systemFingerprint?: string
}
export interface TaxDetails {
category?: string
region?: string
taxCode?: string
active?: boolean
isTaxIncludedInPrice?: boolean
details?: string
country?: string
jurisdiction?: string
effectiveDate?: string
name?: string
currency?: Currency
expirationDate?: string
id?: string
rate?: number
model?: string
createdAt?: string
taxRegistrationNumber?: string
amount?: number
deleted?: boolean
updatedAt?: string
}
export interface Evidence {
shippingDocumentation?: string
duplicateChargeId?: string
duplicateChargeExplanation?: string
serviceDocumentation?: string
accessActivityLog?: string
cancellationRebuttal?: string
billingAddress?: string
customerName?: string
customerPurchaseIp?: string
customerSignature?: string
receipt?: string
refundPolicy?: string
shippingAddress?: string
shippingDate?: string
customerEmailAddress?: string
productDescription?: string
serviceDate?: string
duplicateChargeDocumentation?: string
cancellationPolicy?: string
customerCommunication?: string
shippingTrackingNumber?: string
model?: string
cancellationPolicyDisclosure?: string
refundPolicyDisclosure?: string
shippingCarrier?: string
uncategorizedFile?: string
refundRefusalExplanation?: string
uncategorizedText?: string
}
export interface Disputes {
charge?: string
updated?: string
transactionId?: string
created?: string
customerId?: string
reason?: string
active?: boolean
version?: string
chargeRefundable?: boolean
model?: string
currency?: Currency
status?: FinancialDisputeStatus
deleted?: boolean
id?: string
evidence?: Evidence
amount?: number
metadata?: Metadata
notes?: string
}
export interface Reactions {
chatId?: string
model?: string
userId?: string
messageId?: string
type?: ReactionType
createdAt?: string
}
export interface Participants {
type?: CommunicationRole
model?: string
joinedAt?: string
userId?: string
displayName?: string
status?: ParticipantEngagementStatus
}
export interface Conversations {
lastMessage?: Messages
id?: string
title?: string
participants?: Array<Participants>
type?: ChatType
metadata?: string
modifyToken?: string
messages?: Array<Messages>
updatedAt?: string
isPinned?: boolean
createdAt?: string
model?: string
status?: ConversationStatus
unreadCount?: number
lastReadMessageId?: string
}
export interface Messages {
bcc?: string
attachments?: Array<Attachments>
active?: boolean
deleted?: boolean
modifyToken?: string
recipientEmails?: Array<string>
cc?: string
reference?: Entity
subject?: string
content?: string
priority?: PriorityLevel
updatedAt?: string
receiverId?: string
model?: string
senderEmail?: string
timestamp?: string
readStatus?: MessageReadStatus
senderId?: string
replyToMessageId?: string
threadId?: string
type?: MessageContentType
chatId?: string
deliveryStatus?: MessageDeliveryStatus
id?: string
reactions?: Array<Reactions>
createdAt?: string
metadata?: Array<Metadata>
}
export interface ShareholderEquityDetails {
commonStock?: number
model?: string
preferredStock?: number
accumulatedOtherComprehensiveIncome?: number
retainedEarnings?: number
treasuryStock?: number
}
export interface IncomeTaxExpenseDetails {
model?: string
currentIncomeTax?: number
deferredIncomeTax?: number
taxAllowanceCredit?: number
}
export interface OperatingExpensesDetails {
researchAndDevelopmentExpenses?: number
otherOperatingExpenses?: number
salesGeneralAndAdministrativeExpenses?: number
model?: string
}
export interface RevenueDetails {
otherRevenue?: number
model?: string
serviceRevenue?: number
salesRevenue?: number
}
export interface ShippingItem {
weightUnit?: string
value?: number
dimensions?: Dimensions
quantity?: number
model?: string
sku?: string
id?: string
productId?: string
weight?: number
productName?: string
}
export interface BillingDetails {
language?: string
email?: string
additionalAttributes?: Array<CustomAttributes>
paymentTerms?: PaymentTerm
id?: string
createdAt?: string
currency?: Currency
model?: string
updatedAt?: string
companyName?: string
note?: string
customerId?: string
vatId?: string
phoneNumber?: string
defaultPaymentMethod?: PaymentMethods
active?: boolean
address?: Addresses
isDeleted?: boolean
fullName?: string
}
export interface PaymentTerms {
notes?: string
description?: string
type?: PaymentTerm
gracePeriodDays?: number
countrySpecificTerms?: Array<string>
languageSupport?: Array<string>
model?: string
isActive?: boolean
allowedMethods?: Array<string>
discountDays?: number
createdDate?: string
dueDays?: number
penaltyRate?: number
interestRate?: number
currencyCode?: string
lastUpdatedDate?: string
minimumPayment?: number
createdAt?: string
isDeleted?: boolean
discountRate?: number
currencyFormatting?: string
id?: string
updatedAt?: string
permittedClientClasses?: Array<string>
}
export interface InvoiceAdjustments {
appliedToInvoiceItemId?: string
type?: InvoiceAdjustmentType
updatedAt?: string
deleted?: boolean
id?: string
amount?: number
metadata?: Metadata
description?: string
currency?: Currency
createdAt?: string
model?: string
active?: boolean
}
export interface TaxRates {
description?: string
name?: string
deleted?: boolean
taxNumber?: string
country?: string
shippingIncluded?: boolean
model?: string
displayRate?: string
reportTaxType?: string
taxComponents?: Array<TaxLines>
currency?: Currency
id?: string
percentage?: number
compound?: boolean
taxType?: string
customFields?: Array<CustomAttributes>
region?: string
active?: boolean
createdAt?: string
modifyToken?: string
updatedAt?: string
applicableItems?: Array<string>
taxProvider?: string
}
export interface CreditNoteLines {
id?: string
description?: string
product?: Products
total?: number
model?: string
unitPrice?: number
quantity?: number
account?: string
customFields?: Array<CustomAttributes>
taxRate?: number
}
export interface CreditNotes {
taxRate?: number
status?: CreditNoteStatus
taxAmount?: number
reason?: string
vatName?: string
creditType?: CreditType
createdAt?: string
billingAddress?: Addresses
customer?: Customers
lines?: Array<CreditNoteLines>
payments?: Array<Payments>
active?: boolean
dueDate?: string
currency?: Currency
vatNumber?: string
memo?: string
number?: string
deleted?: boolean
issuedDate?: string
modifyToken?: string
amount?: number
id?: string
updatedAt?: string
description?: string
companyId?: string
discounts?: Array<number>
shippingAddress?: Addresses
companyName?: string
model?: string
adjustment?: number
metadata?: Metadata
attachments?: Array<Attachments>
}
export interface ExpenseCategories {
model?: string
id?: string
description?: string
name?: string
}
export interface Expenses {
approvedByUserId?: string
tags?: Array<string>
deleted?: boolean
updatedAt?: string
currencyCode?: string
id?: string
location?: Addresses
modifyToken?: string
transactionId?: string
description?: string
merchant?: string
category?: ExpenseCategories
paymentMethod?: PaymentMethods
receiptUrls?: Array<string>
tax?: Array<Taxes>
reportId?: string
createdByUserId?: string
note?: string
lineItems?: Array<Items>
createdAt?: string
amount?: number
status?: ExpenseApprovalStatus
model?: string
dateIncurred?: string
accountId?: string
attachments?: Array<Attachments>
customFields?: Array<CustomAttributes>
active?: boolean
}
export interface Transactions {
foreignCurrency?: CurrencyDetails
dispute?: Disputes
exchangeRate?: number
shipping?: ShippingDetails
billingDetails?: BillingDetails
invoiceId?: string
refund?: Refunds
contact?: Contacts
metadata?: Metadata
description?: string
applicationFee?: number
sender?: Customers
modifyToken?: string
recipient?: Customers
model?: string
accountName?: string
tags?: Array<string>
checkNumber?: string
items?: Array<Items>
type?: FinancialTransactionType
transactionCategory?: TransactionType
accountCode?: string
date?: string
orderId?: string
transactionMethod?: TransactionMethod
createdAt?: string
attachments?: Array<Attachments>
taxExempt?: boolean
paymentMethod?: PaymentMethods
currency?: Currency
amount?: number
accountId?: string
id?: string
taxAmount?: number
status?: FinancialTransactionStatus
updatedAt?: string
deleted?: boolean
paymentIntent?: string
}
export interface PurchaseOrderLineItems {
quantity?: number
productId?: string
deliveryDate?: string
unitOfMeasure?: string
discount?: number
sKU?: string
model?: string
unitPrice?: number
id?: string
totalPrice?: number
description?: string
}
export interface Accounts {
accountNumber?: string
taxType?: string
allowPayments?: boolean
overdraftLimit?: number
model?: string
balance?: number
createdAt?: string
interestRate?: number
modifyToken?: string
description?: string
owner?: Customers
title?: string
branch?: string
deleted?: boolean
showInExpenses?: boolean
currency?: Currency
updatedAt?: string
notes?: string
name?: string
closedAt?: string
overdraftProtection?: boolean
status?: FinancialAccountStatus
transactions?: Array<Transactions>
accountCode?: string
active?: boolean
accountType?: AccountType
id?: string
}
export interface PurchaseOrders {
accountId?: string
shippingCosts?: number
taxes?: number
notes?: string
attachments?: Array<Attachments>
vendor?: Vendors
deleted?: boolean
billTo?: Addresses
orderNumber?: string
subtotal?: number
expectedDeliveryDate?: string
shipTo?: Addresses
currency?: Currency
paymentTerms?: string
active?: boolean
updatedAt?: string
status?: OrderStatus
lineItems?: Array<PurchaseOrderLineItems>
modifyToken?: string
id?: string
orderDate?: string
createdAt?: string
model?: string
total?: number
}
export interface AdditionalCharges {
amount?: number
model?: string
createdAt?: string
updatedAt?: string
type?: FinancialChargeType
id?: string
description?: string
}
export interface Refunds {
id?: string
amount?: number
model?: string
reason?: string
paymentId?: string
status?: TransactionStatus
createdAt?: string
currency?: Currency
updatedAt?: string
modifyToken?: string
}
export interface Payments {
createdAt?: string
currency?: Currency
notes?: string
cardDetails?: CardDetails
orderId?: string
paymentCaptureMethod?: string
webhookUrl?: string
deleted?: boolean
metadata?: Metadata
id?: string
description?: string
billingDetails?: BillingDetails
paymentIntent?: string
receiptEmail?: string
paymentProcessor?: string
date?: string
tip?: number
paymentMethod?: PaymentMethods
status?: PaymentStatus
customer?: Customers
amount?: number
updatedAt?: string
model?: string
journalId?: string
shippingDetails?: ShippingDetails
modifyToken?: string
refund?: Refunds
invoice?: Invoices
active?: boolean
transactionId?: string
}
export interface Bills {
vendor?: Vendors
id?: string
issueDate?: string
lineItems?: Array<Items>
deleted?: boolean
amountDue?: number
customFields?: Array<CustomAttributes>
status?: BillingStatus
amountPaid?: number
terms?: string
invoiceNumber?: string
model?: string
active?: boolean
attachments?: Array<Attachments>
amountRemaining?: number
modifyToken?: string
createdAt?: string
customer?: Customers
currencyCode?: string
notes?: string
dueDate?: string
updatedAt?: string
}
export interface Vendors {
overdueBalance?: number
id?: string
active?: boolean
updatedAt?: string
accountNumber?: string
note?: string
companyName?: string
address?: Addresses
contactEmail?: string
model?: string
outstandingBalance?: number
modifyToken?: string
contactPhone?: string
is1099?: boolean
website?: string
createdAt?: string
currencyCode?: string
customFields?: Array<CustomAttributes>
tax?: Array<Taxes>
contactName?: string
deleted?: boolean
}
export interface AuditInformation {