/* Options: Date: 2026-09-04 07:44:16 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GoogleMapsImportRequest.* //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="/api/Admin/GoogleMapsImport", Verbs="POST") public static class GoogleMapsImportRequest implements IReturn { public Integer TargetBranchId = null; public String Tag = null; public String NotifyEmail = null; public Integer getTargetBranchId() { return TargetBranchId; } public GoogleMapsImportRequest setTargetBranchId(Integer value) { this.TargetBranchId = value; return this; } public String getTag() { return Tag; } public GoogleMapsImportRequest setTag(String value) { this.Tag = value; return this; } public String getNotifyEmail() { return NotifyEmail; } public GoogleMapsImportRequest setNotifyEmail(String value) { this.NotifyEmail = value; return this; } private static Object responseType = GoogleMapsImportResult.class; public Object getResponseType() { return responseType; } } public static class GoogleMapsImportResult { public Integer ImportId = null; public Integer TargetBranchId = null; public String Tag = null; public String FileName = null; public Boolean Queued = null; public Integer getImportId() { return ImportId; } public GoogleMapsImportResult setImportId(Integer value) { this.ImportId = value; return this; } public Integer getTargetBranchId() { return TargetBranchId; } public GoogleMapsImportResult setTargetBranchId(Integer value) { this.TargetBranchId = value; return this; } public String getTag() { return Tag; } public GoogleMapsImportResult setTag(String value) { this.Tag = value; return this; } public String getFileName() { return FileName; } public GoogleMapsImportResult setFileName(String value) { this.FileName = value; return this; } public Boolean isQueued() { return Queued; } public GoogleMapsImportResult setQueued(Boolean value) { this.Queued = value; return this; } } }