/* Options: Date: 2025-09-07 12:18:34 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetRepoArchive.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/archive/{User}/{Repo}") // @Route(Path="/GetRepoArchive", Verbs="GET") public static class GetRepoArchive implements IReturn { @Validate(Validator="NotEmpty") public String user = null; @Validate(Validator="NotEmpty") public String repo = null; public String name = null; public String tag = null; public String okai = null; public ArrayList mix = null; public String getUser() { return user; } public GetRepoArchive setUser(String value) { this.user = value; return this; } public String getRepo() { return repo; } public GetRepoArchive setRepo(String value) { this.repo = value; return this; } public String getName() { return name; } public GetRepoArchive setName(String value) { this.name = value; return this; } public String getTag() { return tag; } public GetRepoArchive setTag(String value) { this.tag = value; return this; } public String getOkai() { return okai; } public GetRepoArchive setOkai(String value) { this.okai = value; return this; } public ArrayList getMix() { return mix; } public GetRepoArchive setMix(ArrayList value) { this.mix = value; return this; } private static Object responseType = byte[].class; public Object getResponseType() { return responseType; } } }