/* Options: Date: 2025-08-05 02:00:50 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CommentsBatchUpdateRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/comments-api/comments/list", Verbs="PUT") open class CommentsBatchUpdateRequest : IReturn> { var Key:ArrayList = ArrayList() var Status:String? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = CommentsBatchUpdateRequest.responseType } open class CollectionResponse { var TotalCount:Int? = null var Items:ArrayList = ArrayList() } open class CommentResponse { var Key:String? = null var Name:String? = null var Message:String? = null var DateCreated:Date? = null var ProfilePictureUrl:String? = null var ProfilePictureThumbnailUrl:String? = null var Status:String? = null var Email:String? = null var ThreadKey:String? = null var AuthorIpAddress:String? = null var CustomData:String? = null var Rating:BigDecimal? = null }