/* Options: Date: 2026-04-13 05:39:19 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetGmailAuthUrl.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class GmailAuthUrlResponse { public url: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/gmail/auth-url", "GET") export class GetGmailAuthUrl implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetGmailAuthUrl'; } public getMethod() { return 'GET'; } public createResponse() { return new GmailAuthUrlResponse(); } }