/* Options: Date: 2026-08-17 08:24:36 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WebshopPayoutInfoListRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Webshop/PayoutInfo/List/{OwnerId}", Verbs="GET") open class WebshopPayoutInfoListRequest : IReturn { var ownerId:Int? = null companion object { private val responseType = WebshopPayoutInfoListResult::class.java } override fun getResponseType(): Any? = WebshopPayoutInfoListRequest.responseType } open class WebshopPayoutInfoListResult { var items:ArrayList = ArrayList() var statusCode:Int? = null var message:String? = null } open class WebshopPayoutInfo { var id:Int? = null var ownerId:Int? = null @StringLength(200) var name:String? = null @StringLength(50) var accountNumber:String? = null @StringLength(20) var ssn:String? = null @StringLength(100) var tag:String? = null var active:Boolean? = null var legacyId:Int? = null var createdAt:Date? = null }