/* Options: Date: 2024-10-18 17:29:18 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: BatchGetWebhookSubscriptions.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* /** * Represents a request to get the details of a subscription that is specified by its unique identifier. */ @Route(Path="/sync/webhooks/subscriptions", Verbs="GET") @Api(Description="Represents a request to get the details of a subscription that is specified by its unique identifier.") open class BatchGetWebhookSubscriptions : BatchGetWebhookSubscriptionsBase(), IReturn> { companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = BatchGetWebhookSubscriptions.responseType } 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 lists all subscriptions of an ELMA user that is specified by the provided user details. */ @Api(Description="Specifies a request to lists all subscriptions of an ELMA user that is specified by the provided user details.") open class BatchGetWebhookSubscriptionsBase : IGet { /** * The BZSt (Bundeszentralamt für Steuern) - tax number of the user. 11-character text field that may only consist of two capital letters and 9 digits (0-9). The fiscal authority BZSt provides this number during registration at the BOP (BZSt-Online Portal - https://www.elster.de/bportal/start). The number is available in the private area of the BOP user account under "My BOP" under the "Registration Information" */ @ApiMember(Description="The BZSt (Bundeszentralamt für Steuern) - tax number of the user. 11-character text field that may only consist of two capital letters and 9 digits (0-9). The fiscal authority BZSt provides this number during registration at the BOP (BZSt-Online Portal - https://www.elster.de/bportal/start). The number is available in the private area of the BOP user account under \"My BOP\" under the \"Registration Information\"", IsRequired=true, Name="AuthSteuernummer") var authSteuernummer:String? = null /** * The account identifier of a BZSt-Online Portal (BOP) user. 10-character text field that may only contain numbers (0-9). */ @ApiMember(Description="The account identifier of a BZSt-Online Portal (BOP) user. 10-character text field that may only contain numbers (0-9).", IsRequired=true, Name="AccountId") var accountId: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 } /** * 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 }