/* Options: Date: 2024-04-18 17:43:08 Version: 6.111 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://grpc.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: Protoc.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/protoc/{Lang}") public static class Protoc implements IReturn { public ProtocLang lang = null; public HashMap files = null; public String protoUrl = null; public ProtocLang getLang() { return lang; } public Protoc setLang(ProtocLang value) { this.lang = value; return this; } public HashMap getFiles() { return files; } public Protoc setFiles(HashMap value) { this.files = value; return this; } public String getProtoUrl() { return protoUrl; } public Protoc setProtoUrl(String value) { this.protoUrl = value; return this; } private static Object responseType = ProtocResponse.class; public Object getResponseType() { return responseType; } } public static class ProtocResponse { public ProtocLang lang = null; public HashMap generatedFiles = null; public String archiveUrl = null; public ResponseStatus responseStatus = null; public ProtocLang getLang() { return lang; } public ProtocResponse setLang(ProtocLang value) { this.lang = value; return this; } public HashMap getGeneratedFiles() { return generatedFiles; } public ProtocResponse setGeneratedFiles(HashMap value) { this.generatedFiles = value; return this; } public String getArchiveUrl() { return archiveUrl; } public ProtocResponse setArchiveUrl(String value) { this.archiveUrl = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public ProtocResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } @DataContract public static enum ProtocLang { Cpp, CSharp, Dart, Java, JavaLite, ObjectiveC, Php, Python, Ruby, Go, JavaScriptClosure, JavaScriptCommonJs, JavaScriptNodeJs, Swift, TypeScript, TypeScriptBinary; } }