/* Options: Date: 2025-09-13 11:37:38 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: UpdateStripeWebhookEvents.* //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/webhookevent", Verbs="PUT") @ValidateRequest(Validator="IsAuthenticated") open class UpdateStripeWebhookEvents : IReturn, ICompany { /** * The company id, if empty will use the company id for the user you are logged in with. */ @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") override var CompanyId:UUID? = null /** * Events (webhooks) that are accepted by stripe. */ @ApiMember(Description="Events (webhooks) that are accepted by stripe.") open var Events:ArrayList? = null /** * Webhook Id to update events */ @ApiMember(Description="Webhook Id to update events") open var WebhookId:String? = null companion object { private val responseType = StripeWebhooksResponse::class.java } override fun getResponseType(): Any? = UpdateStripeWebhookEvents.responseType } open class StripeWebhooksResponse { open var StripeWebhooks:ArrayList? = null } interface ICompany { var CompanyId:UUID? } open class StripeWebhookResponse { open var Id:String? = null open var Events:ArrayList? = null open var Url:String? = null }