/* Options: Date: 2024-10-18 17:28:03 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://reportfiling.staging.pwc.de //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteWebhookSubscriptionAsync.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* /** * Represents a request to delete a webhook subscription in an asynchronous operation. */ @Route(Path="/async/webhooks/subscriptions/{Id}/delete", Verbs="POST") @Api(Description="Represents a request to delete a webhook subscription in an asynchronous operation.") open class DeleteWebhookSubscriptionAsync : DeleteWebhookSubscriptionBase(), IReturn { companion object { private val responseType = SubscriptionResponse::class.java } override fun getResponseType(): Any? = DeleteWebhookSubscriptionAsync.responseType } /** * Represents a service response that encapsulates a webhook subscription. */ @Api(Description="Represents a service response that encapsulates a webhook subscription.") open class SubscriptionResponse { /** * The encapsulated webhook subscription of the response. The secret of the webhook subscription is encrypted and can only be decrypted by the owner of the private key. */ @ApiMember(Description="The encapsulated webhook subscription of the response. The secret of the webhook subscription is encrypted and can only be decrypted by the owner of the private key.", Name="Subscription") var subscription:WebhookSubscription? = null /** * The history of the subscription event. */ @ApiMember(Description="The history of the subscription event.", Name="History") var history:ArrayList = ArrayList() /** * The status of the response. */ @ApiMember(Description="The status of the response.", Name="ResponseStatus") var responseStatus:ResponseStatus? = null } /** * Specifies a request to delete a webhook subscription. */ @Api(Description="Specifies a request to delete a webhook subscription.") open class DeleteWebhookSubscriptionBase : IPost { /** * The unique identifier of the subscriber. */ @ApiMember(Description="The unique identifier of the subscriber.", IsRequired=true, Name="Id") var id:String? = null /** * The secret of the to-be-deleted webhook subscription. This secret is used to authenticate the owner of the webhook subscription. */ @ApiMember(Description="The secret of the to-be-deleted webhook subscription. This secret is used to authenticate the owner of the webhook subscription.", IsRequired=true, Name="Secret") var secret:String? = null } open class WebhookSubscription { var id:String? = null var name:String? = null var event:String? = null var isActive:Boolean? = null var createdDateUtc:Date? = null var createdById:String? = null var lastModifiedDateUtc:Date? = null var config:SubscriptionConfig? = null } open class SubscriptionDeliveryResult { var attemptedDateUtc:Date? = null var statusDescription:String? = null var statusCode:HttpStatusCode? = null var subscriptionId:String? = null var id:String? = null var eventId:String? = null } open class SubscriptionConfig { var url:String? = null var contentType:String? = null var secret:String? = null }