/* Options: Date: 2025-09-13 18:26:40 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: StripeConnectAccountRequest.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/payment/stripe/v1/account/connect", Verbs="GET") open class StripeConnectAccountRequest : IReturn, ICompany { /** * The company id. */ @ApiMember(Description="The company id.") override var CompanyId:UUID? = null /** * Uri to which stripe will redirect back to after authorization. */ @ApiMember(Description="Uri to which stripe will redirect back to after authorization.", IsRequired=true) open var RedirectUri:String? = null companion object { private val responseType = StripeConnectAccountRes::class.java } override fun getResponseType(): Any? = StripeConnectAccountRequest.responseType } open class StripeConnectAccountRes { open var Url:String? = null } interface ICompany { var CompanyId:UUID? }