/* Options: Date: 2026-04-13 05:38:43 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetGmailAuthUrl.* //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="/gmail/auth-url", Verbs="GET") public static class GetGmailAuthUrl implements IReturn { private static Object responseType = GmailAuthUrlResponse.class; public Object getResponseType() { return responseType; } } public static class GmailAuthUrlResponse { public String url = null; public String getUrl() { return url; } public GmailAuthUrlResponse setUrl(String value) { this.url = value; return this; } } }