@@ -346,47 +346,47 @@ export interface ApplicationFormSettingsOverride {
346346 /**
347347 * URL that is presented to the user when an application has been submitted
348348 */
349- redirectUrl : string
349+ redirectUrl ? : string
350350
351351 /**
352352 * Privacy Policy
353353 */
354- privacyPolicyUrl : string
354+ privacyPolicyUrl ? : string
355355
356356 /**
357357 * Consent to Electronic Disclosures
358358 */
359- electronicDisclosuresUrl : string
359+ electronicDisclosuresUrl ? : string
360360
361361 /**
362362 * Deposit Terms & Conditions
363363 */
364- depositTermsUrl : string
364+ depositTermsUrl ? : string
365365
366366 /**
367367 * Client Terms of Service
368368 */
369- clientTermsUrl : string
369+ clientTermsUrl ? : string
370370
371371 /**
372372 * Cardholder Terms and Conditions
373373 */
374- cardholderTermsUrl : string
374+ cardholderTermsUrl ? : string
375375
376376 /**
377377 * Cash Advance Terms and Conditions
378378 */
379- cashAdvancedTermsUrl : string
379+ cashAdvancedTermsUrl ? : string
380380
381381 /**
382382 * Debit Card Disclosure
383383 */
384- debitCardDisclosureUrl : string
384+ debitCardDisclosureUrl ? : string
385385
386386 /**
387387 * Array of additional disclosures that were not covered by the above links
388388 */
389- additionalDisclosures : Record < string , string > [ ]
389+ additionalDisclosures ? : Record < string , string > [ ]
390390
391391 /**
392392 * Optional. If true, the applicant will be required to complete the selfie verification process when an ID document is required.
0 commit comments