/* Options: Date: 2025-07-17 23:14:46 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ScriptTrackerReq.* //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="/script", Verbs="GET") // @Route(Path="/script/{Sprint}", Verbs="GET") // @Route(Path="/script/{Sprint}/{Country}/{Language}/{Section}/{Element}", Verbs="GET") // @Route(Path="/script/{Sprint}/{Country}/{Language}/{Section}/{ItemCode}/{Element}", Verbs="GET") public static class ScriptTrackerReq implements IReturn { public String sprint = null; public String country = null; public String language = null; public String section = null; public String itemCode = null; public String element = null; public String getSprint() { return sprint; } public ScriptTrackerReq setSprint(String value) { this.sprint = value; return this; } public String getCountry() { return country; } public ScriptTrackerReq setCountry(String value) { this.country = value; return this; } public String getLanguage() { return language; } public ScriptTrackerReq setLanguage(String value) { this.language = value; return this; } public String getSection() { return section; } public ScriptTrackerReq setSection(String value) { this.section = value; return this; } public String getItemCode() { return itemCode; } public ScriptTrackerReq setItemCode(String value) { this.itemCode = value; return this; } public String getElement() { return element; } public ScriptTrackerReq setElement(String value) { this.element = value; return this; } private static Object responseType = ScriptTracker.class; public Object getResponseType() { return responseType; } } public static class ScriptTracker extends Entity { public String sprint = null; public String country = null; public String language = null; public String section = null; public String itemCode = null; public String element = null; public String value = null; public Boolean isFromMerge = null; public String getSprint() { return sprint; } public ScriptTracker setSprint(String value) { this.sprint = value; return this; } public String getCountry() { return country; } public ScriptTracker setCountry(String value) { this.country = value; return this; } public String getLanguage() { return language; } public ScriptTracker setLanguage(String value) { this.language = value; return this; } public String getSection() { return section; } public ScriptTracker setSection(String value) { this.section = value; return this; } public String getItemCode() { return itemCode; } public ScriptTracker setItemCode(String value) { this.itemCode = value; return this; } public String getElement() { return element; } public ScriptTracker setElement(String value) { this.element = value; return this; } public String getValue() { return value; } public ScriptTracker setValue(String value) { this.value = value; return this; } public Boolean getIsFromMerge() { return isFromMerge; } public ScriptTracker setIsFromMerge(Boolean value) { this.isFromMerge = value; return this; } } public static class Entity implements IEntity { public String id = null; public String getId() { return id; } public Entity setId(String value) { this.id = value; return this; } } public static class Entity { public String logoUri = null; public String name = null; public ContactDetails contactDetails = null; public String getLogoUri() { return logoUri; } public Entity setLogoUri(String value) { this.logoUri = value; return this; } public String getName() { return name; } public Entity setName(String value) { this.name = value; return this; } public ContactDetails getContactDetails() { return contactDetails; } public Entity setContactDetails(ContactDetails value) { this.contactDetails = value; return this; } } }