/* Options: Date: 2025-08-05 02:11:59 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: TemplateKeyRequest.* //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="/markup/template-keys/{StrategyKey}", Verbs="GET") public static class TemplateKeyRequest implements IReturn { public String StrategyKey = null; public String getStrategyKey() { return StrategyKey; } public TemplateKeyRequest setStrategyKey(String value) { this.StrategyKey = value; return this; } private static Object responseType = TemplateKeyResponse.class; public Object getResponseType() { return responseType; } } public static class TemplateKeyResponse { public ArrayList Keys = null; public ArrayList getKeys() { return Keys; } public TemplateKeyResponse setKeys(ArrayList value) { this.Keys = value; return this; } } }