/* Options: Date: 2026-01-22 01:53:54 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pecuario-backend.develsystems.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetVideoFeed.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/api/v1/videos", Verbs="GET") open class GetVideoFeed : IReturn, IGet { var pageSize:Int? = null var offset:String? = null companion object { private val responseType = GetVideoFeedResponse::class.java } override fun getResponseType(): Any? = GetVideoFeed.responseType } open class GetVideoFeedResponse : BaseResponse() { var videos:ArrayList = ArrayList() var offset:String? = null } open class Status { var message:String? = null var statusCode:Int? = null } open class BaseResponse { var status:Status? = null } open class VideoFeedItem { var animalId:String? = null var videoUrl:String? = null var thumbnailUrl:String? = null var description:String? = null var title:String? = null }