-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
16460 lines (13269 loc) · 420 KB
/
schema.graphql
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
"""
Requires that exactly one field must be supplied and that field must not be `null`.
"""
directive @oneOf on INPUT_OBJECT
type AcceptanceEmail {
html: String!
subject: String!
template: EmailTemplate!
}
type AccessToken {
application: ApiApplication!
id: ID!
}
type Account {
accountType: String
code: String
createdAt: DateTime!
id: ID!
importedFrom: AccountImportedFrom
name: String!
state: AccountState!
updatedAt: DateTime!
uuid: ID! @deprecated(reason: "use id instead")
}
"""The connection type for Account."""
type AccountConnection {
"""A list of edges."""
edges: [AccountEdge]
"""A list of nodes."""
nodes: [Account]
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
"""An edge in a connection."""
type AccountEdge {
"""A cursor for use in pagination."""
cursor: String!
"""The item at the end of the edge."""
node: Account
}
enum AccountImportedFrom {
"""Xero"""
XERO
}
type AccountingIntegration {
deployInvoices: Boolean!
displayName: String!
enableEngagementTaxType: Boolean!
id: ID!
name: String!
}
input AccountQuery {
importedFromEq: String
}
enum AccountState {
"""Active"""
ACTIVE
"""Archived"""
ARCHIVED
}
input AcknowledgeFilter {
idCont: String
idStartsWith: String
}
type Acknowledgement {
id: ID!
level: AcknowledgementLevel!
updatedAt: DateTime!
}
"""Autogenerated input type of AcknowledgementAdd"""
input AcknowledgementAddInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
"""identifier of acknowledgement content"""
id: ID!
level: AcknowledgementLevel!
}
"""Autogenerated return type of AcknowledgementAdd."""
type AcknowledgementAddPayload {
acknowledgement: Acknowledgement
acknowledgements: [Acknowledgement!]
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
}
enum AcknowledgementLevel {
USER
PRACTICE
}
"""Autogenerated input type of AcknowledgementRemove"""
input AcknowledgementRemoveInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
"""identifier of acknowledgement content"""
id: ID!
level: AcknowledgementLevel!
}
"""Autogenerated return type of AcknowledgementRemove."""
type AcknowledgementRemovePayload {
acknowledgements: [Acknowledgement!]
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
}
type ActivityLog {
additionalInfo: String
createdAt: DateTime!
id: ID!
level: ActivityLogLevel!
message: String!
relationId: ID!
updatedAt: DateTime!
"""The user associated with the activity (if any)."""
user: User
}
"""The connection type for ActivityLog."""
type ActivityLogConnection {
"""A list of edges."""
edges: [ActivityLogEdge]
"""A list of nodes."""
nodes: [ActivityLog]
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
"""An edge in a connection."""
type ActivityLogEdge {
"""A cursor for use in pagination."""
cursor: String!
"""The item at the end of the edge."""
node: ActivityLog
}
enum ActivityLogLevel {
ERROR
INFO
SUCCESS
WARNING
}
input ActivityLogOrder {
"""Sort by when the activity log was created."""
createdAt: OrderBy
}
"""An address"""
type Address {
address: String @deprecated(reason: "use lines instead")
"""City or Suburb"""
city: String
client: Client!
"""Full country name"""
country: String
createdAt: DateTime!
isPostal: Boolean!
"""
Free text part of an address with each line a separate entry. Usually one or two
"""
lines: [String!]!
postCode: String @deprecated(reason: "Use postcode")
postcode: String
referenceNumber: ID!
"""Region or State"""
region: String
updatedAt: DateTime!
}
"""The connection type for Address."""
type AddressConnection {
"""A list of edges."""
edges: [AddressEdge]
"""A list of nodes."""
nodes: [Address]
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
"""An edge in a connection."""
type AddressEdge {
"""A cursor for use in pagination."""
cursor: String!
"""The item at the end of the edge."""
node: Address
}
input AddressFilter {
isPostal: Boolean
}
input AddressInput {
address: String
lines: [String!]
city: String
region: String
postCode: String
postcode: String
country: String
}
type AdminUser {
createdAt: DateTime!
email: EmailAddress!
id: ID!
roles: [String!]
updatedAt: DateTime!
}
type AgreedService {
"""
The Xero Integration account this service will be accounted to when invoiced
"""
account: Account @deprecated(reason: "use ledgerItem")
activities(
"""Returns the elements in the list that come after the specified cursor."""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
orderBy: ActivityLogOrder = {createdAt: ASCENDING}
): ActivityLogConnection
billingDescription: String @deprecated(reason: "Agreed Service can have multiple portions. Use `portion.billing_description` instead.")
billingMode: ProposalBillingModeEnum!
billingSchedule: BillingSchedule! @deprecated(reason: "Use portions { billingSchedule } instead")
billingSummary: String @deprecated(reason: "Agreed Service can have multiple portions. Use `portion.billing_summary` instead.")
client: Client!
description: Textile!
"""
The date this service is scheduled to becomes inactive, provided all
associated billing items have been billed. If not set, service will stay
active until ended manually.
"""
expiresOn: Date
id: ID!
invoiceStrategy: ProposalInvoiceStrategy @deprecated(reason: "use portions { invoiceStrategy } instead")
isActive: Boolean @deprecated(reason: "Use state instead. An agreed service is active if it's state = 'enabled'.")
isBillingCompleted: Boolean
isEditable: Boolean!
lastBillingDate: Date
"""Ledger Item. Currently only supports Xero account"""
ledgerItem: LedgerItem
name: String!
origin: Origin
paymentMethod: PaymentMethod
portions: [AgreedServicePortion!]!
price: ProposalPriceInterface!
"""Quantity Object containing amounts and rules"""
quantity: BillingQuantityRuleInterface
"""
If set, this is the agreed service that was / will be replaced once this agreed service is enabled.
"""
replacee: AgreedService
"""
If set, this is the agreed service that will replace / has replaced this one.
"""
replacement: AgreedService
"""
List of billing schedule items for all billable services linked to this agreed service
"""
scheduleItems: [ScheduleItem!]!
scheduleStart: String! @deprecated(reason: "Agreed Service can have multiple portions. Use `portion.schedule_start` instead.")
scheduleType: BillingScheduleTypeEnum!
service: Service!
"""The date this service becomes active."""
startsOn: Date!
state: ClientServicesAgreedServiceStateEnum!
"""The tax applied to this service"""
tax: Tax!
uneditableReason: String
}
"""The connection type for AgreedService."""
type AgreedServiceConnection {
"""A list of edges."""
edges: [AgreedServiceEdge]
"""A list of nodes."""
nodes: [AgreedService]
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
type AgreedServiceCreatePreview {
billingItems: [BillingItemPreview!]!
billingSummary: String!
paymentMethod: PaymentMethod
}
"""An edge in a connection."""
type AgreedServiceEdge {
"""A cursor for use in pagination."""
cursor: String!
"""The item at the end of the edge."""
node: AgreedService
}
input AgreedServiceFilter {
stateIn: [ClientServicesAgreedServiceStateEnum!]
}
input AgreedServiceInput {
description: String!
serviceId: ID
serviceName: String
accountId: ID
taxId: ID!
quantity: QuantityRuleInput
portions: [PortionInput!]!
}
type AgreedServicePortion {
billingDescription: String!
billingStart: ProposalStartBillingOnDate!
billingSummary: String!
id: ID!
invoiceStrategy: ProposalInvoiceStrategy!
name: String
price: ProposalPriceInterface!
recurrence: ProposalBillingStrategyType!
rrule: RecurrenceRule
scheduleStart: String!
}
type AgreedServiceUpdatePreview {
billingItems: [BillingItem!]!
billingSummary: String!
changedValues: [ChangedValue!]!
scheduleChangeDate: Date
}
"""Autogenerated input type of ApiAccessTokenRevoke"""
input ApiAccessTokenRevokeInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
"""Name of the application to revoke access from"""
appName: String!
}
"""Autogenerated return type of ApiAccessTokenRevoke."""
type ApiAccessTokenRevokePayload {
accessTokens: [AccessToken!]
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
userErrors: [UserError!]
}
type ApiApplication {
id: ID!
name: String!
}
"""
An App is an integration that implements generic, defined functionality that
extends core functionality, usually by integrating with an external system. For
example, a Xero App may deploy client billing invoices to Xero. These defined
functionalities are called Capabilities. An App returned through this API is
Practice specific- the same App type may have different capabilities for
different Practices
"""
type App {
appClients(
"""Returns the elements in the list that come after the specified cursor."""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
filter: AppClientFilter
): AppClientConnection!
appTaxes(
"""Returns the elements in the list that come after the specified cursor."""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
filter: AppTaxFilter
): AppTaxConnection!
appUsers(
"""Returns the elements in the list that come after the specified cursor."""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
filter: AppUserFilter
): AppUserConnection!
"""
Capabilities are standard functionality that this App implements. A list of capabilities.
"""
capabilities(filter: AppCapabilityFilter): [CapabilityWithState!]!
clientSyncSettings: ClientSyncSettings
"""The name of this App to be shown in the user interface"""
displayName: String!
"""A publicly available URL with the icon of the App"""
icon: URL!
"""A unique identifier for this App"""
id: ID!
"""The most recent client sync result (if any)."""
latestClientSync: ClientSync
ledgerItems(
"""Returns the elements in the list that come after the specified cursor."""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
): LedgerItemConnection!
"""A publicly available URL with the logo of the App"""
logo: URL!
"""The globally unique name of this App"""
name: String!
userConfigurable: UserConfigurable
workflowCategories(
"""Returns the elements in the list that come after the specified cursor."""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
): WorkflowCategoryTypeConnection!
workflowTemplates(
"""Returns the elements in the list that come after the specified cursor."""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
): WorkflowTemplateTypeConnection!
}
"""Type for filtering App Capabilitites"""
input AppCapabilityFilter {
"""State of Capabilitites"""
state: CapabilityStateEnum
}
"""
An AppClient is a counterpart to a Client that exists in an App's domain.
AppClients can be linked ("mapped") to Clients, and can be used to create
Clients. For example, a Customer in QuickBooks or Contact in Xero could be the
underlying record behind an AppClient.
"""
type AppClient implements ClientInterface {
app: App!
company: Company!
contacts(
"""Returns the elements in the list that come after the specified cursor."""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
): ContactConnection!
defaultContact: Contact!
email: String @deprecated(reason: "Use contacts or defaultContact.email")
"""An identifier used by the App this AppClient belongs to"""
externalId: ID!
id: ID!
"""Slug of the manager user"""
managerId: String
"""Full name"""
name: String!
"""Slug of the partner user"""
partnerId: String
physicalAddress: Address
postalAddress: Address
"""Link to view this AppClient in external system"""
url: String
}
"""The connection type for AppClient."""
type AppClientConnection {
"""A list of edges."""
edges: [AppClientEdge]
"""A list of nodes."""
nodes: [AppClient]
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
"""An edge in a connection."""
type AppClientEdge {
"""A cursor for use in pagination."""
cursor: String!
"""The item at the end of the edge."""
node: AppClient
}
"""Type for filtering AppClients"""
input AppClientFilter {
"""Return AppClients with these IDs"""
idsIn: [ID!]
"""Return AppClients with names containing this value"""
nameCont: String
"""Return AppClients that belong to this app"""
appName: String
"""If true, exclude AppClients mapped to a Client"""
excludeMapped: Boolean = false
}
"""Input data identifying an AppClient"""
input AppClientInput {
"""The unique name of the App that the AppClient belongs to"""
appName: String!
"""
The ID of the AppClient to map to. If missing, any existing mapping will be removed
"""
id: ID
}
"""The connection type for App."""
type AppConnection {
"""A list of edges."""
edges: [AppEdge]
"""A list of nodes."""
nodes: [App]
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
"""Autogenerated input type of AppDisconnect"""
input AppDisconnectInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
"""The name of the App to disconnect"""
appName: String!
}
"""Autogenerated return type of AppDisconnect."""
type AppDisconnectPayload {
app: App!
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
}
"""An edge in a connection."""
type AppEdge {
"""A cursor for use in pagination."""
cursor: String!
"""The item at the end of the edge."""
node: App
}
"""Autogenerated input type of AppEnable"""
input AppEnableInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
"""The name of the App to enable"""
appName: String!
}
"""Autogenerated return type of AppEnable."""
type AppEnablePayload {
app: App!
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
}
"""Type for filtering Apps"""
input AppFilter {
"""Return Apps that exactly match this name"""
name: String
"""Return Apps that implement all these Capabilities"""
capabilities: [CapabilityFilter!]
}
"""Autogenerated input type of AppSetClientSyncSettings"""
input AppSetClientSyncSettingsInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
appName: String!
settings: ClientSyncSettingsInput!
}
"""Autogenerated return type of AppSetClientSyncSettings."""
type AppSetClientSyncSettingsPayload {
app: App!
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
}
enum AppState {
DISCONNECTED
CONNECTING
CONNECTED
ENABLED
UNAUTHORISED
}
"""Autogenerated input type of AppSync"""
input AppSyncInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
"""The name of the App to sync"""
appName: String!
}
"""Autogenerated return type of AppSync."""
type AppSyncPayload {
app: App!
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
}
type AppTax {
app: App!
"""Tax Code (e.g. GST)"""
code: String!
"""The app's own identifier for this tax."""
externalId: ID!
id: ID!
"""Tax Name (e.g. Sales Tax)"""
name: String!
"""Tax Rate as a percentage (e.g. 10.0)"""
rate: Decimal!
}
"""The connection type for AppTax."""
type AppTaxConnection {
"""A list of edges."""
edges: [AppTaxEdge]
"""A list of nodes."""
nodes: [AppTax]
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
"""An edge in a connection."""
type AppTaxEdge {
"""A cursor for use in pagination."""
cursor: String!
"""The item at the end of the edge."""
node: AppTax
}
"""Type for filtering AppTaxes"""
input AppTaxFilter {
"""Return AppTaxes with these IDs"""
idsIn: [ID!]
"""Return AppTaxes with names including this string."""
nameIn: String
"""Return AppTaxes that belong to this app"""
appName: String
"""If true, exclude AppTaxes mapped to a Tax"""
excludeMapped: Boolean = false
}
"""
An AppUser is a counterpart to a User that exists in an App's domain. AppUsers
can be linked ("mapped") to Users, and can be used to create Users. For
example, a Staff member in Xero could be the underlying record behind an AppUser.
"""
type AppUser {
app: App!
email: String
"""An identifier used by the App this AppUser belongs to"""
externalId: ID!
id: ID!
"""Full name"""
name: String!
"""Link to view this AppUser in external system"""
url: String
}
"""The connection type for AppUser."""
type AppUserConnection {
"""A list of edges."""
edges: [AppUserEdge]
"""A list of nodes."""
nodes: [AppUser]
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
"""An edge in a connection."""
type AppUserEdge {
"""A cursor for use in pagination."""
cursor: String!
"""The item at the end of the edge."""
node: AppUser
}
"""Type for filtering AppUsers"""
input AppUserFilter {
"""Return AppUsers with names containing this value"""
nameCont: String
"""Return AppUsers that belong to this app"""
appName: String
"""If true, exclude AppUsers mapped to a User"""
excludeMapped: Boolean = false
}
"""Input data identifying an AppUser"""
input AppUserInput {
"""The unique name of the App that the AppUser belongs to"""
appName: String!
"""
The ID of the AppUser to map to. If missing, any existing mapping will be removed
"""
id: ID
}
type AsyncJob {
errors: [String!]!
id: ID!
resultSlug: String
state: AsyncJobStateEnum!
subjectSlug: String
}
type AsyncJobGroup {
failureCount: Int!
groupType: AsyncJobGroupTypeEnum
id: ID!
jobs: [AsyncJob!]!
name: String!
state: AsyncJobGroupStateEnum!
user: User
}
enum AsyncJobGroupStateEnum {
PENDING
COMPLETED
DEAD
}
enum AsyncJobGroupTypeEnum {
CLIENT_ARCHIVE
PAYMENT_METHOD_REQUEST
RENEWAL
SEND_PROPOSALS
CREATED_FROM_LEDGER
CREATE_PROPOSALS
}
enum AsyncJobStateEnum {
PENDING
SUCCESSFUL
FAILED
}
type BackgroundJob {
"""sidekiq background job id"""
id: String!
"""timestamp of when the job was queued"""
queuedAt: DateTime!
}
type BankAccount {
"""The editable part of the payment descriptor"""
descriptor: String
"""The prefix added to the statement descriptor during disbursal"""
descriptorPrefix: String
name: String
number: String!
routingNumber: String!
}
type BankAccountFailureEmailTemplate implements EmailTemplateInterface & PracticeTemplate {
content: String!
contentHtml: String!
createdAt: DateTime!
description: String
id: ID!
name: String!
slug: ID!
subject: String!
updatedAt: DateTime!
}
"""Autogenerated input type of BankAccountFailureEmailTemplateUpdate"""
input BankAccountFailureEmailTemplateUpdateInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
"""UUID of bank account failure email template"""
id: ID!
template: EmailTemplateInput!
}
"""Autogenerated return type of BankAccountFailureEmailTemplateUpdate."""
type BankAccountFailureEmailTemplateUpdatePayload {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
template: BankAccountFailureEmailTemplate
templates: Templates
}
type BankAccountPaymentMethod implements PaymentsPaymentMethod {
createdAt: DateTime!
displayMethodType: String!
id: ID!
isInUse: Boolean!
isInvalid: Boolean!
name: String
number: String
numberSuffix: String!
referenceNumber: ID!
routingNumber: String!
type: PaymentMethodType!
verificationUrl: URL
verified: Boolean!
}
type BankAccountVerificationEmailTemplate implements EmailTemplateInterface & PracticeTemplate {
content: String!
contentHtml: String!
createdAt: DateTime!
description: String
id: ID!
name: String!
slug: ID!
subject: String!
updatedAt: DateTime!
}
"""Autogenerated input type of BankAccountVerificationEmailTemplateUpdate"""
input BankAccountVerificationEmailTemplateUpdateInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
"""UUID of bank account verification email template"""
id: ID!
template: EmailTemplateInput!
}
"""
Autogenerated return type of BankAccountVerificationEmailTemplateUpdate.
"""
type BankAccountVerificationEmailTemplateUpdatePayload {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
template: BankAccountVerificationEmailTemplate
templates: Templates
}
"""Represents non-fractional signed whole numeric values."""
scalar BigInt
type BillableService {
billingGroup: BillingGroup!
billingItems(
"""Returns the elements in the list that come after the specified cursor."""
after: String