@oppulence/stripe-sync-engine-sdk 1.6.4 → 1.6.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -8875,32 +8875,78 @@ declare function ProcessLegacyWebhook200ResponseToJSON(value?: ProcessLegacyWebh
8875
8875
  * Do not edit the class manually.
8876
8876
  */
8877
8877
  /**
8878
- * Sync completed successfully
8878
+ *
8879
8879
  * @export
8880
- * @interface SyncBackfill200Response
8880
+ * @interface SyncBackfill202ResponseJob
8881
8881
  */
8882
- interface SyncBackfill200Response {
8882
+ interface SyncBackfill202ResponseJob {
8883
+ [key: string]: any | any;
8884
+ /**
8885
+ *
8886
+ * @type {string}
8887
+ * @memberof SyncBackfill202ResponseJob
8888
+ */
8889
+ task?: string;
8890
+ /**
8891
+ *
8892
+ * @type {string}
8893
+ * @memberof SyncBackfill202ResponseJob
8894
+ */
8895
+ queue?: string;
8896
+ }
8897
+ /**
8898
+ * Check if a given object implements the SyncBackfill202ResponseJob interface.
8899
+ */
8900
+ declare function instanceOfSyncBackfill202ResponseJob(value: object): value is SyncBackfill202ResponseJob;
8901
+ declare function SyncBackfill202ResponseJobFromJSON(json: any): SyncBackfill202ResponseJob;
8902
+ declare function SyncBackfill202ResponseJobFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncBackfill202ResponseJob;
8903
+ declare function SyncBackfill202ResponseJobToJSON(value?: SyncBackfill202ResponseJob | null): any;
8904
+
8905
+ /**
8906
+ * Stripe Sync Engine
8907
+ * REST API for managing Stripe data synchronization and tenant operations.
8908
+ *
8909
+ * The version of the OpenAPI document: 0.0.1
8910
+ *
8911
+ *
8912
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
8913
+ * https://openapi-generator.tech
8914
+ * Do not edit the class manually.
8915
+ */
8916
+
8917
+ /**
8918
+ * Sync job enqueued successfully
8919
+ * @export
8920
+ * @interface SyncBackfill202Response
8921
+ */
8922
+ interface SyncBackfill202Response {
8883
8923
  [key: string]: any | any;
8884
8924
  /**
8885
8925
  *
8886
8926
  * @type {number}
8887
- * @memberof SyncBackfill200Response
8927
+ * @memberof SyncBackfill202Response
8888
8928
  */
8889
8929
  statusCode?: number;
8890
8930
  /**
8891
8931
  *
8892
8932
  * @type {number}
8893
- * @memberof SyncBackfill200Response
8933
+ * @memberof SyncBackfill202Response
8894
8934
  */
8895
8935
  ts?: number;
8936
+ /**
8937
+ *
8938
+ * @type {SyncBackfill202ResponseJob}
8939
+ * @memberof SyncBackfill202Response
8940
+ */
8941
+ job?: SyncBackfill202ResponseJob;
8896
8942
  }
8897
8943
  /**
8898
- * Check if a given object implements the SyncBackfill200Response interface.
8944
+ * Check if a given object implements the SyncBackfill202Response interface.
8899
8945
  */
8900
- declare function instanceOfSyncBackfill200Response(value: object): value is SyncBackfill200Response;
8901
- declare function SyncBackfill200ResponseFromJSON(json: any): SyncBackfill200Response;
8902
- declare function SyncBackfill200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncBackfill200Response;
8903
- declare function SyncBackfill200ResponseToJSON(value?: SyncBackfill200Response | null): any;
8946
+ declare function instanceOfSyncBackfill202Response(value: object): value is SyncBackfill202Response;
8947
+ declare function SyncBackfill202ResponseFromJSON(json: any): SyncBackfill202Response;
8948
+ declare function SyncBackfill202ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncBackfill202Response;
8949
+ declare function SyncBackfill202ResponseToJSON(value?: SyncBackfill202Response | null): any;
8904
8950
 
8905
8951
  /**
8906
8952
  * Stripe Sync Engine
@@ -9032,37 +9078,83 @@ declare function SyncBackfillRequestToJSON(value?: SyncBackfillRequest | null):
9032
9078
  * Do not edit the class manually.
9033
9079
  */
9034
9080
  /**
9035
- * Single entity sync completed successfully
9081
+ *
9036
9082
  * @export
9037
- * @interface SyncSingleEntity200Response
9083
+ * @interface SyncSingleEntity202ResponseJob
9038
9084
  */
9039
- interface SyncSingleEntity200Response {
9085
+ interface SyncSingleEntity202ResponseJob {
9086
+ [key: string]: any | any;
9087
+ /**
9088
+ *
9089
+ * @type {string}
9090
+ * @memberof SyncSingleEntity202ResponseJob
9091
+ */
9092
+ task?: string;
9093
+ /**
9094
+ *
9095
+ * @type {string}
9096
+ * @memberof SyncSingleEntity202ResponseJob
9097
+ */
9098
+ queue?: string;
9099
+ /**
9100
+ *
9101
+ * @type {string}
9102
+ * @memberof SyncSingleEntity202ResponseJob
9103
+ */
9104
+ stripeId?: string;
9105
+ }
9106
+ /**
9107
+ * Check if a given object implements the SyncSingleEntity202ResponseJob interface.
9108
+ */
9109
+ declare function instanceOfSyncSingleEntity202ResponseJob(value: object): value is SyncSingleEntity202ResponseJob;
9110
+ declare function SyncSingleEntity202ResponseJobFromJSON(json: any): SyncSingleEntity202ResponseJob;
9111
+ declare function SyncSingleEntity202ResponseJobFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncSingleEntity202ResponseJob;
9112
+ declare function SyncSingleEntity202ResponseJobToJSON(value?: SyncSingleEntity202ResponseJob | null): any;
9113
+
9114
+ /**
9115
+ * Stripe Sync Engine
9116
+ * REST API for managing Stripe data synchronization and tenant operations.
9117
+ *
9118
+ * The version of the OpenAPI document: 0.0.1
9119
+ *
9120
+ *
9121
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9122
+ * https://openapi-generator.tech
9123
+ * Do not edit the class manually.
9124
+ */
9125
+
9126
+ /**
9127
+ * Single entity sync job enqueued
9128
+ * @export
9129
+ * @interface SyncSingleEntity202Response
9130
+ */
9131
+ interface SyncSingleEntity202Response {
9040
9132
  /**
9041
9133
  *
9042
9134
  * @type {number}
9043
- * @memberof SyncSingleEntity200Response
9135
+ * @memberof SyncSingleEntity202Response
9044
9136
  */
9045
9137
  statusCode?: number;
9046
9138
  /**
9047
9139
  *
9048
9140
  * @type {number}
9049
- * @memberof SyncSingleEntity200Response
9141
+ * @memberof SyncSingleEntity202Response
9050
9142
  */
9051
9143
  ts?: number;
9052
9144
  /**
9053
9145
  *
9054
- * @type {object}
9055
- * @memberof SyncSingleEntity200Response
9146
+ * @type {SyncSingleEntity202ResponseJob}
9147
+ * @memberof SyncSingleEntity202Response
9056
9148
  */
9057
- data?: object;
9149
+ job?: SyncSingleEntity202ResponseJob;
9058
9150
  }
9059
9151
  /**
9060
- * Check if a given object implements the SyncSingleEntity200Response interface.
9152
+ * Check if a given object implements the SyncSingleEntity202Response interface.
9061
9153
  */
9062
- declare function instanceOfSyncSingleEntity200Response(value: object): value is SyncSingleEntity200Response;
9063
- declare function SyncSingleEntity200ResponseFromJSON(json: any): SyncSingleEntity200Response;
9064
- declare function SyncSingleEntity200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncSingleEntity200Response;
9065
- declare function SyncSingleEntity200ResponseToJSON(value?: SyncSingleEntity200Response | null): any;
9154
+ declare function instanceOfSyncSingleEntity202Response(value: object): value is SyncSingleEntity202Response;
9155
+ declare function SyncSingleEntity202ResponseFromJSON(json: any): SyncSingleEntity202Response;
9156
+ declare function SyncSingleEntity202ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncSingleEntity202Response;
9157
+ declare function SyncSingleEntity202ResponseToJSON(value?: SyncSingleEntity202Response | null): any;
9066
9158
 
9067
9159
  /**
9068
9160
  * Stripe Sync Engine
@@ -9078,23 +9170,36 @@ declare function SyncSingleEntity200ResponseToJSON(value?: SyncSingleEntity200Re
9078
9170
  /**
9079
9171
  *
9080
9172
  * @export
9081
- * @interface SyncTenant200ResponseDataValue
9173
+ * @interface SyncTenant202ResponseJob
9082
9174
  */
9083
- interface SyncTenant200ResponseDataValue {
9175
+ interface SyncTenant202ResponseJob {
9176
+ [key: string]: any | any;
9084
9177
  /**
9085
9178
  *
9086
- * @type {number}
9087
- * @memberof SyncTenant200ResponseDataValue
9179
+ * @type {string}
9180
+ * @memberof SyncTenant202ResponseJob
9181
+ */
9182
+ task?: string;
9183
+ /**
9184
+ *
9185
+ * @type {string}
9186
+ * @memberof SyncTenant202ResponseJob
9187
+ */
9188
+ queue?: string;
9189
+ /**
9190
+ *
9191
+ * @type {string}
9192
+ * @memberof SyncTenant202ResponseJob
9088
9193
  */
9089
- synced?: number;
9194
+ tenantId?: string;
9090
9195
  }
9091
9196
  /**
9092
- * Check if a given object implements the SyncTenant200ResponseDataValue interface.
9197
+ * Check if a given object implements the SyncTenant202ResponseJob interface.
9093
9198
  */
9094
- declare function instanceOfSyncTenant200ResponseDataValue(value: object): value is SyncTenant200ResponseDataValue;
9095
- declare function SyncTenant200ResponseDataValueFromJSON(json: any): SyncTenant200ResponseDataValue;
9096
- declare function SyncTenant200ResponseDataValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncTenant200ResponseDataValue;
9097
- declare function SyncTenant200ResponseDataValueToJSON(value?: SyncTenant200ResponseDataValue | null): any;
9199
+ declare function instanceOfSyncTenant202ResponseJob(value: object): value is SyncTenant202ResponseJob;
9200
+ declare function SyncTenant202ResponseJobFromJSON(json: any): SyncTenant202ResponseJob;
9201
+ declare function SyncTenant202ResponseJobFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncTenant202ResponseJob;
9202
+ declare function SyncTenant202ResponseJobToJSON(value?: SyncTenant202ResponseJob | null): any;
9098
9203
 
9099
9204
  /**
9100
9205
  * Stripe Sync Engine
@@ -9109,39 +9214,37 @@ declare function SyncTenant200ResponseDataValueToJSON(value?: SyncTenant200Respo
9109
9214
  */
9110
9215
 
9111
9216
  /**
9112
- * Sync completed successfully
9217
+ * Tenant sync job enqueued
9113
9218
  * @export
9114
- * @interface SyncTenant200Response
9219
+ * @interface SyncTenant202Response
9115
9220
  */
9116
- interface SyncTenant200Response {
9221
+ interface SyncTenant202Response {
9117
9222
  /**
9118
9223
  *
9119
9224
  * @type {number}
9120
- * @memberof SyncTenant200Response
9225
+ * @memberof SyncTenant202Response
9121
9226
  */
9122
9227
  statusCode?: number;
9123
9228
  /**
9124
9229
  *
9125
9230
  * @type {number}
9126
- * @memberof SyncTenant200Response
9231
+ * @memberof SyncTenant202Response
9127
9232
  */
9128
9233
  ts?: number;
9129
9234
  /**
9130
9235
  *
9131
- * @type {{ [key: string]: SyncTenant200ResponseDataValue; }}
9132
- * @memberof SyncTenant200Response
9236
+ * @type {SyncTenant202ResponseJob}
9237
+ * @memberof SyncTenant202Response
9133
9238
  */
9134
- data?: {
9135
- [key: string]: SyncTenant200ResponseDataValue;
9136
- };
9239
+ job?: SyncTenant202ResponseJob;
9137
9240
  }
9138
9241
  /**
9139
- * Check if a given object implements the SyncTenant200Response interface.
9242
+ * Check if a given object implements the SyncTenant202Response interface.
9140
9243
  */
9141
- declare function instanceOfSyncTenant200Response(value: object): value is SyncTenant200Response;
9142
- declare function SyncTenant200ResponseFromJSON(json: any): SyncTenant200Response;
9143
- declare function SyncTenant200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncTenant200Response;
9144
- declare function SyncTenant200ResponseToJSON(value?: SyncTenant200Response | null): any;
9244
+ declare function instanceOfSyncTenant202Response(value: object): value is SyncTenant202Response;
9245
+ declare function SyncTenant202ResponseFromJSON(json: any): SyncTenant202Response;
9246
+ declare function SyncTenant202ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncTenant202Response;
9247
+ declare function SyncTenant202ResponseToJSON(value?: SyncTenant202Response | null): any;
9145
9248
 
9146
9249
  /**
9147
9250
  * Stripe Sync Engine
@@ -9155,32 +9258,84 @@ declare function SyncTenant200ResponseToJSON(value?: SyncTenant200Response | nul
9155
9258
  * Do not edit the class manually.
9156
9259
  */
9157
9260
  /**
9158
- * Daily sync completed successfully
9261
+ *
9159
9262
  * @export
9160
- * @interface TriggerDailySync200Response
9263
+ * @interface TriggerDailySync202ResponseJob
9161
9264
  */
9162
- interface TriggerDailySync200Response {
9265
+ interface TriggerDailySync202ResponseJob {
9266
+ [key: string]: any | any;
9267
+ /**
9268
+ *
9269
+ * @type {string}
9270
+ * @memberof TriggerDailySync202ResponseJob
9271
+ */
9272
+ task?: string;
9273
+ /**
9274
+ *
9275
+ * @type {string}
9276
+ * @memberof TriggerDailySync202ResponseJob
9277
+ */
9278
+ queue?: string;
9279
+ /**
9280
+ *
9281
+ * @type {string}
9282
+ * @memberof TriggerDailySync202ResponseJob
9283
+ */
9284
+ object?: string;
9285
+ }
9286
+ /**
9287
+ * Check if a given object implements the TriggerDailySync202ResponseJob interface.
9288
+ */
9289
+ declare function instanceOfTriggerDailySync202ResponseJob(value: object): value is TriggerDailySync202ResponseJob;
9290
+ declare function TriggerDailySync202ResponseJobFromJSON(json: any): TriggerDailySync202ResponseJob;
9291
+ declare function TriggerDailySync202ResponseJobFromJSONTyped(json: any, ignoreDiscriminator: boolean): TriggerDailySync202ResponseJob;
9292
+ declare function TriggerDailySync202ResponseJobToJSON(value?: TriggerDailySync202ResponseJob | null): any;
9293
+
9294
+ /**
9295
+ * Stripe Sync Engine
9296
+ * REST API for managing Stripe data synchronization and tenant operations.
9297
+ *
9298
+ * The version of the OpenAPI document: 0.0.1
9299
+ *
9300
+ *
9301
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9302
+ * https://openapi-generator.tech
9303
+ * Do not edit the class manually.
9304
+ */
9305
+
9306
+ /**
9307
+ * Daily sync job enqueued
9308
+ * @export
9309
+ * @interface TriggerDailySync202Response
9310
+ */
9311
+ interface TriggerDailySync202Response {
9163
9312
  [key: string]: any | any;
9164
9313
  /**
9165
9314
  *
9166
9315
  * @type {number}
9167
- * @memberof TriggerDailySync200Response
9316
+ * @memberof TriggerDailySync202Response
9168
9317
  */
9169
9318
  statusCode?: number;
9170
9319
  /**
9171
9320
  *
9172
9321
  * @type {number}
9173
- * @memberof TriggerDailySync200Response
9322
+ * @memberof TriggerDailySync202Response
9174
9323
  */
9175
9324
  ts?: number;
9325
+ /**
9326
+ *
9327
+ * @type {TriggerDailySync202ResponseJob}
9328
+ * @memberof TriggerDailySync202Response
9329
+ */
9330
+ job?: TriggerDailySync202ResponseJob;
9176
9331
  }
9177
9332
  /**
9178
- * Check if a given object implements the TriggerDailySync200Response interface.
9333
+ * Check if a given object implements the TriggerDailySync202Response interface.
9179
9334
  */
9180
- declare function instanceOfTriggerDailySync200Response(value: object): value is TriggerDailySync200Response;
9181
- declare function TriggerDailySync200ResponseFromJSON(json: any): TriggerDailySync200Response;
9182
- declare function TriggerDailySync200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TriggerDailySync200Response;
9183
- declare function TriggerDailySync200ResponseToJSON(value?: TriggerDailySync200Response | null): any;
9335
+ declare function instanceOfTriggerDailySync202Response(value: object): value is TriggerDailySync202Response;
9336
+ declare function TriggerDailySync202ResponseFromJSON(json: any): TriggerDailySync202Response;
9337
+ declare function TriggerDailySync202ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TriggerDailySync202Response;
9338
+ declare function TriggerDailySync202ResponseToJSON(value?: TriggerDailySync202Response | null): any;
9184
9339
 
9185
9340
  /**
9186
9341
  * Stripe Sync Engine
@@ -9254,33 +9409,40 @@ declare function TriggerDailySyncRequestToJSON(value?: TriggerDailySyncRequest |
9254
9409
  * https://openapi-generator.tech
9255
9410
  * Do not edit the class manually.
9256
9411
  */
9412
+
9257
9413
  /**
9258
- * Monthly sync completed successfully
9414
+ * Monthly sync job enqueued
9259
9415
  * @export
9260
- * @interface TriggerMonthlySync200Response
9416
+ * @interface TriggerMonthlySync202Response
9261
9417
  */
9262
- interface TriggerMonthlySync200Response {
9418
+ interface TriggerMonthlySync202Response {
9263
9419
  [key: string]: any | any;
9264
9420
  /**
9265
9421
  *
9266
9422
  * @type {number}
9267
- * @memberof TriggerMonthlySync200Response
9423
+ * @memberof TriggerMonthlySync202Response
9268
9424
  */
9269
9425
  statusCode?: number;
9270
9426
  /**
9271
9427
  *
9272
9428
  * @type {number}
9273
- * @memberof TriggerMonthlySync200Response
9429
+ * @memberof TriggerMonthlySync202Response
9274
9430
  */
9275
9431
  ts?: number;
9432
+ /**
9433
+ *
9434
+ * @type {TriggerDailySync202ResponseJob}
9435
+ * @memberof TriggerMonthlySync202Response
9436
+ */
9437
+ job?: TriggerDailySync202ResponseJob;
9276
9438
  }
9277
9439
  /**
9278
- * Check if a given object implements the TriggerMonthlySync200Response interface.
9440
+ * Check if a given object implements the TriggerMonthlySync202Response interface.
9279
9441
  */
9280
- declare function instanceOfTriggerMonthlySync200Response(value: object): value is TriggerMonthlySync200Response;
9281
- declare function TriggerMonthlySync200ResponseFromJSON(json: any): TriggerMonthlySync200Response;
9282
- declare function TriggerMonthlySync200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TriggerMonthlySync200Response;
9283
- declare function TriggerMonthlySync200ResponseToJSON(value?: TriggerMonthlySync200Response | null): any;
9442
+ declare function instanceOfTriggerMonthlySync202Response(value: object): value is TriggerMonthlySync202Response;
9443
+ declare function TriggerMonthlySync202ResponseFromJSON(json: any): TriggerMonthlySync202Response;
9444
+ declare function TriggerMonthlySync202ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TriggerMonthlySync202Response;
9445
+ declare function TriggerMonthlySync202ResponseToJSON(value?: TriggerMonthlySync202Response | null): any;
9284
9446
 
9285
9447
  /**
9286
9448
  * Stripe Sync Engine
@@ -9293,33 +9455,40 @@ declare function TriggerMonthlySync200ResponseToJSON(value?: TriggerMonthlySync2
9293
9455
  * https://openapi-generator.tech
9294
9456
  * Do not edit the class manually.
9295
9457
  */
9458
+
9296
9459
  /**
9297
- * Weekly sync completed successfully
9460
+ * Weekly sync job enqueued
9298
9461
  * @export
9299
- * @interface TriggerWeeklySync200Response
9462
+ * @interface TriggerWeeklySync202Response
9300
9463
  */
9301
- interface TriggerWeeklySync200Response {
9464
+ interface TriggerWeeklySync202Response {
9302
9465
  [key: string]: any | any;
9303
9466
  /**
9304
9467
  *
9305
9468
  * @type {number}
9306
- * @memberof TriggerWeeklySync200Response
9469
+ * @memberof TriggerWeeklySync202Response
9307
9470
  */
9308
9471
  statusCode?: number;
9309
9472
  /**
9310
9473
  *
9311
9474
  * @type {number}
9312
- * @memberof TriggerWeeklySync200Response
9475
+ * @memberof TriggerWeeklySync202Response
9313
9476
  */
9314
9477
  ts?: number;
9478
+ /**
9479
+ *
9480
+ * @type {TriggerDailySync202ResponseJob}
9481
+ * @memberof TriggerWeeklySync202Response
9482
+ */
9483
+ job?: TriggerDailySync202ResponseJob;
9315
9484
  }
9316
9485
  /**
9317
- * Check if a given object implements the TriggerWeeklySync200Response interface.
9486
+ * Check if a given object implements the TriggerWeeklySync202Response interface.
9318
9487
  */
9319
- declare function instanceOfTriggerWeeklySync200Response(value: object): value is TriggerWeeklySync200Response;
9320
- declare function TriggerWeeklySync200ResponseFromJSON(json: any): TriggerWeeklySync200Response;
9321
- declare function TriggerWeeklySync200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TriggerWeeklySync200Response;
9322
- declare function TriggerWeeklySync200ResponseToJSON(value?: TriggerWeeklySync200Response | null): any;
9488
+ declare function instanceOfTriggerWeeklySync202Response(value: object): value is TriggerWeeklySync202Response;
9489
+ declare function TriggerWeeklySync202ResponseFromJSON(json: any): TriggerWeeklySync202Response;
9490
+ declare function TriggerWeeklySync202ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TriggerWeeklySync202Response;
9491
+ declare function TriggerWeeklySync202ResponseToJSON(value?: TriggerWeeklySync202Response | null): any;
9323
9492
 
9324
9493
  /**
9325
9494
  * Stripe Sync Engine
@@ -12251,11 +12420,11 @@ interface SyncApiInterface {
12251
12420
  * @throws {RequiredError}
12252
12421
  * @memberof SyncApiInterface
12253
12422
  */
12254
- syncBackfillRaw(requestParameters: SyncBackfillOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SyncBackfill200Response>>;
12423
+ syncBackfillRaw(requestParameters: SyncBackfillOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SyncBackfill202Response>>;
12255
12424
  /**
12256
12425
  * Sync Stripe data with backfill options
12257
12426
  */
12258
- syncBackfill(requestParameters: SyncBackfillOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SyncBackfill200Response>;
12427
+ syncBackfill(requestParameters: SyncBackfillOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SyncBackfill202Response>;
12259
12428
  /**
12260
12429
  * Sync a single Stripe entity by ID
12261
12430
  * @param {string} stripeId
@@ -12263,11 +12432,11 @@ interface SyncApiInterface {
12263
12432
  * @throws {RequiredError}
12264
12433
  * @memberof SyncApiInterface
12265
12434
  */
12266
- syncSingleEntityRaw(requestParameters: SyncSingleEntityRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SyncSingleEntity200Response>>;
12435
+ syncSingleEntityRaw(requestParameters: SyncSingleEntityRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SyncSingleEntity202Response>>;
12267
12436
  /**
12268
12437
  * Sync a single Stripe entity by ID
12269
12438
  */
12270
- syncSingleEntity(requestParameters: SyncSingleEntityRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SyncSingleEntity200Response>;
12439
+ syncSingleEntity(requestParameters: SyncSingleEntityRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SyncSingleEntity202Response>;
12271
12440
  /**
12272
12441
  * Sync Stripe data for the last 24 hours
12273
12442
  * @param {TriggerDailySyncRequest} [triggerDailySyncRequest]
@@ -12275,11 +12444,11 @@ interface SyncApiInterface {
12275
12444
  * @throws {RequiredError}
12276
12445
  * @memberof SyncApiInterface
12277
12446
  */
12278
- triggerDailySyncRaw(requestParameters: TriggerDailySyncOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TriggerDailySync200Response>>;
12447
+ triggerDailySyncRaw(requestParameters: TriggerDailySyncOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TriggerDailySync202Response>>;
12279
12448
  /**
12280
12449
  * Sync Stripe data for the last 24 hours
12281
12450
  */
12282
- triggerDailySync(requestParameters: TriggerDailySyncOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TriggerDailySync200Response>;
12451
+ triggerDailySync(requestParameters: TriggerDailySyncOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TriggerDailySync202Response>;
12283
12452
  /**
12284
12453
  * Sync Stripe data for the last month
12285
12454
  * @param {TriggerDailySyncRequest} [triggerDailySyncRequest]
@@ -12287,11 +12456,11 @@ interface SyncApiInterface {
12287
12456
  * @throws {RequiredError}
12288
12457
  * @memberof SyncApiInterface
12289
12458
  */
12290
- triggerMonthlySyncRaw(requestParameters: TriggerMonthlySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TriggerMonthlySync200Response>>;
12459
+ triggerMonthlySyncRaw(requestParameters: TriggerMonthlySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TriggerMonthlySync202Response>>;
12291
12460
  /**
12292
12461
  * Sync Stripe data for the last month
12293
12462
  */
12294
- triggerMonthlySync(requestParameters: TriggerMonthlySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TriggerMonthlySync200Response>;
12463
+ triggerMonthlySync(requestParameters: TriggerMonthlySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TriggerMonthlySync202Response>;
12295
12464
  /**
12296
12465
  * Sync Stripe data for the last 7 days
12297
12466
  * @param {TriggerDailySyncRequest} [triggerDailySyncRequest]
@@ -12299,11 +12468,11 @@ interface SyncApiInterface {
12299
12468
  * @throws {RequiredError}
12300
12469
  * @memberof SyncApiInterface
12301
12470
  */
12302
- triggerWeeklySyncRaw(requestParameters: TriggerWeeklySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TriggerWeeklySync200Response>>;
12471
+ triggerWeeklySyncRaw(requestParameters: TriggerWeeklySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TriggerWeeklySync202Response>>;
12303
12472
  /**
12304
12473
  * Sync Stripe data for the last 7 days
12305
12474
  */
12306
- triggerWeeklySync(requestParameters: TriggerWeeklySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TriggerWeeklySync200Response>;
12475
+ triggerWeeklySync(requestParameters: TriggerWeeklySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TriggerWeeklySync202Response>;
12307
12476
  }
12308
12477
  /**
12309
12478
  *
@@ -12312,43 +12481,43 @@ declare class SyncApi extends BaseAPI implements SyncApiInterface {
12312
12481
  /**
12313
12482
  * Sync Stripe data with backfill options
12314
12483
  */
12315
- syncBackfillRaw(requestParameters: SyncBackfillOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SyncBackfill200Response>>;
12484
+ syncBackfillRaw(requestParameters: SyncBackfillOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SyncBackfill202Response>>;
12316
12485
  /**
12317
12486
  * Sync Stripe data with backfill options
12318
12487
  */
12319
- syncBackfill(requestParameters?: SyncBackfillOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SyncBackfill200Response>;
12488
+ syncBackfill(requestParameters?: SyncBackfillOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SyncBackfill202Response>;
12320
12489
  /**
12321
12490
  * Sync a single Stripe entity by ID
12322
12491
  */
12323
- syncSingleEntityRaw(requestParameters: SyncSingleEntityRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SyncSingleEntity200Response>>;
12492
+ syncSingleEntityRaw(requestParameters: SyncSingleEntityRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SyncSingleEntity202Response>>;
12324
12493
  /**
12325
12494
  * Sync a single Stripe entity by ID
12326
12495
  */
12327
- syncSingleEntity(requestParameters: SyncSingleEntityRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SyncSingleEntity200Response>;
12496
+ syncSingleEntity(requestParameters: SyncSingleEntityRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SyncSingleEntity202Response>;
12328
12497
  /**
12329
12498
  * Sync Stripe data for the last 24 hours
12330
12499
  */
12331
- triggerDailySyncRaw(requestParameters: TriggerDailySyncOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TriggerDailySync200Response>>;
12500
+ triggerDailySyncRaw(requestParameters: TriggerDailySyncOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TriggerDailySync202Response>>;
12332
12501
  /**
12333
12502
  * Sync Stripe data for the last 24 hours
12334
12503
  */
12335
- triggerDailySync(requestParameters?: TriggerDailySyncOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TriggerDailySync200Response>;
12504
+ triggerDailySync(requestParameters?: TriggerDailySyncOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TriggerDailySync202Response>;
12336
12505
  /**
12337
12506
  * Sync Stripe data for the last month
12338
12507
  */
12339
- triggerMonthlySyncRaw(requestParameters: TriggerMonthlySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TriggerMonthlySync200Response>>;
12508
+ triggerMonthlySyncRaw(requestParameters: TriggerMonthlySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TriggerMonthlySync202Response>>;
12340
12509
  /**
12341
12510
  * Sync Stripe data for the last month
12342
12511
  */
12343
- triggerMonthlySync(requestParameters?: TriggerMonthlySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TriggerMonthlySync200Response>;
12512
+ triggerMonthlySync(requestParameters?: TriggerMonthlySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TriggerMonthlySync202Response>;
12344
12513
  /**
12345
12514
  * Sync Stripe data for the last 7 days
12346
12515
  */
12347
- triggerWeeklySyncRaw(requestParameters: TriggerWeeklySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TriggerWeeklySync200Response>>;
12516
+ triggerWeeklySyncRaw(requestParameters: TriggerWeeklySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TriggerWeeklySync202Response>>;
12348
12517
  /**
12349
12518
  * Sync Stripe data for the last 7 days
12350
12519
  */
12351
- triggerWeeklySync(requestParameters?: TriggerWeeklySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TriggerWeeklySync200Response>;
12520
+ triggerWeeklySync(requestParameters?: TriggerWeeklySyncRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TriggerWeeklySync202Response>;
12352
12521
  }
12353
12522
 
12354
12523
  /**
@@ -12463,11 +12632,11 @@ interface TenantsApiInterface {
12463
12632
  * @throws {RequiredError}
12464
12633
  * @memberof TenantsApiInterface
12465
12634
  */
12466
- syncTenantRaw(requestParameters: SyncTenantRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SyncTenant200Response>>;
12635
+ syncTenantRaw(requestParameters: SyncTenantRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SyncTenant202Response>>;
12467
12636
  /**
12468
12637
  * Trigger manual sync for tenant
12469
12638
  */
12470
- syncTenant(requestParameters: SyncTenantRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SyncTenant200Response>;
12639
+ syncTenant(requestParameters: SyncTenantRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SyncTenant202Response>;
12471
12640
  /**
12472
12641
  * Update tenant configuration
12473
12642
  * @param {string} tenantId
@@ -12529,11 +12698,11 @@ declare class TenantsApi extends BaseAPI implements TenantsApiInterface {
12529
12698
  /**
12530
12699
  * Trigger manual sync for tenant
12531
12700
  */
12532
- syncTenantRaw(requestParameters: SyncTenantRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SyncTenant200Response>>;
12701
+ syncTenantRaw(requestParameters: SyncTenantRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SyncTenant202Response>>;
12533
12702
  /**
12534
12703
  * Trigger manual sync for tenant
12535
12704
  */
12536
- syncTenant(requestParameters: SyncTenantRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SyncTenant200Response>;
12705
+ syncTenant(requestParameters: SyncTenantRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SyncTenant202Response>;
12537
12706
  /**
12538
12707
  * Update tenant configuration
12539
12708
  */
@@ -12918,4 +13087,4 @@ declare class WebhooksApi extends BaseAPI implements WebhooksApiInterface {
12918
13087
  webhooksStripeTenantIdPost(requestParameters: WebhooksStripeTenantIdPostRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ProcessLegacyWebhook200Response>;
12919
13088
  }
12920
13089
 
12921
- export { type ApiResponse, type ApiV1BusinessMetricsBreakEvenAnalysisGet200Response, ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseFromJSON, ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseFromJSONTyped, ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseToJSON, type ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseValInner, ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsBreakEvenAnalysisGetRequest, type ApiV1BusinessMetricsCashFlowForecastGet200Response, ApiV1BusinessMetricsCashFlowForecastGet200ResponseFromJSON, ApiV1BusinessMetricsCashFlowForecastGet200ResponseFromJSONTyped, ApiV1BusinessMetricsCashFlowForecastGet200ResponseToJSON, type ApiV1BusinessMetricsCashFlowForecastGet200ResponseValInner, ApiV1BusinessMetricsCashFlowForecastGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsCashFlowForecastGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsCashFlowForecastGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsCashFlowForecastGetRequest, type ApiV1BusinessMetricsCashRunwayGet200Response, ApiV1BusinessMetricsCashRunwayGet200ResponseFromJSON, ApiV1BusinessMetricsCashRunwayGet200ResponseFromJSONTyped, ApiV1BusinessMetricsCashRunwayGet200ResponseToJSON, type ApiV1BusinessMetricsCashRunwayGet200ResponseValInner, ApiV1BusinessMetricsCashRunwayGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsCashRunwayGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsCashRunwayGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsCashRunwayGetRequest, type ApiV1BusinessMetricsCustomerConcentrationRiskGet200Response, ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseFromJSON, ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseFromJSONTyped, ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseToJSON, type ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseValInner, ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsCustomerConcentrationRiskGetRequest, type ApiV1BusinessMetricsCustomerLifetimeValueGet200Response, ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseFromJSON, ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseFromJSONTyped, ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseToJSON, type ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseValInner, ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsCustomerLifetimeValueGetRequest, type ApiV1BusinessMetricsDaysCashOnHandGet200Response, ApiV1BusinessMetricsDaysCashOnHandGet200ResponseFromJSON, ApiV1BusinessMetricsDaysCashOnHandGet200ResponseFromJSONTyped, ApiV1BusinessMetricsDaysCashOnHandGet200ResponseToJSON, type ApiV1BusinessMetricsDaysCashOnHandGet200ResponseValInner, ApiV1BusinessMetricsDaysCashOnHandGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsDaysCashOnHandGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsDaysCashOnHandGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsDaysCashOnHandGetRequest, type ApiV1BusinessMetricsExpenseRatioAnalysisGet200Response, ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseFromJSON, ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseFromJSONTyped, ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseToJSON, type ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseValInner, ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsExpenseRatioAnalysisGetRequest, type ApiV1BusinessMetricsExpensesByCostTypeGet200Response, ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseFromJSON, ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseFromJSONTyped, ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseToJSON, type ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseValInner, ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsExpensesByCostTypeGetRequest, type ApiV1BusinessMetricsInvoiceToCashTimeGet200Response, ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseFromJSON, ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseFromJSONTyped, ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseToJSON, type ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseValInner, ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsInvoiceToCashTimeGetRequest, type ApiV1BusinessMetricsMonthlyFinancialSummaryGet200Response, ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseFromJSON, ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseFromJSONTyped, ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseToJSON, type ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseValInner, ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsMonthlyFinancialSummaryGetRequest, type ApiV1BusinessMetricsMrrMovementGet200Response, ApiV1BusinessMetricsMrrMovementGet200ResponseFromJSON, ApiV1BusinessMetricsMrrMovementGet200ResponseFromJSONTyped, ApiV1BusinessMetricsMrrMovementGet200ResponseToJSON, type ApiV1BusinessMetricsMrrMovementGet200ResponseValInner, ApiV1BusinessMetricsMrrMovementGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsMrrMovementGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsMrrMovementGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsMrrMovementGetRequest, type ApiV1BusinessMetricsMrrTrackingGet200Response, ApiV1BusinessMetricsMrrTrackingGet200ResponseFromJSON, ApiV1BusinessMetricsMrrTrackingGet200ResponseFromJSONTyped, ApiV1BusinessMetricsMrrTrackingGet200ResponseToJSON, type ApiV1BusinessMetricsMrrTrackingGet200ResponseValInner, ApiV1BusinessMetricsMrrTrackingGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsMrrTrackingGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsMrrTrackingGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsMrrTrackingGetRequest, type ApiV1BusinessMetricsRevenueByCategoryGet200Response, ApiV1BusinessMetricsRevenueByCategoryGet200ResponseFromJSON, ApiV1BusinessMetricsRevenueByCategoryGet200ResponseFromJSONTyped, ApiV1BusinessMetricsRevenueByCategoryGet200ResponseToJSON, type ApiV1BusinessMetricsRevenueByCategoryGet200ResponseValInner, ApiV1BusinessMetricsRevenueByCategoryGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsRevenueByCategoryGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsRevenueByCategoryGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsRevenueByCategoryGetRequest, type ApiV1BusinessMetricsRuleOf40Get200Response, ApiV1BusinessMetricsRuleOf40Get200ResponseFromJSON, ApiV1BusinessMetricsRuleOf40Get200ResponseFromJSONTyped, ApiV1BusinessMetricsRuleOf40Get200ResponseToJSON, type ApiV1BusinessMetricsRuleOf40Get200ResponseValInner, ApiV1BusinessMetricsRuleOf40Get200ResponseValInnerFromJSON, ApiV1BusinessMetricsRuleOf40Get200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsRuleOf40Get200ResponseValInnerToJSON, type ApiV1BusinessMetricsRuleOf40GetRequest, type ApiV1BusinessMetricsWorkingCapitalAnalysisGet200Response, ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseFromJSON, ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseFromJSONTyped, ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseToJSON, type ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseValInner, ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsWorkingCapitalAnalysisGetRequest, type ApiV1RecurringTransactionsByStatusGet200Response, ApiV1RecurringTransactionsByStatusGet200ResponseFromJSON, ApiV1RecurringTransactionsByStatusGet200ResponseFromJSONTyped, ApiV1RecurringTransactionsByStatusGet200ResponseToJSON, type ApiV1RecurringTransactionsByStatusGet200ResponseValInner, ApiV1RecurringTransactionsByStatusGet200ResponseValInnerFromJSON, ApiV1RecurringTransactionsByStatusGet200ResponseValInnerFromJSONTyped, ApiV1RecurringTransactionsByStatusGet200ResponseValInnerToJSON, type ApiV1RecurringTransactionsByStatusGetRequest, type ApiV1RecurringTransactionsCashFlowProjectionGet200Response, ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseFromJSON, ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseFromJSONTyped, ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseToJSON, type ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseValInner, ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseValInnerFromJSON, ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseValInnerFromJSONTyped, ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseValInnerToJSON, type ApiV1RecurringTransactionsCashFlowProjectionGetRequest, type ApiV1RecurringTransactionsGet200Response, ApiV1RecurringTransactionsGet200ResponseFromJSON, ApiV1RecurringTransactionsGet200ResponseFromJSONTyped, ApiV1RecurringTransactionsGet200ResponseToJSON, type ApiV1RecurringTransactionsGet200ResponseValInner, ApiV1RecurringTransactionsGet200ResponseValInnerFromJSON, ApiV1RecurringTransactionsGet200ResponseValInnerFromJSONTyped, ApiV1RecurringTransactionsGet200ResponseValInnerToJSON, type ApiV1RecurringTransactionsGetRequest, ApiV1RecurringTransactionsGetSortByEnum, ApiV1RecurringTransactionsGetSortDirEnum, type ApiV1RecurringTransactionsImportantGet200Response, ApiV1RecurringTransactionsImportantGet200ResponseFromJSON, ApiV1RecurringTransactionsImportantGet200ResponseFromJSONTyped, ApiV1RecurringTransactionsImportantGet200ResponseToJSON, type ApiV1RecurringTransactionsImportantGet200ResponseValInner, ApiV1RecurringTransactionsImportantGet200ResponseValInnerFromJSON, ApiV1RecurringTransactionsImportantGet200ResponseValInnerFromJSONTyped, ApiV1RecurringTransactionsImportantGet200ResponseValInnerToJSON, type ApiV1RecurringTransactionsImportantGetRequest, type ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200Response, ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseFromJSON, ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseFromJSONTyped, ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseToJSON, type ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseValInner, ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseValInnerFromJSON, ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseValInnerFromJSONTyped, ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseValInnerToJSON, type ApiV1RecurringTransactionsMonthlyCashFlowForecastGetRequest, type ApiV1RecurringTransactionsUpcomingGet200Response, ApiV1RecurringTransactionsUpcomingGet200ResponseFromJSON, ApiV1RecurringTransactionsUpcomingGet200ResponseFromJSONTyped, ApiV1RecurringTransactionsUpcomingGet200ResponseToJSON, type ApiV1RecurringTransactionsUpcomingGet200ResponseValInner, ApiV1RecurringTransactionsUpcomingGet200ResponseValInnerFromJSON, ApiV1RecurringTransactionsUpcomingGet200ResponseValInnerFromJSONTyped, ApiV1RecurringTransactionsUpcomingGet200ResponseValInnerToJSON, type ApiV1RecurringTransactionsUpcomingGetRequest, type ApiV1StripeChargesByCurrencyGet200Response, ApiV1StripeChargesByCurrencyGet200ResponseFromJSON, ApiV1StripeChargesByCurrencyGet200ResponseFromJSONTyped, ApiV1StripeChargesByCurrencyGet200ResponseToJSON, type ApiV1StripeChargesByCurrencyGet200ResponseValInner, ApiV1StripeChargesByCurrencyGet200ResponseValInnerFromJSON, ApiV1StripeChargesByCurrencyGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesByCurrencyGet200ResponseValInnerToJSON, ApiV1StripeChargesByCurrencyGetGroupByEnum, type ApiV1StripeChargesByCurrencyGetRequest, ApiV1StripeChargesByCurrencyGetStatusEnum, type ApiV1StripeChargesByFailureCodeGet200Response, ApiV1StripeChargesByFailureCodeGet200ResponseFromJSON, ApiV1StripeChargesByFailureCodeGet200ResponseFromJSONTyped, ApiV1StripeChargesByFailureCodeGet200ResponseToJSON, type ApiV1StripeChargesByFailureCodeGet200ResponseValInner, ApiV1StripeChargesByFailureCodeGet200ResponseValInnerFromJSON, ApiV1StripeChargesByFailureCodeGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesByFailureCodeGet200ResponseValInnerToJSON, ApiV1StripeChargesByFailureCodeGetGroupByEnum, type ApiV1StripeChargesByFailureCodeGetRequest, ApiV1StripeChargesByFailureCodeGetStatusEnum, type ApiV1StripeChargesByStatusGet200Response, ApiV1StripeChargesByStatusGet200ResponseFromJSON, ApiV1StripeChargesByStatusGet200ResponseFromJSONTyped, ApiV1StripeChargesByStatusGet200ResponseToJSON, type ApiV1StripeChargesByStatusGet200ResponseValInner, ApiV1StripeChargesByStatusGet200ResponseValInnerFromJSON, ApiV1StripeChargesByStatusGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesByStatusGet200ResponseValInnerToJSON, ApiV1StripeChargesByStatusGetGroupByEnum, type ApiV1StripeChargesByStatusGetRequest, ApiV1StripeChargesByStatusGetStatusEnum, type ApiV1StripeChargesByTimeRangeGet200Response, ApiV1StripeChargesByTimeRangeGet200ResponseFromJSON, ApiV1StripeChargesByTimeRangeGet200ResponseFromJSONTyped, ApiV1StripeChargesByTimeRangeGet200ResponseToJSON, type ApiV1StripeChargesByTimeRangeGet200ResponseValInner, ApiV1StripeChargesByTimeRangeGet200ResponseValInnerFromJSON, ApiV1StripeChargesByTimeRangeGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesByTimeRangeGet200ResponseValInnerToJSON, ApiV1StripeChargesByTimeRangeGetGroupByEnum, type ApiV1StripeChargesByTimeRangeGetRequest, ApiV1StripeChargesByTimeRangeGetStatusEnum, type ApiV1StripeChargesDisputedGet200Response, ApiV1StripeChargesDisputedGet200ResponseFromJSON, ApiV1StripeChargesDisputedGet200ResponseFromJSONTyped, ApiV1StripeChargesDisputedGet200ResponseToJSON, type ApiV1StripeChargesDisputedGet200ResponseValInner, ApiV1StripeChargesDisputedGet200ResponseValInnerFromJSON, ApiV1StripeChargesDisputedGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesDisputedGet200ResponseValInnerToJSON, type ApiV1StripeChargesDisputedGetRequest, ApiV1StripeChargesDisputedGetStatusEnum, type ApiV1StripeChargesFailedGet200Response, ApiV1StripeChargesFailedGet200ResponseFromJSON, ApiV1StripeChargesFailedGet200ResponseFromJSONTyped, ApiV1StripeChargesFailedGet200ResponseToJSON, type ApiV1StripeChargesFailedGet200ResponseValInner, ApiV1StripeChargesFailedGet200ResponseValInnerFromJSON, ApiV1StripeChargesFailedGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesFailedGet200ResponseValInnerToJSON, type ApiV1StripeChargesFailedGetRequest, ApiV1StripeChargesFailedGetStatusEnum, type ApiV1StripeChargesGet200Response, ApiV1StripeChargesGet200ResponseFromJSON, ApiV1StripeChargesGet200ResponseFromJSONTyped, ApiV1StripeChargesGet200ResponseToJSON, type ApiV1StripeChargesGet200ResponseValInner, ApiV1StripeChargesGet200ResponseValInnerFromJSON, ApiV1StripeChargesGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesGet200ResponseValInnerToJSON, type ApiV1StripeChargesGetRequest, ApiV1StripeChargesGetStatusEnum, type ApiV1StripeChargesRefundedGet200Response, ApiV1StripeChargesRefundedGet200ResponseFromJSON, ApiV1StripeChargesRefundedGet200ResponseFromJSONTyped, ApiV1StripeChargesRefundedGet200ResponseToJSON, type ApiV1StripeChargesRefundedGet200ResponseValInner, ApiV1StripeChargesRefundedGet200ResponseValInnerFromJSON, ApiV1StripeChargesRefundedGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesRefundedGet200ResponseValInnerToJSON, type ApiV1StripeChargesRefundedGetRequest, ApiV1StripeChargesRefundedGetStatusEnum, type ApiV1StripeChargesSummaryGet200Response, ApiV1StripeChargesSummaryGet200ResponseFromJSON, ApiV1StripeChargesSummaryGet200ResponseFromJSONTyped, ApiV1StripeChargesSummaryGet200ResponseToJSON, type ApiV1StripeChargesSummaryGet200ResponseValInner, ApiV1StripeChargesSummaryGet200ResponseValInnerFromJSON, ApiV1StripeChargesSummaryGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesSummaryGet200ResponseValInnerToJSON, ApiV1StripeChargesSummaryGetGroupByEnum, type ApiV1StripeChargesSummaryGetRequest, ApiV1StripeChargesSummaryGetStatusEnum, type ApiV1StripeChargesTopCustomersGet200Response, ApiV1StripeChargesTopCustomersGet200ResponseFromJSON, ApiV1StripeChargesTopCustomersGet200ResponseFromJSONTyped, ApiV1StripeChargesTopCustomersGet200ResponseToJSON, type ApiV1StripeChargesTopCustomersGet200ResponseValInner, ApiV1StripeChargesTopCustomersGet200ResponseValInnerFromJSON, ApiV1StripeChargesTopCustomersGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesTopCustomersGet200ResponseValInnerToJSON, type ApiV1StripeChargesTopCustomersGetRequest, type ApiV1StripeCustomersActivityGet200Response, ApiV1StripeCustomersActivityGet200ResponseFromJSON, ApiV1StripeCustomersActivityGet200ResponseFromJSONTyped, ApiV1StripeCustomersActivityGet200ResponseToJSON, type ApiV1StripeCustomersActivityGet200ResponseValInner, ApiV1StripeCustomersActivityGet200ResponseValInnerFromJSON, ApiV1StripeCustomersActivityGet200ResponseValInnerFromJSONTyped, ApiV1StripeCustomersActivityGet200ResponseValInnerToJSON, type ApiV1StripeCustomersActivityGetRequest, ApiV1StripeCustomersActivityGetTaxExemptEnum, type ApiV1StripeCustomersByCurrencyGet200Response, ApiV1StripeCustomersByCurrencyGet200ResponseFromJSON, ApiV1StripeCustomersByCurrencyGet200ResponseFromJSONTyped, ApiV1StripeCustomersByCurrencyGet200ResponseToJSON, type ApiV1StripeCustomersByCurrencyGet200ResponseValInner, ApiV1StripeCustomersByCurrencyGet200ResponseValInnerFromJSON, ApiV1StripeCustomersByCurrencyGet200ResponseValInnerFromJSONTyped, ApiV1StripeCustomersByCurrencyGet200ResponseValInnerToJSON, ApiV1StripeCustomersByCurrencyGetGroupByEnum, type ApiV1StripeCustomersByCurrencyGetRequest, ApiV1StripeCustomersByCurrencyGetTaxExemptEnum, type ApiV1StripeCustomersGet200Response, ApiV1StripeCustomersGet200ResponseFromJSON, ApiV1StripeCustomersGet200ResponseFromJSONTyped, ApiV1StripeCustomersGet200ResponseToJSON, type ApiV1StripeCustomersGet200ResponseValInner, ApiV1StripeCustomersGet200ResponseValInnerFromJSON, ApiV1StripeCustomersGet200ResponseValInnerFromJSONTyped, ApiV1StripeCustomersGet200ResponseValInnerToJSON, type ApiV1StripeCustomersGetRequest, ApiV1StripeCustomersGetTaxExemptEnum, type ApiV1StripeInvoicesByCurrencyGet200Response, ApiV1StripeInvoicesByCurrencyGet200ResponseFromJSON, ApiV1StripeInvoicesByCurrencyGet200ResponseFromJSONTyped, ApiV1StripeInvoicesByCurrencyGet200ResponseToJSON, type ApiV1StripeInvoicesByCurrencyGet200ResponseValInner, ApiV1StripeInvoicesByCurrencyGet200ResponseValInnerFromJSON, ApiV1StripeInvoicesByCurrencyGet200ResponseValInnerFromJSONTyped, ApiV1StripeInvoicesByCurrencyGet200ResponseValInnerToJSON, ApiV1StripeInvoicesByCurrencyGetGroupByEnum, type ApiV1StripeInvoicesByCurrencyGetRequest, ApiV1StripeInvoicesByCurrencyGetStatusEnum, type ApiV1StripeInvoicesByStatusGet200Response, ApiV1StripeInvoicesByStatusGet200ResponseFromJSON, ApiV1StripeInvoicesByStatusGet200ResponseFromJSONTyped, ApiV1StripeInvoicesByStatusGet200ResponseToJSON, type ApiV1StripeInvoicesByStatusGet200ResponseValInner, ApiV1StripeInvoicesByStatusGet200ResponseValInnerFromJSON, ApiV1StripeInvoicesByStatusGet200ResponseValInnerFromJSONTyped, ApiV1StripeInvoicesByStatusGet200ResponseValInnerToJSON, ApiV1StripeInvoicesByStatusGetGroupByEnum, type ApiV1StripeInvoicesByStatusGetRequest, ApiV1StripeInvoicesByStatusGetStatusEnum, type ApiV1StripeInvoicesGet200Response, ApiV1StripeInvoicesGet200ResponseFromJSON, ApiV1StripeInvoicesGet200ResponseFromJSONTyped, ApiV1StripeInvoicesGet200ResponseToJSON, type ApiV1StripeInvoicesGet200ResponseValInner, ApiV1StripeInvoicesGet200ResponseValInnerFromJSON, ApiV1StripeInvoicesGet200ResponseValInnerFromJSONTyped, ApiV1StripeInvoicesGet200ResponseValInnerToJSON, type ApiV1StripeInvoicesGetRequest, ApiV1StripeInvoicesGetStatusEnum, type ApiV1StripeInvoicesOverdueGet200Response, ApiV1StripeInvoicesOverdueGet200ResponseFromJSON, ApiV1StripeInvoicesOverdueGet200ResponseFromJSONTyped, ApiV1StripeInvoicesOverdueGet200ResponseToJSON, type ApiV1StripeInvoicesOverdueGet200ResponseValInner, ApiV1StripeInvoicesOverdueGet200ResponseValInnerFromJSON, ApiV1StripeInvoicesOverdueGet200ResponseValInnerFromJSONTyped, ApiV1StripeInvoicesOverdueGet200ResponseValInnerToJSON, type ApiV1StripeInvoicesOverdueGetRequest, type ApiV1StripeInvoicesSummaryGet200Response, ApiV1StripeInvoicesSummaryGet200ResponseFromJSON, ApiV1StripeInvoicesSummaryGet200ResponseFromJSONTyped, ApiV1StripeInvoicesSummaryGet200ResponseToJSON, type ApiV1StripeInvoicesSummaryGet200ResponseValInner, ApiV1StripeInvoicesSummaryGet200ResponseValInnerFromJSON, ApiV1StripeInvoicesSummaryGet200ResponseValInnerFromJSONTyped, ApiV1StripeInvoicesSummaryGet200ResponseValInnerToJSON, type ApiV1StripeInvoicesSummaryGetRequest, type ApiV1StripePaymentIntentsGet200Response, ApiV1StripePaymentIntentsGet200ResponseFromJSON, ApiV1StripePaymentIntentsGet200ResponseFromJSONTyped, ApiV1StripePaymentIntentsGet200ResponseToJSON, type ApiV1StripePaymentIntentsGet200ResponseValInner, ApiV1StripePaymentIntentsGet200ResponseValInnerFromJSON, ApiV1StripePaymentIntentsGet200ResponseValInnerFromJSONTyped, ApiV1StripePaymentIntentsGet200ResponseValInnerToJSON, ApiV1StripePaymentIntentsGetCaptureMethodEnum, ApiV1StripePaymentIntentsGetConfirmationMethodEnum, type ApiV1StripePaymentIntentsGetRequest, ApiV1StripePaymentIntentsGetSetupFutureUsageEnum, ApiV1StripePaymentIntentsGetSortByEnum, ApiV1StripePaymentIntentsGetSortOrderEnum, type ApiV1StripePaymentIntentsSummaryGet200Response, ApiV1StripePaymentIntentsSummaryGet200ResponseFromJSON, ApiV1StripePaymentIntentsSummaryGet200ResponseFromJSONTyped, ApiV1StripePaymentIntentsSummaryGet200ResponseToJSON, type ApiV1StripePaymentIntentsSummaryGet200ResponseValInner, ApiV1StripePaymentIntentsSummaryGet200ResponseValInnerFromJSON, ApiV1StripePaymentIntentsSummaryGet200ResponseValInnerFromJSONTyped, ApiV1StripePaymentIntentsSummaryGet200ResponseValInnerToJSON, ApiV1StripePaymentIntentsSummaryGetGranularityEnum, ApiV1StripePaymentIntentsSummaryGetGroupByEnum, type ApiV1StripePaymentIntentsSummaryGetRequest, type ApiV1StripePricesByTypeGet200Response, ApiV1StripePricesByTypeGet200ResponseFromJSON, ApiV1StripePricesByTypeGet200ResponseFromJSONTyped, ApiV1StripePricesByTypeGet200ResponseToJSON, type ApiV1StripePricesByTypeGet200ResponseValInner, ApiV1StripePricesByTypeGet200ResponseValInnerFromJSON, ApiV1StripePricesByTypeGet200ResponseValInnerFromJSONTyped, ApiV1StripePricesByTypeGet200ResponseValInnerToJSON, ApiV1StripePricesByTypeGetGroupByEnum, type ApiV1StripePricesByTypeGetRequest, type ApiV1StripePricesGet200Response, ApiV1StripePricesGet200ResponseFromJSON, ApiV1StripePricesGet200ResponseFromJSONTyped, ApiV1StripePricesGet200ResponseToJSON, type ApiV1StripePricesGet200ResponseValInner, ApiV1StripePricesGet200ResponseValInnerFromJSON, ApiV1StripePricesGet200ResponseValInnerFromJSONTyped, ApiV1StripePricesGet200ResponseValInnerToJSON, type ApiV1StripePricesGetRequest, ApiV1StripePricesGetSortByEnum, ApiV1StripePricesGetSortOrderEnum, type ApiV1StripePricesSummaryGet200Response, ApiV1StripePricesSummaryGet200ResponseFromJSON, ApiV1StripePricesSummaryGet200ResponseFromJSONTyped, ApiV1StripePricesSummaryGet200ResponseToJSON, type ApiV1StripePricesSummaryGet200ResponseValInner, ApiV1StripePricesSummaryGet200ResponseValInnerFromJSON, ApiV1StripePricesSummaryGet200ResponseValInnerFromJSONTyped, ApiV1StripePricesSummaryGet200ResponseValInnerToJSON, ApiV1StripePricesSummaryGetGroupByEnum, type ApiV1StripePricesSummaryGetRequest, type ApiV1StripeProductsByTypeGet200Response, ApiV1StripeProductsByTypeGet200ResponseFromJSON, ApiV1StripeProductsByTypeGet200ResponseFromJSONTyped, ApiV1StripeProductsByTypeGet200ResponseToJSON, type ApiV1StripeProductsByTypeGet200ResponseValInner, ApiV1StripeProductsByTypeGet200ResponseValInnerFromJSON, ApiV1StripeProductsByTypeGet200ResponseValInnerFromJSONTyped, ApiV1StripeProductsByTypeGet200ResponseValInnerToJSON, ApiV1StripeProductsByTypeGetGroupByEnum, type ApiV1StripeProductsByTypeGetRequest, type ApiV1StripeProductsGet200Response, ApiV1StripeProductsGet200ResponseFromJSON, ApiV1StripeProductsGet200ResponseFromJSONTyped, ApiV1StripeProductsGet200ResponseToJSON, type ApiV1StripeProductsGet200ResponseValInner, ApiV1StripeProductsGet200ResponseValInnerFromJSON, ApiV1StripeProductsGet200ResponseValInnerFromJSONTyped, ApiV1StripeProductsGet200ResponseValInnerToJSON, type ApiV1StripeProductsGetRequest, ApiV1StripeProductsGetSortByEnum, ApiV1StripeProductsGetSortOrderEnum, type ApiV1StripeProductsSummaryGet200Response, ApiV1StripeProductsSummaryGet200ResponseFromJSON, ApiV1StripeProductsSummaryGet200ResponseFromJSONTyped, ApiV1StripeProductsSummaryGet200ResponseToJSON, type ApiV1StripeProductsSummaryGet200ResponseValInner, ApiV1StripeProductsSummaryGet200ResponseValInnerFromJSON, ApiV1StripeProductsSummaryGet200ResponseValInnerFromJSONTyped, ApiV1StripeProductsSummaryGet200ResponseValInnerToJSON, ApiV1StripeProductsSummaryGetAnalysisTypeEnum, ApiV1StripeProductsSummaryGetGranularityEnum, type ApiV1StripeProductsSummaryGetRequest, type ApiV1StripeSubscriptionsByApplicationGet200Response, ApiV1StripeSubscriptionsByApplicationGet200ResponseFromJSON, ApiV1StripeSubscriptionsByApplicationGet200ResponseFromJSONTyped, ApiV1StripeSubscriptionsByApplicationGet200ResponseToJSON, type ApiV1StripeSubscriptionsByApplicationGet200ResponseValInner, ApiV1StripeSubscriptionsByApplicationGet200ResponseValInnerFromJSON, ApiV1StripeSubscriptionsByApplicationGet200ResponseValInnerFromJSONTyped, ApiV1StripeSubscriptionsByApplicationGet200ResponseValInnerToJSON, ApiV1StripeSubscriptionsByApplicationGetGroupByEnum, type ApiV1StripeSubscriptionsByApplicationGetRequest, type ApiV1StripeSubscriptionsByStatusGet200Response, ApiV1StripeSubscriptionsByStatusGet200ResponseFromJSON, ApiV1StripeSubscriptionsByStatusGet200ResponseFromJSONTyped, ApiV1StripeSubscriptionsByStatusGet200ResponseToJSON, type ApiV1StripeSubscriptionsByStatusGet200ResponseValInner, ApiV1StripeSubscriptionsByStatusGet200ResponseValInnerFromJSON, ApiV1StripeSubscriptionsByStatusGet200ResponseValInnerFromJSONTyped, ApiV1StripeSubscriptionsByStatusGet200ResponseValInnerToJSON, ApiV1StripeSubscriptionsByStatusGetGroupByEnum, type ApiV1StripeSubscriptionsByStatusGetRequest, type ApiV1StripeSubscriptionsGet200Response, ApiV1StripeSubscriptionsGet200ResponseFromJSON, ApiV1StripeSubscriptionsGet200ResponseFromJSONTyped, ApiV1StripeSubscriptionsGet200ResponseToJSON, type ApiV1StripeSubscriptionsGet200ResponseValInner, ApiV1StripeSubscriptionsGet200ResponseValInnerFromJSON, ApiV1StripeSubscriptionsGet200ResponseValInnerFromJSONTyped, ApiV1StripeSubscriptionsGet200ResponseValInnerToJSON, type ApiV1StripeSubscriptionsGetRequest, type ApiV1StripeSubscriptionsSummaryGet200Response, ApiV1StripeSubscriptionsSummaryGet200ResponseFromJSON, ApiV1StripeSubscriptionsSummaryGet200ResponseFromJSONTyped, ApiV1StripeSubscriptionsSummaryGet200ResponseToJSON, type ApiV1StripeSubscriptionsSummaryGet200ResponseValInner, ApiV1StripeSubscriptionsSummaryGet200ResponseValInnerFromJSON, ApiV1StripeSubscriptionsSummaryGet200ResponseValInnerFromJSONTyped, ApiV1StripeSubscriptionsSummaryGet200ResponseValInnerToJSON, type ApiV1StripeSubscriptionsSummaryGetRequest, type ApiV1StripeSubscriptionsTrialAnalysisGet200Response, ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseFromJSON, ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseFromJSONTyped, ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseToJSON, type ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseValInner, ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseValInnerFromJSON, ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseValInnerFromJSONTyped, ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseValInnerToJSON, type ApiV1StripeSubscriptionsTrialAnalysisGetRequest, type ApiV1TransactionsByDayGet200Response, ApiV1TransactionsByDayGet200ResponseFromJSON, ApiV1TransactionsByDayGet200ResponseFromJSONTyped, ApiV1TransactionsByDayGet200ResponseToJSON, type ApiV1TransactionsByDayGet200ResponseValInner, ApiV1TransactionsByDayGet200ResponseValInnerFromJSON, ApiV1TransactionsByDayGet200ResponseValInnerFromJSONTyped, ApiV1TransactionsByDayGet200ResponseValInnerToJSON, type ApiV1TransactionsByDayGetRequest, type ApiV1TransactionsByMonthGet200Response, ApiV1TransactionsByMonthGet200ResponseFromJSON, ApiV1TransactionsByMonthGet200ResponseFromJSONTyped, ApiV1TransactionsByMonthGet200ResponseToJSON, type ApiV1TransactionsByMonthGet200ResponseValInner, ApiV1TransactionsByMonthGet200ResponseValInnerFromJSON, ApiV1TransactionsByMonthGet200ResponseValInnerFromJSONTyped, ApiV1TransactionsByMonthGet200ResponseValInnerToJSON, type ApiV1TransactionsByMonthGetRequest, type ApiV1TransactionsCategorySpendingGet200Response, ApiV1TransactionsCategorySpendingGet200ResponseFromJSON, ApiV1TransactionsCategorySpendingGet200ResponseFromJSONTyped, ApiV1TransactionsCategorySpendingGet200ResponseToJSON, type ApiV1TransactionsCategorySpendingGet200ResponseValInner, ApiV1TransactionsCategorySpendingGet200ResponseValInnerFromJSON, ApiV1TransactionsCategorySpendingGet200ResponseValInnerFromJSONTyped, ApiV1TransactionsCategorySpendingGet200ResponseValInnerToJSON, type ApiV1TransactionsCategorySpendingGetRequest, type ApiV1TransactionsGet200Response, ApiV1TransactionsGet200ResponseFromJSON, ApiV1TransactionsGet200ResponseFromJSONTyped, ApiV1TransactionsGet200ResponseToJSON, type ApiV1TransactionsGet200ResponseValInner, ApiV1TransactionsGet200ResponseValInnerFromJSON, ApiV1TransactionsGet200ResponseValInnerFromJSONTyped, ApiV1TransactionsGet200ResponseValInnerToJSON, type ApiV1TransactionsGetRequest, ApiV1TransactionsGetSortByEnum, ApiV1TransactionsGetSortDirEnum, type ApiV1TransactionsMerchantSpendingGet200Response, ApiV1TransactionsMerchantSpendingGet200ResponseFromJSON, ApiV1TransactionsMerchantSpendingGet200ResponseFromJSONTyped, ApiV1TransactionsMerchantSpendingGet200ResponseToJSON, type ApiV1TransactionsMerchantSpendingGet200ResponseValInner, ApiV1TransactionsMerchantSpendingGet200ResponseValInnerFromJSON, ApiV1TransactionsMerchantSpendingGet200ResponseValInnerFromJSONTyped, ApiV1TransactionsMerchantSpendingGet200ResponseValInnerToJSON, type ApiV1TransactionsMerchantSpendingGetRequest, type ApiV1TransactionsRecurringPatternsGet200Response, ApiV1TransactionsRecurringPatternsGet200ResponseFromJSON, ApiV1TransactionsRecurringPatternsGet200ResponseFromJSONTyped, ApiV1TransactionsRecurringPatternsGet200ResponseToJSON, type ApiV1TransactionsRecurringPatternsGet200ResponseValInner, ApiV1TransactionsRecurringPatternsGet200ResponseValInnerFromJSON, ApiV1TransactionsRecurringPatternsGet200ResponseValInnerFromJSONTyped, ApiV1TransactionsRecurringPatternsGet200ResponseValInnerToJSON, type ApiV1TransactionsRecurringPatternsGetRequest, BASE_PATH, BaseAPI, BlobApiResponse, BusinessMetricsApi, type BusinessMetricsApiInterface, COLLECTION_FORMATS, Configuration, type ConfigurationParameters, type Consume, type CreateTenant201Response, CreateTenant201ResponseFromJSON, CreateTenant201ResponseFromJSONTyped, CreateTenant201ResponseToJSON, type CreateTenantOperationRequest, type CreateTenantRequest, CreateTenantRequestFromJSON, CreateTenantRequestFromJSONTyped, CreateTenantRequestToJSON, type Def0, type Def0Details, Def0DetailsFromJSON, Def0DetailsFromJSONTyped, Def0DetailsToJSON, Def0FromJSON, Def0FromJSONTyped, Def0ToJSON, DefaultConfig, type ErrorContext, type FetchAPI, FetchError, type FetchParams, type GetTenant200Response, GetTenant200ResponseFromJSON, GetTenant200ResponseFromJSONTyped, GetTenant200ResponseToJSON, type GetTenantHealth200Response, type GetTenantHealth200ResponseData, GetTenantHealth200ResponseDataFromJSON, GetTenantHealth200ResponseDataFromJSONTyped, GetTenantHealth200ResponseDataStatusEnum, GetTenantHealth200ResponseDataToJSON, GetTenantHealth200ResponseFromJSON, GetTenantHealth200ResponseFromJSONTyped, GetTenantHealth200ResponseToJSON, type GetTenantHealthRequest, type GetTenantRequest, type GetTenantStats200Response, type GetTenantStats200ResponseDataInner, GetTenantStats200ResponseDataInnerFromJSON, GetTenantStats200ResponseDataInnerFromJSONTyped, GetTenantStats200ResponseDataInnerToJSON, GetTenantStats200ResponseFromJSON, GetTenantStats200ResponseFromJSONTyped, GetTenantStats200ResponseToJSON, type GetTenantStatsRequest, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, HealthApi, type HealthApiInterface, type HealthGet200Response, HealthGet200ResponseFromJSON, HealthGet200ResponseFromJSONTyped, HealthGet200ResponseToJSON, type HealthReadyGet200Response, HealthReadyGet200ResponseFromJSON, HealthReadyGet200ResponseFromJSONTyped, HealthReadyGet200ResponseToJSON, type InitOverrideFunction, JSONApiResponse, type Json, type ListTenants200Response, type ListTenants200ResponseDataInner, ListTenants200ResponseDataInnerFromJSON, ListTenants200ResponseDataInnerFromJSONTyped, ListTenants200ResponseDataInnerStatusEnum, ListTenants200ResponseDataInnerToJSON, ListTenants200ResponseFromJSON, ListTenants200ResponseFromJSONTyped, ListTenants200ResponseToJSON, type ListTenantsRequest, type Middleware, type ModelPropertyNaming, type ProcessLegacyWebhook200Response, ProcessLegacyWebhook200ResponseFromJSON, ProcessLegacyWebhook200ResponseFromJSONTyped, ProcessLegacyWebhook200ResponseToJSON, RecurringTransactionsApi, type RecurringTransactionsApiInterface, type RequestContext, type RequestOpts, RequiredError, type ResponseContext, ResponseError, type ResponseTransformer, StripeChargesApi, type StripeChargesApiInterface, StripeCustomersApi, type StripeCustomersApiInterface, StripeInvoicesApi, type StripeInvoicesApiInterface, StripePaymentIntentsApi, type StripePaymentIntentsApiInterface, StripePricesApi, type StripePricesApiInterface, StripeProductsApi, type StripeProductsApiInterface, StripeSubscriptionsApi, type StripeSubscriptionsApiInterface, SyncApi, type SyncApiInterface, type SyncBackfill200Response, SyncBackfill200ResponseFromJSON, SyncBackfill200ResponseFromJSONTyped, SyncBackfill200ResponseToJSON, type SyncBackfillOperationRequest, type SyncBackfillRequest, type SyncBackfillRequestCreated, SyncBackfillRequestCreatedFromJSON, SyncBackfillRequestCreatedFromJSONTyped, SyncBackfillRequestCreatedToJSON, SyncBackfillRequestFromJSON, SyncBackfillRequestFromJSONTyped, SyncBackfillRequestObjectEnum, SyncBackfillRequestToJSON, type SyncSingleEntity200Response, SyncSingleEntity200ResponseFromJSON, SyncSingleEntity200ResponseFromJSONTyped, SyncSingleEntity200ResponseToJSON, type SyncSingleEntityRequest, type SyncTenant200Response, type SyncTenant200ResponseDataValue, SyncTenant200ResponseDataValueFromJSON, SyncTenant200ResponseDataValueFromJSONTyped, SyncTenant200ResponseDataValueToJSON, SyncTenant200ResponseFromJSON, SyncTenant200ResponseFromJSONTyped, SyncTenant200ResponseToJSON, type SyncTenantRequest, TenantsApi, type TenantsApiInterface, TextApiResponse, TransactionsApi, type TransactionsApiInterface, type TriggerDailySync200Response, TriggerDailySync200ResponseFromJSON, TriggerDailySync200ResponseFromJSONTyped, TriggerDailySync200ResponseToJSON, type TriggerDailySyncOperationRequest, type TriggerDailySyncRequest, TriggerDailySyncRequestFromJSON, TriggerDailySyncRequestFromJSONTyped, TriggerDailySyncRequestObjectEnum, TriggerDailySyncRequestToJSON, type TriggerMonthlySync200Response, TriggerMonthlySync200ResponseFromJSON, TriggerMonthlySync200ResponseFromJSONTyped, TriggerMonthlySync200ResponseToJSON, type TriggerMonthlySyncRequest, type TriggerWeeklySync200Response, TriggerWeeklySync200ResponseFromJSON, TriggerWeeklySync200ResponseFromJSONTyped, TriggerWeeklySync200ResponseToJSON, type TriggerWeeklySyncRequest, type UpdateTenant200Response, UpdateTenant200ResponseFromJSON, UpdateTenant200ResponseFromJSONTyped, UpdateTenant200ResponseToJSON, type UpdateTenantOperationRequest, type UpdateTenantRequest, UpdateTenantRequestFromJSON, UpdateTenantRequestFromJSONTyped, UpdateTenantRequestStatusEnum, UpdateTenantRequestToJSON, VoidApiResponse, WebhooksApi, type WebhooksApiInterface, type WebhooksStripePostRequest, type WebhooksStripeTenantIdPostRequest, canConsumeForm, instanceOfApiV1BusinessMetricsBreakEvenAnalysisGet200Response, instanceOfApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseValInner, instanceOfApiV1BusinessMetricsCashFlowForecastGet200Response, instanceOfApiV1BusinessMetricsCashFlowForecastGet200ResponseValInner, instanceOfApiV1BusinessMetricsCashRunwayGet200Response, instanceOfApiV1BusinessMetricsCashRunwayGet200ResponseValInner, instanceOfApiV1BusinessMetricsCustomerConcentrationRiskGet200Response, instanceOfApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseValInner, instanceOfApiV1BusinessMetricsCustomerLifetimeValueGet200Response, instanceOfApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseValInner, instanceOfApiV1BusinessMetricsDaysCashOnHandGet200Response, instanceOfApiV1BusinessMetricsDaysCashOnHandGet200ResponseValInner, instanceOfApiV1BusinessMetricsExpenseRatioAnalysisGet200Response, instanceOfApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseValInner, instanceOfApiV1BusinessMetricsExpensesByCostTypeGet200Response, instanceOfApiV1BusinessMetricsExpensesByCostTypeGet200ResponseValInner, instanceOfApiV1BusinessMetricsInvoiceToCashTimeGet200Response, instanceOfApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseValInner, instanceOfApiV1BusinessMetricsMonthlyFinancialSummaryGet200Response, instanceOfApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseValInner, instanceOfApiV1BusinessMetricsMrrMovementGet200Response, instanceOfApiV1BusinessMetricsMrrMovementGet200ResponseValInner, instanceOfApiV1BusinessMetricsMrrTrackingGet200Response, instanceOfApiV1BusinessMetricsMrrTrackingGet200ResponseValInner, instanceOfApiV1BusinessMetricsRevenueByCategoryGet200Response, instanceOfApiV1BusinessMetricsRevenueByCategoryGet200ResponseValInner, instanceOfApiV1BusinessMetricsRuleOf40Get200Response, instanceOfApiV1BusinessMetricsRuleOf40Get200ResponseValInner, instanceOfApiV1BusinessMetricsWorkingCapitalAnalysisGet200Response, instanceOfApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseValInner, instanceOfApiV1RecurringTransactionsByStatusGet200Response, instanceOfApiV1RecurringTransactionsByStatusGet200ResponseValInner, instanceOfApiV1RecurringTransactionsCashFlowProjectionGet200Response, instanceOfApiV1RecurringTransactionsCashFlowProjectionGet200ResponseValInner, instanceOfApiV1RecurringTransactionsGet200Response, instanceOfApiV1RecurringTransactionsGet200ResponseValInner, instanceOfApiV1RecurringTransactionsImportantGet200Response, instanceOfApiV1RecurringTransactionsImportantGet200ResponseValInner, instanceOfApiV1RecurringTransactionsMonthlyCashFlowForecastGet200Response, instanceOfApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseValInner, instanceOfApiV1RecurringTransactionsUpcomingGet200Response, instanceOfApiV1RecurringTransactionsUpcomingGet200ResponseValInner, instanceOfApiV1StripeChargesByCurrencyGet200Response, instanceOfApiV1StripeChargesByCurrencyGet200ResponseValInner, instanceOfApiV1StripeChargesByFailureCodeGet200Response, instanceOfApiV1StripeChargesByFailureCodeGet200ResponseValInner, instanceOfApiV1StripeChargesByStatusGet200Response, instanceOfApiV1StripeChargesByStatusGet200ResponseValInner, instanceOfApiV1StripeChargesByTimeRangeGet200Response, instanceOfApiV1StripeChargesByTimeRangeGet200ResponseValInner, instanceOfApiV1StripeChargesDisputedGet200Response, instanceOfApiV1StripeChargesDisputedGet200ResponseValInner, instanceOfApiV1StripeChargesFailedGet200Response, instanceOfApiV1StripeChargesFailedGet200ResponseValInner, instanceOfApiV1StripeChargesGet200Response, instanceOfApiV1StripeChargesGet200ResponseValInner, instanceOfApiV1StripeChargesRefundedGet200Response, instanceOfApiV1StripeChargesRefundedGet200ResponseValInner, instanceOfApiV1StripeChargesSummaryGet200Response, instanceOfApiV1StripeChargesSummaryGet200ResponseValInner, instanceOfApiV1StripeChargesTopCustomersGet200Response, instanceOfApiV1StripeChargesTopCustomersGet200ResponseValInner, instanceOfApiV1StripeCustomersActivityGet200Response, instanceOfApiV1StripeCustomersActivityGet200ResponseValInner, instanceOfApiV1StripeCustomersByCurrencyGet200Response, instanceOfApiV1StripeCustomersByCurrencyGet200ResponseValInner, instanceOfApiV1StripeCustomersGet200Response, instanceOfApiV1StripeCustomersGet200ResponseValInner, instanceOfApiV1StripeInvoicesByCurrencyGet200Response, instanceOfApiV1StripeInvoicesByCurrencyGet200ResponseValInner, instanceOfApiV1StripeInvoicesByStatusGet200Response, instanceOfApiV1StripeInvoicesByStatusGet200ResponseValInner, instanceOfApiV1StripeInvoicesGet200Response, instanceOfApiV1StripeInvoicesGet200ResponseValInner, instanceOfApiV1StripeInvoicesOverdueGet200Response, instanceOfApiV1StripeInvoicesOverdueGet200ResponseValInner, instanceOfApiV1StripeInvoicesSummaryGet200Response, instanceOfApiV1StripeInvoicesSummaryGet200ResponseValInner, instanceOfApiV1StripePaymentIntentsGet200Response, instanceOfApiV1StripePaymentIntentsGet200ResponseValInner, instanceOfApiV1StripePaymentIntentsSummaryGet200Response, instanceOfApiV1StripePaymentIntentsSummaryGet200ResponseValInner, instanceOfApiV1StripePricesByTypeGet200Response, instanceOfApiV1StripePricesByTypeGet200ResponseValInner, instanceOfApiV1StripePricesGet200Response, instanceOfApiV1StripePricesGet200ResponseValInner, instanceOfApiV1StripePricesSummaryGet200Response, instanceOfApiV1StripePricesSummaryGet200ResponseValInner, instanceOfApiV1StripeProductsByTypeGet200Response, instanceOfApiV1StripeProductsByTypeGet200ResponseValInner, instanceOfApiV1StripeProductsGet200Response, instanceOfApiV1StripeProductsGet200ResponseValInner, instanceOfApiV1StripeProductsSummaryGet200Response, instanceOfApiV1StripeProductsSummaryGet200ResponseValInner, instanceOfApiV1StripeSubscriptionsByApplicationGet200Response, instanceOfApiV1StripeSubscriptionsByApplicationGet200ResponseValInner, instanceOfApiV1StripeSubscriptionsByStatusGet200Response, instanceOfApiV1StripeSubscriptionsByStatusGet200ResponseValInner, instanceOfApiV1StripeSubscriptionsGet200Response, instanceOfApiV1StripeSubscriptionsGet200ResponseValInner, instanceOfApiV1StripeSubscriptionsSummaryGet200Response, instanceOfApiV1StripeSubscriptionsSummaryGet200ResponseValInner, instanceOfApiV1StripeSubscriptionsTrialAnalysisGet200Response, instanceOfApiV1StripeSubscriptionsTrialAnalysisGet200ResponseValInner, instanceOfApiV1TransactionsByDayGet200Response, instanceOfApiV1TransactionsByDayGet200ResponseValInner, instanceOfApiV1TransactionsByMonthGet200Response, instanceOfApiV1TransactionsByMonthGet200ResponseValInner, instanceOfApiV1TransactionsCategorySpendingGet200Response, instanceOfApiV1TransactionsCategorySpendingGet200ResponseValInner, instanceOfApiV1TransactionsGet200Response, instanceOfApiV1TransactionsGet200ResponseValInner, instanceOfApiV1TransactionsMerchantSpendingGet200Response, instanceOfApiV1TransactionsMerchantSpendingGet200ResponseValInner, instanceOfApiV1TransactionsRecurringPatternsGet200Response, instanceOfApiV1TransactionsRecurringPatternsGet200ResponseValInner, instanceOfCreateTenant201Response, instanceOfCreateTenantRequest, instanceOfDef0, instanceOfDef0Details, instanceOfGetTenant200Response, instanceOfGetTenantHealth200Response, instanceOfGetTenantHealth200ResponseData, instanceOfGetTenantStats200Response, instanceOfGetTenantStats200ResponseDataInner, instanceOfHealthGet200Response, instanceOfHealthReadyGet200Response, instanceOfListTenants200Response, instanceOfListTenants200ResponseDataInner, instanceOfProcessLegacyWebhook200Response, instanceOfSyncBackfill200Response, instanceOfSyncBackfillRequest, instanceOfSyncBackfillRequestCreated, instanceOfSyncSingleEntity200Response, instanceOfSyncTenant200Response, instanceOfSyncTenant200ResponseDataValue, instanceOfTriggerDailySync200Response, instanceOfTriggerDailySyncRequest, instanceOfTriggerMonthlySync200Response, instanceOfTriggerWeeklySync200Response, instanceOfUpdateTenant200Response, instanceOfUpdateTenantRequest, mapValues, querystring };
13090
+ export { type ApiResponse, type ApiV1BusinessMetricsBreakEvenAnalysisGet200Response, ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseFromJSON, ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseFromJSONTyped, ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseToJSON, type ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseValInner, ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsBreakEvenAnalysisGetRequest, type ApiV1BusinessMetricsCashFlowForecastGet200Response, ApiV1BusinessMetricsCashFlowForecastGet200ResponseFromJSON, ApiV1BusinessMetricsCashFlowForecastGet200ResponseFromJSONTyped, ApiV1BusinessMetricsCashFlowForecastGet200ResponseToJSON, type ApiV1BusinessMetricsCashFlowForecastGet200ResponseValInner, ApiV1BusinessMetricsCashFlowForecastGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsCashFlowForecastGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsCashFlowForecastGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsCashFlowForecastGetRequest, type ApiV1BusinessMetricsCashRunwayGet200Response, ApiV1BusinessMetricsCashRunwayGet200ResponseFromJSON, ApiV1BusinessMetricsCashRunwayGet200ResponseFromJSONTyped, ApiV1BusinessMetricsCashRunwayGet200ResponseToJSON, type ApiV1BusinessMetricsCashRunwayGet200ResponseValInner, ApiV1BusinessMetricsCashRunwayGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsCashRunwayGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsCashRunwayGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsCashRunwayGetRequest, type ApiV1BusinessMetricsCustomerConcentrationRiskGet200Response, ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseFromJSON, ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseFromJSONTyped, ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseToJSON, type ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseValInner, ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsCustomerConcentrationRiskGetRequest, type ApiV1BusinessMetricsCustomerLifetimeValueGet200Response, ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseFromJSON, ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseFromJSONTyped, ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseToJSON, type ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseValInner, ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsCustomerLifetimeValueGetRequest, type ApiV1BusinessMetricsDaysCashOnHandGet200Response, ApiV1BusinessMetricsDaysCashOnHandGet200ResponseFromJSON, ApiV1BusinessMetricsDaysCashOnHandGet200ResponseFromJSONTyped, ApiV1BusinessMetricsDaysCashOnHandGet200ResponseToJSON, type ApiV1BusinessMetricsDaysCashOnHandGet200ResponseValInner, ApiV1BusinessMetricsDaysCashOnHandGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsDaysCashOnHandGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsDaysCashOnHandGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsDaysCashOnHandGetRequest, type ApiV1BusinessMetricsExpenseRatioAnalysisGet200Response, ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseFromJSON, ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseFromJSONTyped, ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseToJSON, type ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseValInner, ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsExpenseRatioAnalysisGetRequest, type ApiV1BusinessMetricsExpensesByCostTypeGet200Response, ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseFromJSON, ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseFromJSONTyped, ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseToJSON, type ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseValInner, ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsExpensesByCostTypeGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsExpensesByCostTypeGetRequest, type ApiV1BusinessMetricsInvoiceToCashTimeGet200Response, ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseFromJSON, ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseFromJSONTyped, ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseToJSON, type ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseValInner, ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsInvoiceToCashTimeGetRequest, type ApiV1BusinessMetricsMonthlyFinancialSummaryGet200Response, ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseFromJSON, ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseFromJSONTyped, ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseToJSON, type ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseValInner, ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsMonthlyFinancialSummaryGetRequest, type ApiV1BusinessMetricsMrrMovementGet200Response, ApiV1BusinessMetricsMrrMovementGet200ResponseFromJSON, ApiV1BusinessMetricsMrrMovementGet200ResponseFromJSONTyped, ApiV1BusinessMetricsMrrMovementGet200ResponseToJSON, type ApiV1BusinessMetricsMrrMovementGet200ResponseValInner, ApiV1BusinessMetricsMrrMovementGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsMrrMovementGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsMrrMovementGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsMrrMovementGetRequest, type ApiV1BusinessMetricsMrrTrackingGet200Response, ApiV1BusinessMetricsMrrTrackingGet200ResponseFromJSON, ApiV1BusinessMetricsMrrTrackingGet200ResponseFromJSONTyped, ApiV1BusinessMetricsMrrTrackingGet200ResponseToJSON, type ApiV1BusinessMetricsMrrTrackingGet200ResponseValInner, ApiV1BusinessMetricsMrrTrackingGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsMrrTrackingGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsMrrTrackingGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsMrrTrackingGetRequest, type ApiV1BusinessMetricsRevenueByCategoryGet200Response, ApiV1BusinessMetricsRevenueByCategoryGet200ResponseFromJSON, ApiV1BusinessMetricsRevenueByCategoryGet200ResponseFromJSONTyped, ApiV1BusinessMetricsRevenueByCategoryGet200ResponseToJSON, type ApiV1BusinessMetricsRevenueByCategoryGet200ResponseValInner, ApiV1BusinessMetricsRevenueByCategoryGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsRevenueByCategoryGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsRevenueByCategoryGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsRevenueByCategoryGetRequest, type ApiV1BusinessMetricsRuleOf40Get200Response, ApiV1BusinessMetricsRuleOf40Get200ResponseFromJSON, ApiV1BusinessMetricsRuleOf40Get200ResponseFromJSONTyped, ApiV1BusinessMetricsRuleOf40Get200ResponseToJSON, type ApiV1BusinessMetricsRuleOf40Get200ResponseValInner, ApiV1BusinessMetricsRuleOf40Get200ResponseValInnerFromJSON, ApiV1BusinessMetricsRuleOf40Get200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsRuleOf40Get200ResponseValInnerToJSON, type ApiV1BusinessMetricsRuleOf40GetRequest, type ApiV1BusinessMetricsWorkingCapitalAnalysisGet200Response, ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseFromJSON, ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseFromJSONTyped, ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseToJSON, type ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseValInner, ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseValInnerFromJSON, ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseValInnerFromJSONTyped, ApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseValInnerToJSON, type ApiV1BusinessMetricsWorkingCapitalAnalysisGetRequest, type ApiV1RecurringTransactionsByStatusGet200Response, ApiV1RecurringTransactionsByStatusGet200ResponseFromJSON, ApiV1RecurringTransactionsByStatusGet200ResponseFromJSONTyped, ApiV1RecurringTransactionsByStatusGet200ResponseToJSON, type ApiV1RecurringTransactionsByStatusGet200ResponseValInner, ApiV1RecurringTransactionsByStatusGet200ResponseValInnerFromJSON, ApiV1RecurringTransactionsByStatusGet200ResponseValInnerFromJSONTyped, ApiV1RecurringTransactionsByStatusGet200ResponseValInnerToJSON, type ApiV1RecurringTransactionsByStatusGetRequest, type ApiV1RecurringTransactionsCashFlowProjectionGet200Response, ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseFromJSON, ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseFromJSONTyped, ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseToJSON, type ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseValInner, ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseValInnerFromJSON, ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseValInnerFromJSONTyped, ApiV1RecurringTransactionsCashFlowProjectionGet200ResponseValInnerToJSON, type ApiV1RecurringTransactionsCashFlowProjectionGetRequest, type ApiV1RecurringTransactionsGet200Response, ApiV1RecurringTransactionsGet200ResponseFromJSON, ApiV1RecurringTransactionsGet200ResponseFromJSONTyped, ApiV1RecurringTransactionsGet200ResponseToJSON, type ApiV1RecurringTransactionsGet200ResponseValInner, ApiV1RecurringTransactionsGet200ResponseValInnerFromJSON, ApiV1RecurringTransactionsGet200ResponseValInnerFromJSONTyped, ApiV1RecurringTransactionsGet200ResponseValInnerToJSON, type ApiV1RecurringTransactionsGetRequest, ApiV1RecurringTransactionsGetSortByEnum, ApiV1RecurringTransactionsGetSortDirEnum, type ApiV1RecurringTransactionsImportantGet200Response, ApiV1RecurringTransactionsImportantGet200ResponseFromJSON, ApiV1RecurringTransactionsImportantGet200ResponseFromJSONTyped, ApiV1RecurringTransactionsImportantGet200ResponseToJSON, type ApiV1RecurringTransactionsImportantGet200ResponseValInner, ApiV1RecurringTransactionsImportantGet200ResponseValInnerFromJSON, ApiV1RecurringTransactionsImportantGet200ResponseValInnerFromJSONTyped, ApiV1RecurringTransactionsImportantGet200ResponseValInnerToJSON, type ApiV1RecurringTransactionsImportantGetRequest, type ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200Response, ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseFromJSON, ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseFromJSONTyped, ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseToJSON, type ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseValInner, ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseValInnerFromJSON, ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseValInnerFromJSONTyped, ApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseValInnerToJSON, type ApiV1RecurringTransactionsMonthlyCashFlowForecastGetRequest, type ApiV1RecurringTransactionsUpcomingGet200Response, ApiV1RecurringTransactionsUpcomingGet200ResponseFromJSON, ApiV1RecurringTransactionsUpcomingGet200ResponseFromJSONTyped, ApiV1RecurringTransactionsUpcomingGet200ResponseToJSON, type ApiV1RecurringTransactionsUpcomingGet200ResponseValInner, ApiV1RecurringTransactionsUpcomingGet200ResponseValInnerFromJSON, ApiV1RecurringTransactionsUpcomingGet200ResponseValInnerFromJSONTyped, ApiV1RecurringTransactionsUpcomingGet200ResponseValInnerToJSON, type ApiV1RecurringTransactionsUpcomingGetRequest, type ApiV1StripeChargesByCurrencyGet200Response, ApiV1StripeChargesByCurrencyGet200ResponseFromJSON, ApiV1StripeChargesByCurrencyGet200ResponseFromJSONTyped, ApiV1StripeChargesByCurrencyGet200ResponseToJSON, type ApiV1StripeChargesByCurrencyGet200ResponseValInner, ApiV1StripeChargesByCurrencyGet200ResponseValInnerFromJSON, ApiV1StripeChargesByCurrencyGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesByCurrencyGet200ResponseValInnerToJSON, ApiV1StripeChargesByCurrencyGetGroupByEnum, type ApiV1StripeChargesByCurrencyGetRequest, ApiV1StripeChargesByCurrencyGetStatusEnum, type ApiV1StripeChargesByFailureCodeGet200Response, ApiV1StripeChargesByFailureCodeGet200ResponseFromJSON, ApiV1StripeChargesByFailureCodeGet200ResponseFromJSONTyped, ApiV1StripeChargesByFailureCodeGet200ResponseToJSON, type ApiV1StripeChargesByFailureCodeGet200ResponseValInner, ApiV1StripeChargesByFailureCodeGet200ResponseValInnerFromJSON, ApiV1StripeChargesByFailureCodeGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesByFailureCodeGet200ResponseValInnerToJSON, ApiV1StripeChargesByFailureCodeGetGroupByEnum, type ApiV1StripeChargesByFailureCodeGetRequest, ApiV1StripeChargesByFailureCodeGetStatusEnum, type ApiV1StripeChargesByStatusGet200Response, ApiV1StripeChargesByStatusGet200ResponseFromJSON, ApiV1StripeChargesByStatusGet200ResponseFromJSONTyped, ApiV1StripeChargesByStatusGet200ResponseToJSON, type ApiV1StripeChargesByStatusGet200ResponseValInner, ApiV1StripeChargesByStatusGet200ResponseValInnerFromJSON, ApiV1StripeChargesByStatusGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesByStatusGet200ResponseValInnerToJSON, ApiV1StripeChargesByStatusGetGroupByEnum, type ApiV1StripeChargesByStatusGetRequest, ApiV1StripeChargesByStatusGetStatusEnum, type ApiV1StripeChargesByTimeRangeGet200Response, ApiV1StripeChargesByTimeRangeGet200ResponseFromJSON, ApiV1StripeChargesByTimeRangeGet200ResponseFromJSONTyped, ApiV1StripeChargesByTimeRangeGet200ResponseToJSON, type ApiV1StripeChargesByTimeRangeGet200ResponseValInner, ApiV1StripeChargesByTimeRangeGet200ResponseValInnerFromJSON, ApiV1StripeChargesByTimeRangeGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesByTimeRangeGet200ResponseValInnerToJSON, ApiV1StripeChargesByTimeRangeGetGroupByEnum, type ApiV1StripeChargesByTimeRangeGetRequest, ApiV1StripeChargesByTimeRangeGetStatusEnum, type ApiV1StripeChargesDisputedGet200Response, ApiV1StripeChargesDisputedGet200ResponseFromJSON, ApiV1StripeChargesDisputedGet200ResponseFromJSONTyped, ApiV1StripeChargesDisputedGet200ResponseToJSON, type ApiV1StripeChargesDisputedGet200ResponseValInner, ApiV1StripeChargesDisputedGet200ResponseValInnerFromJSON, ApiV1StripeChargesDisputedGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesDisputedGet200ResponseValInnerToJSON, type ApiV1StripeChargesDisputedGetRequest, ApiV1StripeChargesDisputedGetStatusEnum, type ApiV1StripeChargesFailedGet200Response, ApiV1StripeChargesFailedGet200ResponseFromJSON, ApiV1StripeChargesFailedGet200ResponseFromJSONTyped, ApiV1StripeChargesFailedGet200ResponseToJSON, type ApiV1StripeChargesFailedGet200ResponseValInner, ApiV1StripeChargesFailedGet200ResponseValInnerFromJSON, ApiV1StripeChargesFailedGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesFailedGet200ResponseValInnerToJSON, type ApiV1StripeChargesFailedGetRequest, ApiV1StripeChargesFailedGetStatusEnum, type ApiV1StripeChargesGet200Response, ApiV1StripeChargesGet200ResponseFromJSON, ApiV1StripeChargesGet200ResponseFromJSONTyped, ApiV1StripeChargesGet200ResponseToJSON, type ApiV1StripeChargesGet200ResponseValInner, ApiV1StripeChargesGet200ResponseValInnerFromJSON, ApiV1StripeChargesGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesGet200ResponseValInnerToJSON, type ApiV1StripeChargesGetRequest, ApiV1StripeChargesGetStatusEnum, type ApiV1StripeChargesRefundedGet200Response, ApiV1StripeChargesRefundedGet200ResponseFromJSON, ApiV1StripeChargesRefundedGet200ResponseFromJSONTyped, ApiV1StripeChargesRefundedGet200ResponseToJSON, type ApiV1StripeChargesRefundedGet200ResponseValInner, ApiV1StripeChargesRefundedGet200ResponseValInnerFromJSON, ApiV1StripeChargesRefundedGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesRefundedGet200ResponseValInnerToJSON, type ApiV1StripeChargesRefundedGetRequest, ApiV1StripeChargesRefundedGetStatusEnum, type ApiV1StripeChargesSummaryGet200Response, ApiV1StripeChargesSummaryGet200ResponseFromJSON, ApiV1StripeChargesSummaryGet200ResponseFromJSONTyped, ApiV1StripeChargesSummaryGet200ResponseToJSON, type ApiV1StripeChargesSummaryGet200ResponseValInner, ApiV1StripeChargesSummaryGet200ResponseValInnerFromJSON, ApiV1StripeChargesSummaryGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesSummaryGet200ResponseValInnerToJSON, ApiV1StripeChargesSummaryGetGroupByEnum, type ApiV1StripeChargesSummaryGetRequest, ApiV1StripeChargesSummaryGetStatusEnum, type ApiV1StripeChargesTopCustomersGet200Response, ApiV1StripeChargesTopCustomersGet200ResponseFromJSON, ApiV1StripeChargesTopCustomersGet200ResponseFromJSONTyped, ApiV1StripeChargesTopCustomersGet200ResponseToJSON, type ApiV1StripeChargesTopCustomersGet200ResponseValInner, ApiV1StripeChargesTopCustomersGet200ResponseValInnerFromJSON, ApiV1StripeChargesTopCustomersGet200ResponseValInnerFromJSONTyped, ApiV1StripeChargesTopCustomersGet200ResponseValInnerToJSON, type ApiV1StripeChargesTopCustomersGetRequest, type ApiV1StripeCustomersActivityGet200Response, ApiV1StripeCustomersActivityGet200ResponseFromJSON, ApiV1StripeCustomersActivityGet200ResponseFromJSONTyped, ApiV1StripeCustomersActivityGet200ResponseToJSON, type ApiV1StripeCustomersActivityGet200ResponseValInner, ApiV1StripeCustomersActivityGet200ResponseValInnerFromJSON, ApiV1StripeCustomersActivityGet200ResponseValInnerFromJSONTyped, ApiV1StripeCustomersActivityGet200ResponseValInnerToJSON, type ApiV1StripeCustomersActivityGetRequest, ApiV1StripeCustomersActivityGetTaxExemptEnum, type ApiV1StripeCustomersByCurrencyGet200Response, ApiV1StripeCustomersByCurrencyGet200ResponseFromJSON, ApiV1StripeCustomersByCurrencyGet200ResponseFromJSONTyped, ApiV1StripeCustomersByCurrencyGet200ResponseToJSON, type ApiV1StripeCustomersByCurrencyGet200ResponseValInner, ApiV1StripeCustomersByCurrencyGet200ResponseValInnerFromJSON, ApiV1StripeCustomersByCurrencyGet200ResponseValInnerFromJSONTyped, ApiV1StripeCustomersByCurrencyGet200ResponseValInnerToJSON, ApiV1StripeCustomersByCurrencyGetGroupByEnum, type ApiV1StripeCustomersByCurrencyGetRequest, ApiV1StripeCustomersByCurrencyGetTaxExemptEnum, type ApiV1StripeCustomersGet200Response, ApiV1StripeCustomersGet200ResponseFromJSON, ApiV1StripeCustomersGet200ResponseFromJSONTyped, ApiV1StripeCustomersGet200ResponseToJSON, type ApiV1StripeCustomersGet200ResponseValInner, ApiV1StripeCustomersGet200ResponseValInnerFromJSON, ApiV1StripeCustomersGet200ResponseValInnerFromJSONTyped, ApiV1StripeCustomersGet200ResponseValInnerToJSON, type ApiV1StripeCustomersGetRequest, ApiV1StripeCustomersGetTaxExemptEnum, type ApiV1StripeInvoicesByCurrencyGet200Response, ApiV1StripeInvoicesByCurrencyGet200ResponseFromJSON, ApiV1StripeInvoicesByCurrencyGet200ResponseFromJSONTyped, ApiV1StripeInvoicesByCurrencyGet200ResponseToJSON, type ApiV1StripeInvoicesByCurrencyGet200ResponseValInner, ApiV1StripeInvoicesByCurrencyGet200ResponseValInnerFromJSON, ApiV1StripeInvoicesByCurrencyGet200ResponseValInnerFromJSONTyped, ApiV1StripeInvoicesByCurrencyGet200ResponseValInnerToJSON, ApiV1StripeInvoicesByCurrencyGetGroupByEnum, type ApiV1StripeInvoicesByCurrencyGetRequest, ApiV1StripeInvoicesByCurrencyGetStatusEnum, type ApiV1StripeInvoicesByStatusGet200Response, ApiV1StripeInvoicesByStatusGet200ResponseFromJSON, ApiV1StripeInvoicesByStatusGet200ResponseFromJSONTyped, ApiV1StripeInvoicesByStatusGet200ResponseToJSON, type ApiV1StripeInvoicesByStatusGet200ResponseValInner, ApiV1StripeInvoicesByStatusGet200ResponseValInnerFromJSON, ApiV1StripeInvoicesByStatusGet200ResponseValInnerFromJSONTyped, ApiV1StripeInvoicesByStatusGet200ResponseValInnerToJSON, ApiV1StripeInvoicesByStatusGetGroupByEnum, type ApiV1StripeInvoicesByStatusGetRequest, ApiV1StripeInvoicesByStatusGetStatusEnum, type ApiV1StripeInvoicesGet200Response, ApiV1StripeInvoicesGet200ResponseFromJSON, ApiV1StripeInvoicesGet200ResponseFromJSONTyped, ApiV1StripeInvoicesGet200ResponseToJSON, type ApiV1StripeInvoicesGet200ResponseValInner, ApiV1StripeInvoicesGet200ResponseValInnerFromJSON, ApiV1StripeInvoicesGet200ResponseValInnerFromJSONTyped, ApiV1StripeInvoicesGet200ResponseValInnerToJSON, type ApiV1StripeInvoicesGetRequest, ApiV1StripeInvoicesGetStatusEnum, type ApiV1StripeInvoicesOverdueGet200Response, ApiV1StripeInvoicesOverdueGet200ResponseFromJSON, ApiV1StripeInvoicesOverdueGet200ResponseFromJSONTyped, ApiV1StripeInvoicesOverdueGet200ResponseToJSON, type ApiV1StripeInvoicesOverdueGet200ResponseValInner, ApiV1StripeInvoicesOverdueGet200ResponseValInnerFromJSON, ApiV1StripeInvoicesOverdueGet200ResponseValInnerFromJSONTyped, ApiV1StripeInvoicesOverdueGet200ResponseValInnerToJSON, type ApiV1StripeInvoicesOverdueGetRequest, type ApiV1StripeInvoicesSummaryGet200Response, ApiV1StripeInvoicesSummaryGet200ResponseFromJSON, ApiV1StripeInvoicesSummaryGet200ResponseFromJSONTyped, ApiV1StripeInvoicesSummaryGet200ResponseToJSON, type ApiV1StripeInvoicesSummaryGet200ResponseValInner, ApiV1StripeInvoicesSummaryGet200ResponseValInnerFromJSON, ApiV1StripeInvoicesSummaryGet200ResponseValInnerFromJSONTyped, ApiV1StripeInvoicesSummaryGet200ResponseValInnerToJSON, type ApiV1StripeInvoicesSummaryGetRequest, type ApiV1StripePaymentIntentsGet200Response, ApiV1StripePaymentIntentsGet200ResponseFromJSON, ApiV1StripePaymentIntentsGet200ResponseFromJSONTyped, ApiV1StripePaymentIntentsGet200ResponseToJSON, type ApiV1StripePaymentIntentsGet200ResponseValInner, ApiV1StripePaymentIntentsGet200ResponseValInnerFromJSON, ApiV1StripePaymentIntentsGet200ResponseValInnerFromJSONTyped, ApiV1StripePaymentIntentsGet200ResponseValInnerToJSON, ApiV1StripePaymentIntentsGetCaptureMethodEnum, ApiV1StripePaymentIntentsGetConfirmationMethodEnum, type ApiV1StripePaymentIntentsGetRequest, ApiV1StripePaymentIntentsGetSetupFutureUsageEnum, ApiV1StripePaymentIntentsGetSortByEnum, ApiV1StripePaymentIntentsGetSortOrderEnum, type ApiV1StripePaymentIntentsSummaryGet200Response, ApiV1StripePaymentIntentsSummaryGet200ResponseFromJSON, ApiV1StripePaymentIntentsSummaryGet200ResponseFromJSONTyped, ApiV1StripePaymentIntentsSummaryGet200ResponseToJSON, type ApiV1StripePaymentIntentsSummaryGet200ResponseValInner, ApiV1StripePaymentIntentsSummaryGet200ResponseValInnerFromJSON, ApiV1StripePaymentIntentsSummaryGet200ResponseValInnerFromJSONTyped, ApiV1StripePaymentIntentsSummaryGet200ResponseValInnerToJSON, ApiV1StripePaymentIntentsSummaryGetGranularityEnum, ApiV1StripePaymentIntentsSummaryGetGroupByEnum, type ApiV1StripePaymentIntentsSummaryGetRequest, type ApiV1StripePricesByTypeGet200Response, ApiV1StripePricesByTypeGet200ResponseFromJSON, ApiV1StripePricesByTypeGet200ResponseFromJSONTyped, ApiV1StripePricesByTypeGet200ResponseToJSON, type ApiV1StripePricesByTypeGet200ResponseValInner, ApiV1StripePricesByTypeGet200ResponseValInnerFromJSON, ApiV1StripePricesByTypeGet200ResponseValInnerFromJSONTyped, ApiV1StripePricesByTypeGet200ResponseValInnerToJSON, ApiV1StripePricesByTypeGetGroupByEnum, type ApiV1StripePricesByTypeGetRequest, type ApiV1StripePricesGet200Response, ApiV1StripePricesGet200ResponseFromJSON, ApiV1StripePricesGet200ResponseFromJSONTyped, ApiV1StripePricesGet200ResponseToJSON, type ApiV1StripePricesGet200ResponseValInner, ApiV1StripePricesGet200ResponseValInnerFromJSON, ApiV1StripePricesGet200ResponseValInnerFromJSONTyped, ApiV1StripePricesGet200ResponseValInnerToJSON, type ApiV1StripePricesGetRequest, ApiV1StripePricesGetSortByEnum, ApiV1StripePricesGetSortOrderEnum, type ApiV1StripePricesSummaryGet200Response, ApiV1StripePricesSummaryGet200ResponseFromJSON, ApiV1StripePricesSummaryGet200ResponseFromJSONTyped, ApiV1StripePricesSummaryGet200ResponseToJSON, type ApiV1StripePricesSummaryGet200ResponseValInner, ApiV1StripePricesSummaryGet200ResponseValInnerFromJSON, ApiV1StripePricesSummaryGet200ResponseValInnerFromJSONTyped, ApiV1StripePricesSummaryGet200ResponseValInnerToJSON, ApiV1StripePricesSummaryGetGroupByEnum, type ApiV1StripePricesSummaryGetRequest, type ApiV1StripeProductsByTypeGet200Response, ApiV1StripeProductsByTypeGet200ResponseFromJSON, ApiV1StripeProductsByTypeGet200ResponseFromJSONTyped, ApiV1StripeProductsByTypeGet200ResponseToJSON, type ApiV1StripeProductsByTypeGet200ResponseValInner, ApiV1StripeProductsByTypeGet200ResponseValInnerFromJSON, ApiV1StripeProductsByTypeGet200ResponseValInnerFromJSONTyped, ApiV1StripeProductsByTypeGet200ResponseValInnerToJSON, ApiV1StripeProductsByTypeGetGroupByEnum, type ApiV1StripeProductsByTypeGetRequest, type ApiV1StripeProductsGet200Response, ApiV1StripeProductsGet200ResponseFromJSON, ApiV1StripeProductsGet200ResponseFromJSONTyped, ApiV1StripeProductsGet200ResponseToJSON, type ApiV1StripeProductsGet200ResponseValInner, ApiV1StripeProductsGet200ResponseValInnerFromJSON, ApiV1StripeProductsGet200ResponseValInnerFromJSONTyped, ApiV1StripeProductsGet200ResponseValInnerToJSON, type ApiV1StripeProductsGetRequest, ApiV1StripeProductsGetSortByEnum, ApiV1StripeProductsGetSortOrderEnum, type ApiV1StripeProductsSummaryGet200Response, ApiV1StripeProductsSummaryGet200ResponseFromJSON, ApiV1StripeProductsSummaryGet200ResponseFromJSONTyped, ApiV1StripeProductsSummaryGet200ResponseToJSON, type ApiV1StripeProductsSummaryGet200ResponseValInner, ApiV1StripeProductsSummaryGet200ResponseValInnerFromJSON, ApiV1StripeProductsSummaryGet200ResponseValInnerFromJSONTyped, ApiV1StripeProductsSummaryGet200ResponseValInnerToJSON, ApiV1StripeProductsSummaryGetAnalysisTypeEnum, ApiV1StripeProductsSummaryGetGranularityEnum, type ApiV1StripeProductsSummaryGetRequest, type ApiV1StripeSubscriptionsByApplicationGet200Response, ApiV1StripeSubscriptionsByApplicationGet200ResponseFromJSON, ApiV1StripeSubscriptionsByApplicationGet200ResponseFromJSONTyped, ApiV1StripeSubscriptionsByApplicationGet200ResponseToJSON, type ApiV1StripeSubscriptionsByApplicationGet200ResponseValInner, ApiV1StripeSubscriptionsByApplicationGet200ResponseValInnerFromJSON, ApiV1StripeSubscriptionsByApplicationGet200ResponseValInnerFromJSONTyped, ApiV1StripeSubscriptionsByApplicationGet200ResponseValInnerToJSON, ApiV1StripeSubscriptionsByApplicationGetGroupByEnum, type ApiV1StripeSubscriptionsByApplicationGetRequest, type ApiV1StripeSubscriptionsByStatusGet200Response, ApiV1StripeSubscriptionsByStatusGet200ResponseFromJSON, ApiV1StripeSubscriptionsByStatusGet200ResponseFromJSONTyped, ApiV1StripeSubscriptionsByStatusGet200ResponseToJSON, type ApiV1StripeSubscriptionsByStatusGet200ResponseValInner, ApiV1StripeSubscriptionsByStatusGet200ResponseValInnerFromJSON, ApiV1StripeSubscriptionsByStatusGet200ResponseValInnerFromJSONTyped, ApiV1StripeSubscriptionsByStatusGet200ResponseValInnerToJSON, ApiV1StripeSubscriptionsByStatusGetGroupByEnum, type ApiV1StripeSubscriptionsByStatusGetRequest, type ApiV1StripeSubscriptionsGet200Response, ApiV1StripeSubscriptionsGet200ResponseFromJSON, ApiV1StripeSubscriptionsGet200ResponseFromJSONTyped, ApiV1StripeSubscriptionsGet200ResponseToJSON, type ApiV1StripeSubscriptionsGet200ResponseValInner, ApiV1StripeSubscriptionsGet200ResponseValInnerFromJSON, ApiV1StripeSubscriptionsGet200ResponseValInnerFromJSONTyped, ApiV1StripeSubscriptionsGet200ResponseValInnerToJSON, type ApiV1StripeSubscriptionsGetRequest, type ApiV1StripeSubscriptionsSummaryGet200Response, ApiV1StripeSubscriptionsSummaryGet200ResponseFromJSON, ApiV1StripeSubscriptionsSummaryGet200ResponseFromJSONTyped, ApiV1StripeSubscriptionsSummaryGet200ResponseToJSON, type ApiV1StripeSubscriptionsSummaryGet200ResponseValInner, ApiV1StripeSubscriptionsSummaryGet200ResponseValInnerFromJSON, ApiV1StripeSubscriptionsSummaryGet200ResponseValInnerFromJSONTyped, ApiV1StripeSubscriptionsSummaryGet200ResponseValInnerToJSON, type ApiV1StripeSubscriptionsSummaryGetRequest, type ApiV1StripeSubscriptionsTrialAnalysisGet200Response, ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseFromJSON, ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseFromJSONTyped, ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseToJSON, type ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseValInner, ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseValInnerFromJSON, ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseValInnerFromJSONTyped, ApiV1StripeSubscriptionsTrialAnalysisGet200ResponseValInnerToJSON, type ApiV1StripeSubscriptionsTrialAnalysisGetRequest, type ApiV1TransactionsByDayGet200Response, ApiV1TransactionsByDayGet200ResponseFromJSON, ApiV1TransactionsByDayGet200ResponseFromJSONTyped, ApiV1TransactionsByDayGet200ResponseToJSON, type ApiV1TransactionsByDayGet200ResponseValInner, ApiV1TransactionsByDayGet200ResponseValInnerFromJSON, ApiV1TransactionsByDayGet200ResponseValInnerFromJSONTyped, ApiV1TransactionsByDayGet200ResponseValInnerToJSON, type ApiV1TransactionsByDayGetRequest, type ApiV1TransactionsByMonthGet200Response, ApiV1TransactionsByMonthGet200ResponseFromJSON, ApiV1TransactionsByMonthGet200ResponseFromJSONTyped, ApiV1TransactionsByMonthGet200ResponseToJSON, type ApiV1TransactionsByMonthGet200ResponseValInner, ApiV1TransactionsByMonthGet200ResponseValInnerFromJSON, ApiV1TransactionsByMonthGet200ResponseValInnerFromJSONTyped, ApiV1TransactionsByMonthGet200ResponseValInnerToJSON, type ApiV1TransactionsByMonthGetRequest, type ApiV1TransactionsCategorySpendingGet200Response, ApiV1TransactionsCategorySpendingGet200ResponseFromJSON, ApiV1TransactionsCategorySpendingGet200ResponseFromJSONTyped, ApiV1TransactionsCategorySpendingGet200ResponseToJSON, type ApiV1TransactionsCategorySpendingGet200ResponseValInner, ApiV1TransactionsCategorySpendingGet200ResponseValInnerFromJSON, ApiV1TransactionsCategorySpendingGet200ResponseValInnerFromJSONTyped, ApiV1TransactionsCategorySpendingGet200ResponseValInnerToJSON, type ApiV1TransactionsCategorySpendingGetRequest, type ApiV1TransactionsGet200Response, ApiV1TransactionsGet200ResponseFromJSON, ApiV1TransactionsGet200ResponseFromJSONTyped, ApiV1TransactionsGet200ResponseToJSON, type ApiV1TransactionsGet200ResponseValInner, ApiV1TransactionsGet200ResponseValInnerFromJSON, ApiV1TransactionsGet200ResponseValInnerFromJSONTyped, ApiV1TransactionsGet200ResponseValInnerToJSON, type ApiV1TransactionsGetRequest, ApiV1TransactionsGetSortByEnum, ApiV1TransactionsGetSortDirEnum, type ApiV1TransactionsMerchantSpendingGet200Response, ApiV1TransactionsMerchantSpendingGet200ResponseFromJSON, ApiV1TransactionsMerchantSpendingGet200ResponseFromJSONTyped, ApiV1TransactionsMerchantSpendingGet200ResponseToJSON, type ApiV1TransactionsMerchantSpendingGet200ResponseValInner, ApiV1TransactionsMerchantSpendingGet200ResponseValInnerFromJSON, ApiV1TransactionsMerchantSpendingGet200ResponseValInnerFromJSONTyped, ApiV1TransactionsMerchantSpendingGet200ResponseValInnerToJSON, type ApiV1TransactionsMerchantSpendingGetRequest, type ApiV1TransactionsRecurringPatternsGet200Response, ApiV1TransactionsRecurringPatternsGet200ResponseFromJSON, ApiV1TransactionsRecurringPatternsGet200ResponseFromJSONTyped, ApiV1TransactionsRecurringPatternsGet200ResponseToJSON, type ApiV1TransactionsRecurringPatternsGet200ResponseValInner, ApiV1TransactionsRecurringPatternsGet200ResponseValInnerFromJSON, ApiV1TransactionsRecurringPatternsGet200ResponseValInnerFromJSONTyped, ApiV1TransactionsRecurringPatternsGet200ResponseValInnerToJSON, type ApiV1TransactionsRecurringPatternsGetRequest, BASE_PATH, BaseAPI, BlobApiResponse, BusinessMetricsApi, type BusinessMetricsApiInterface, COLLECTION_FORMATS, Configuration, type ConfigurationParameters, type Consume, type CreateTenant201Response, CreateTenant201ResponseFromJSON, CreateTenant201ResponseFromJSONTyped, CreateTenant201ResponseToJSON, type CreateTenantOperationRequest, type CreateTenantRequest, CreateTenantRequestFromJSON, CreateTenantRequestFromJSONTyped, CreateTenantRequestToJSON, type Def0, type Def0Details, Def0DetailsFromJSON, Def0DetailsFromJSONTyped, Def0DetailsToJSON, Def0FromJSON, Def0FromJSONTyped, Def0ToJSON, DefaultConfig, type ErrorContext, type FetchAPI, FetchError, type FetchParams, type GetTenant200Response, GetTenant200ResponseFromJSON, GetTenant200ResponseFromJSONTyped, GetTenant200ResponseToJSON, type GetTenantHealth200Response, type GetTenantHealth200ResponseData, GetTenantHealth200ResponseDataFromJSON, GetTenantHealth200ResponseDataFromJSONTyped, GetTenantHealth200ResponseDataStatusEnum, GetTenantHealth200ResponseDataToJSON, GetTenantHealth200ResponseFromJSON, GetTenantHealth200ResponseFromJSONTyped, GetTenantHealth200ResponseToJSON, type GetTenantHealthRequest, type GetTenantRequest, type GetTenantStats200Response, type GetTenantStats200ResponseDataInner, GetTenantStats200ResponseDataInnerFromJSON, GetTenantStats200ResponseDataInnerFromJSONTyped, GetTenantStats200ResponseDataInnerToJSON, GetTenantStats200ResponseFromJSON, GetTenantStats200ResponseFromJSONTyped, GetTenantStats200ResponseToJSON, type GetTenantStatsRequest, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, HealthApi, type HealthApiInterface, type HealthGet200Response, HealthGet200ResponseFromJSON, HealthGet200ResponseFromJSONTyped, HealthGet200ResponseToJSON, type HealthReadyGet200Response, HealthReadyGet200ResponseFromJSON, HealthReadyGet200ResponseFromJSONTyped, HealthReadyGet200ResponseToJSON, type InitOverrideFunction, JSONApiResponse, type Json, type ListTenants200Response, type ListTenants200ResponseDataInner, ListTenants200ResponseDataInnerFromJSON, ListTenants200ResponseDataInnerFromJSONTyped, ListTenants200ResponseDataInnerStatusEnum, ListTenants200ResponseDataInnerToJSON, ListTenants200ResponseFromJSON, ListTenants200ResponseFromJSONTyped, ListTenants200ResponseToJSON, type ListTenantsRequest, type Middleware, type ModelPropertyNaming, type ProcessLegacyWebhook200Response, ProcessLegacyWebhook200ResponseFromJSON, ProcessLegacyWebhook200ResponseFromJSONTyped, ProcessLegacyWebhook200ResponseToJSON, RecurringTransactionsApi, type RecurringTransactionsApiInterface, type RequestContext, type RequestOpts, RequiredError, type ResponseContext, ResponseError, type ResponseTransformer, StripeChargesApi, type StripeChargesApiInterface, StripeCustomersApi, type StripeCustomersApiInterface, StripeInvoicesApi, type StripeInvoicesApiInterface, StripePaymentIntentsApi, type StripePaymentIntentsApiInterface, StripePricesApi, type StripePricesApiInterface, StripeProductsApi, type StripeProductsApiInterface, StripeSubscriptionsApi, type StripeSubscriptionsApiInterface, SyncApi, type SyncApiInterface, type SyncBackfill202Response, SyncBackfill202ResponseFromJSON, SyncBackfill202ResponseFromJSONTyped, type SyncBackfill202ResponseJob, SyncBackfill202ResponseJobFromJSON, SyncBackfill202ResponseJobFromJSONTyped, SyncBackfill202ResponseJobToJSON, SyncBackfill202ResponseToJSON, type SyncBackfillOperationRequest, type SyncBackfillRequest, type SyncBackfillRequestCreated, SyncBackfillRequestCreatedFromJSON, SyncBackfillRequestCreatedFromJSONTyped, SyncBackfillRequestCreatedToJSON, SyncBackfillRequestFromJSON, SyncBackfillRequestFromJSONTyped, SyncBackfillRequestObjectEnum, SyncBackfillRequestToJSON, type SyncSingleEntity202Response, SyncSingleEntity202ResponseFromJSON, SyncSingleEntity202ResponseFromJSONTyped, type SyncSingleEntity202ResponseJob, SyncSingleEntity202ResponseJobFromJSON, SyncSingleEntity202ResponseJobFromJSONTyped, SyncSingleEntity202ResponseJobToJSON, SyncSingleEntity202ResponseToJSON, type SyncSingleEntityRequest, type SyncTenant202Response, SyncTenant202ResponseFromJSON, SyncTenant202ResponseFromJSONTyped, type SyncTenant202ResponseJob, SyncTenant202ResponseJobFromJSON, SyncTenant202ResponseJobFromJSONTyped, SyncTenant202ResponseJobToJSON, SyncTenant202ResponseToJSON, type SyncTenantRequest, TenantsApi, type TenantsApiInterface, TextApiResponse, TransactionsApi, type TransactionsApiInterface, type TriggerDailySync202Response, TriggerDailySync202ResponseFromJSON, TriggerDailySync202ResponseFromJSONTyped, type TriggerDailySync202ResponseJob, TriggerDailySync202ResponseJobFromJSON, TriggerDailySync202ResponseJobFromJSONTyped, TriggerDailySync202ResponseJobToJSON, TriggerDailySync202ResponseToJSON, type TriggerDailySyncOperationRequest, type TriggerDailySyncRequest, TriggerDailySyncRequestFromJSON, TriggerDailySyncRequestFromJSONTyped, TriggerDailySyncRequestObjectEnum, TriggerDailySyncRequestToJSON, type TriggerMonthlySync202Response, TriggerMonthlySync202ResponseFromJSON, TriggerMonthlySync202ResponseFromJSONTyped, TriggerMonthlySync202ResponseToJSON, type TriggerMonthlySyncRequest, type TriggerWeeklySync202Response, TriggerWeeklySync202ResponseFromJSON, TriggerWeeklySync202ResponseFromJSONTyped, TriggerWeeklySync202ResponseToJSON, type TriggerWeeklySyncRequest, type UpdateTenant200Response, UpdateTenant200ResponseFromJSON, UpdateTenant200ResponseFromJSONTyped, UpdateTenant200ResponseToJSON, type UpdateTenantOperationRequest, type UpdateTenantRequest, UpdateTenantRequestFromJSON, UpdateTenantRequestFromJSONTyped, UpdateTenantRequestStatusEnum, UpdateTenantRequestToJSON, VoidApiResponse, WebhooksApi, type WebhooksApiInterface, type WebhooksStripePostRequest, type WebhooksStripeTenantIdPostRequest, canConsumeForm, instanceOfApiV1BusinessMetricsBreakEvenAnalysisGet200Response, instanceOfApiV1BusinessMetricsBreakEvenAnalysisGet200ResponseValInner, instanceOfApiV1BusinessMetricsCashFlowForecastGet200Response, instanceOfApiV1BusinessMetricsCashFlowForecastGet200ResponseValInner, instanceOfApiV1BusinessMetricsCashRunwayGet200Response, instanceOfApiV1BusinessMetricsCashRunwayGet200ResponseValInner, instanceOfApiV1BusinessMetricsCustomerConcentrationRiskGet200Response, instanceOfApiV1BusinessMetricsCustomerConcentrationRiskGet200ResponseValInner, instanceOfApiV1BusinessMetricsCustomerLifetimeValueGet200Response, instanceOfApiV1BusinessMetricsCustomerLifetimeValueGet200ResponseValInner, instanceOfApiV1BusinessMetricsDaysCashOnHandGet200Response, instanceOfApiV1BusinessMetricsDaysCashOnHandGet200ResponseValInner, instanceOfApiV1BusinessMetricsExpenseRatioAnalysisGet200Response, instanceOfApiV1BusinessMetricsExpenseRatioAnalysisGet200ResponseValInner, instanceOfApiV1BusinessMetricsExpensesByCostTypeGet200Response, instanceOfApiV1BusinessMetricsExpensesByCostTypeGet200ResponseValInner, instanceOfApiV1BusinessMetricsInvoiceToCashTimeGet200Response, instanceOfApiV1BusinessMetricsInvoiceToCashTimeGet200ResponseValInner, instanceOfApiV1BusinessMetricsMonthlyFinancialSummaryGet200Response, instanceOfApiV1BusinessMetricsMonthlyFinancialSummaryGet200ResponseValInner, instanceOfApiV1BusinessMetricsMrrMovementGet200Response, instanceOfApiV1BusinessMetricsMrrMovementGet200ResponseValInner, instanceOfApiV1BusinessMetricsMrrTrackingGet200Response, instanceOfApiV1BusinessMetricsMrrTrackingGet200ResponseValInner, instanceOfApiV1BusinessMetricsRevenueByCategoryGet200Response, instanceOfApiV1BusinessMetricsRevenueByCategoryGet200ResponseValInner, instanceOfApiV1BusinessMetricsRuleOf40Get200Response, instanceOfApiV1BusinessMetricsRuleOf40Get200ResponseValInner, instanceOfApiV1BusinessMetricsWorkingCapitalAnalysisGet200Response, instanceOfApiV1BusinessMetricsWorkingCapitalAnalysisGet200ResponseValInner, instanceOfApiV1RecurringTransactionsByStatusGet200Response, instanceOfApiV1RecurringTransactionsByStatusGet200ResponseValInner, instanceOfApiV1RecurringTransactionsCashFlowProjectionGet200Response, instanceOfApiV1RecurringTransactionsCashFlowProjectionGet200ResponseValInner, instanceOfApiV1RecurringTransactionsGet200Response, instanceOfApiV1RecurringTransactionsGet200ResponseValInner, instanceOfApiV1RecurringTransactionsImportantGet200Response, instanceOfApiV1RecurringTransactionsImportantGet200ResponseValInner, instanceOfApiV1RecurringTransactionsMonthlyCashFlowForecastGet200Response, instanceOfApiV1RecurringTransactionsMonthlyCashFlowForecastGet200ResponseValInner, instanceOfApiV1RecurringTransactionsUpcomingGet200Response, instanceOfApiV1RecurringTransactionsUpcomingGet200ResponseValInner, instanceOfApiV1StripeChargesByCurrencyGet200Response, instanceOfApiV1StripeChargesByCurrencyGet200ResponseValInner, instanceOfApiV1StripeChargesByFailureCodeGet200Response, instanceOfApiV1StripeChargesByFailureCodeGet200ResponseValInner, instanceOfApiV1StripeChargesByStatusGet200Response, instanceOfApiV1StripeChargesByStatusGet200ResponseValInner, instanceOfApiV1StripeChargesByTimeRangeGet200Response, instanceOfApiV1StripeChargesByTimeRangeGet200ResponseValInner, instanceOfApiV1StripeChargesDisputedGet200Response, instanceOfApiV1StripeChargesDisputedGet200ResponseValInner, instanceOfApiV1StripeChargesFailedGet200Response, instanceOfApiV1StripeChargesFailedGet200ResponseValInner, instanceOfApiV1StripeChargesGet200Response, instanceOfApiV1StripeChargesGet200ResponseValInner, instanceOfApiV1StripeChargesRefundedGet200Response, instanceOfApiV1StripeChargesRefundedGet200ResponseValInner, instanceOfApiV1StripeChargesSummaryGet200Response, instanceOfApiV1StripeChargesSummaryGet200ResponseValInner, instanceOfApiV1StripeChargesTopCustomersGet200Response, instanceOfApiV1StripeChargesTopCustomersGet200ResponseValInner, instanceOfApiV1StripeCustomersActivityGet200Response, instanceOfApiV1StripeCustomersActivityGet200ResponseValInner, instanceOfApiV1StripeCustomersByCurrencyGet200Response, instanceOfApiV1StripeCustomersByCurrencyGet200ResponseValInner, instanceOfApiV1StripeCustomersGet200Response, instanceOfApiV1StripeCustomersGet200ResponseValInner, instanceOfApiV1StripeInvoicesByCurrencyGet200Response, instanceOfApiV1StripeInvoicesByCurrencyGet200ResponseValInner, instanceOfApiV1StripeInvoicesByStatusGet200Response, instanceOfApiV1StripeInvoicesByStatusGet200ResponseValInner, instanceOfApiV1StripeInvoicesGet200Response, instanceOfApiV1StripeInvoicesGet200ResponseValInner, instanceOfApiV1StripeInvoicesOverdueGet200Response, instanceOfApiV1StripeInvoicesOverdueGet200ResponseValInner, instanceOfApiV1StripeInvoicesSummaryGet200Response, instanceOfApiV1StripeInvoicesSummaryGet200ResponseValInner, instanceOfApiV1StripePaymentIntentsGet200Response, instanceOfApiV1StripePaymentIntentsGet200ResponseValInner, instanceOfApiV1StripePaymentIntentsSummaryGet200Response, instanceOfApiV1StripePaymentIntentsSummaryGet200ResponseValInner, instanceOfApiV1StripePricesByTypeGet200Response, instanceOfApiV1StripePricesByTypeGet200ResponseValInner, instanceOfApiV1StripePricesGet200Response, instanceOfApiV1StripePricesGet200ResponseValInner, instanceOfApiV1StripePricesSummaryGet200Response, instanceOfApiV1StripePricesSummaryGet200ResponseValInner, instanceOfApiV1StripeProductsByTypeGet200Response, instanceOfApiV1StripeProductsByTypeGet200ResponseValInner, instanceOfApiV1StripeProductsGet200Response, instanceOfApiV1StripeProductsGet200ResponseValInner, instanceOfApiV1StripeProductsSummaryGet200Response, instanceOfApiV1StripeProductsSummaryGet200ResponseValInner, instanceOfApiV1StripeSubscriptionsByApplicationGet200Response, instanceOfApiV1StripeSubscriptionsByApplicationGet200ResponseValInner, instanceOfApiV1StripeSubscriptionsByStatusGet200Response, instanceOfApiV1StripeSubscriptionsByStatusGet200ResponseValInner, instanceOfApiV1StripeSubscriptionsGet200Response, instanceOfApiV1StripeSubscriptionsGet200ResponseValInner, instanceOfApiV1StripeSubscriptionsSummaryGet200Response, instanceOfApiV1StripeSubscriptionsSummaryGet200ResponseValInner, instanceOfApiV1StripeSubscriptionsTrialAnalysisGet200Response, instanceOfApiV1StripeSubscriptionsTrialAnalysisGet200ResponseValInner, instanceOfApiV1TransactionsByDayGet200Response, instanceOfApiV1TransactionsByDayGet200ResponseValInner, instanceOfApiV1TransactionsByMonthGet200Response, instanceOfApiV1TransactionsByMonthGet200ResponseValInner, instanceOfApiV1TransactionsCategorySpendingGet200Response, instanceOfApiV1TransactionsCategorySpendingGet200ResponseValInner, instanceOfApiV1TransactionsGet200Response, instanceOfApiV1TransactionsGet200ResponseValInner, instanceOfApiV1TransactionsMerchantSpendingGet200Response, instanceOfApiV1TransactionsMerchantSpendingGet200ResponseValInner, instanceOfApiV1TransactionsRecurringPatternsGet200Response, instanceOfApiV1TransactionsRecurringPatternsGet200ResponseValInner, instanceOfCreateTenant201Response, instanceOfCreateTenantRequest, instanceOfDef0, instanceOfDef0Details, instanceOfGetTenant200Response, instanceOfGetTenantHealth200Response, instanceOfGetTenantHealth200ResponseData, instanceOfGetTenantStats200Response, instanceOfGetTenantStats200ResponseDataInner, instanceOfHealthGet200Response, instanceOfHealthReadyGet200Response, instanceOfListTenants200Response, instanceOfListTenants200ResponseDataInner, instanceOfProcessLegacyWebhook200Response, instanceOfSyncBackfill202Response, instanceOfSyncBackfill202ResponseJob, instanceOfSyncBackfillRequest, instanceOfSyncBackfillRequestCreated, instanceOfSyncSingleEntity202Response, instanceOfSyncSingleEntity202ResponseJob, instanceOfSyncTenant202Response, instanceOfSyncTenant202ResponseJob, instanceOfTriggerDailySync202Response, instanceOfTriggerDailySync202ResponseJob, instanceOfTriggerDailySyncRequest, instanceOfTriggerMonthlySync202Response, instanceOfTriggerWeeklySync202Response, instanceOfUpdateTenant200Response, instanceOfUpdateTenantRequest, mapValues, querystring };