/* Options: Date: 2026-01-22 01:48:21 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pecuario-backend.develsystems.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetVideoFeed.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/api/v1/videos", Verbs="GET") public static class GetVideoFeed implements IReturn, IGet { public Integer pageSize = null; public String offset = null; public Integer getPageSize() { return pageSize; } public GetVideoFeed setPageSize(Integer value) { this.pageSize = value; return this; } public String getOffset() { return offset; } public GetVideoFeed setOffset(String value) { this.offset = value; return this; } private static Object responseType = GetVideoFeedResponse.class; public Object getResponseType() { return responseType; } } public static class GetVideoFeedResponse extends BaseResponse { public ArrayList videos = null; public String offset = null; public ArrayList getVideos() { return videos; } public GetVideoFeedResponse setVideos(ArrayList value) { this.videos = value; return this; } public String getOffset() { return offset; } public GetVideoFeedResponse setOffset(String value) { this.offset = value; return this; } } public static class Status { public String message = null; public Integer statusCode = null; public String getMessage() { return message; } public Status setMessage(String value) { this.message = value; return this; } public Integer getStatusCode() { return statusCode; } public Status setStatusCode(Integer value) { this.statusCode = value; return this; } } public static class BaseResponse { public Status status = null; public Status getStatus() { return status; } public BaseResponse setStatus(Status value) { this.status = value; return this; } } public static class VideoFeedItem { public String animalId = null; public String videoUrl = null; public String thumbnailUrl = null; public String description = null; public String title = null; public String getAnimalId() { return animalId; } public VideoFeedItem setAnimalId(String value) { this.animalId = value; return this; } public String getVideoUrl() { return videoUrl; } public VideoFeedItem setVideoUrl(String value) { this.videoUrl = value; return this; } public String getThumbnailUrl() { return thumbnailUrl; } public VideoFeedItem setThumbnailUrl(String value) { this.thumbnailUrl = value; return this; } public String getDescription() { return description; } public VideoFeedItem setDescription(String value) { this.description = value; return this; } public String getTitle() { return title; } public VideoFeedItem setTitle(String value) { this.title = value; return this; } } }