/* Options: Date: 2024-10-18 17:23:12 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://reportfiling.pwc.de //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetWebhookSubscription.* //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 retrieve a webhook subscription by its unique identifier, and retrieve its details. */ @Route(Path="/sync/webhooks/subscriptions/{Id}", Verbs="GET") @Api(Description="Represents a request to retrieve a webhook subscription by its unique identifier, and retrieve its details.") open class GetWebhookSubscription : GetWebhookSubscriptionBase(), IReturn { companion object { private val responseType = SubscriptionResponse::class.java } override fun getResponseType(): Any? = GetWebhookSubscription.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 } 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 } /** * Specifies a request to retrieve a webhook subscription by its unique identifier, and retrieve its details. */ @Api(Description="Specifies a request to retrieve a webhook subscription by its unique identifier, and retrieve its details.") open class GetWebhookSubscriptionBase : IGet { /** * The unique identifier of the subscriber. */ @ApiMember(Description="The unique identifier of the subscriber.", IsRequired=true, Name="Id") var id:String? = 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 }