/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { BusinessTypeEnum } from './BusinessTypeEnum'; /** * Serializer for Connect onboarding request. */ export type StripeConnectOnboard = { /** * URL to redirect after onboarding completes */ return_url: string; /** * URL to redirect if onboarding link expires */ refresh_url: string; /** * Type of business * * * `individual` - individual * * `company` - company */ business_type?: BusinessTypeEnum; };