/* Options: Date: 2026-04-05 03:37:37 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GoogleLoginMessage.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/Sitefinity/Analytics/GetGoogleLoginUrl") // @Route("/GetGoogleLoginUrl") public static class GoogleLoginMessage implements IReturn { public String ClientId = null; public String ClientSecret = null; public String ReturnHash = null; public UUID SiteId = null; public String getClientId() { return ClientId; } public GoogleLoginMessage setClientId(String value) { this.ClientId = value; return this; } public String getClientSecret() { return ClientSecret; } public GoogleLoginMessage setClientSecret(String value) { this.ClientSecret = value; return this; } public String getReturnHash() { return ReturnHash; } public GoogleLoginMessage setReturnHash(String value) { this.ReturnHash = value; return this; } public UUID getSiteId() { return SiteId; } public GoogleLoginMessage setSiteId(UUID value) { this.SiteId = value; return this; } private static Object responseType = AccountData.class; public Object getResponseType() { return responseType; } } public static class AccountData { public String UserName = null; public String AccountId = null; public String getUserName() { return UserName; } public AccountData setUserName(String value) { this.UserName = value; return this; } public String getAccountId() { return AccountId; } public AccountData setAccountId(String value) { this.AccountId = value; return this; } } }