/* Options: Date: 2025-12-06 06:18:54 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.86degrees.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetVideo.* //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="/video", Verbs="GET") // @Route(Path="/video/{id}", Verbs="GET") public static class GetVideo { @ApiMember(DataType="int", IsRequired=true) public Integer Id = null; /** * Enable this to provide chunking of video data. */ @ApiMember(Description="Enable this to provide chunking of video data.") public Boolean Stream = null; /** * Request a video by it's filename. */ @ApiMember(Description="Request a video by it's filename.") public String FileName = null; public Integer getId() { return Id; } public GetVideo setId(Integer value) { this.Id = value; return this; } public Boolean isStream() { return Stream; } public GetVideo setStream(Boolean value) { this.Stream = value; return this; } public String getFileName() { return FileName; } public GetVideo setFileName(String value) { this.FileName = value; return this; } } }