/* Options: Date: 2024-12-03 09:19:41 Version: 6.00 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://resourcelibrary.api.ashcompanies.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SubTopicsRequest.* //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="/subtopicItems", Verbs="GET") public static class SubTopicsRequest extends BasicResourceLibraryRequest implements IReturn { public Boolean includeCompletionStatus = null; /** * Set it to true if the subtopics being requested belogs to digital fitness. Don't set it if unsure. */ @ApiMember(Description="Set it to true if the subtopics being requested belogs to digital fitness. Don't set it if unsure.") public Boolean digitalFitness = null; public Boolean isIncludeCompletionStatus() { return includeCompletionStatus; } public SubTopicsRequest setIncludeCompletionStatus(Boolean value) { this.includeCompletionStatus = value; return this; } public Boolean isDigitalFitness() { return digitalFitness; } public SubTopicsRequest setDigitalFitness(Boolean value) { this.digitalFitness = value; return this; } private static Object responseType = SubTopicsResponse.class; public Object getResponseType() { return responseType; } } public static class SubTopicsResponse { public ArrayList subTopics = null; public ArrayList getSubTopics() { return subTopics; } public SubTopicsResponse setSubTopics(ArrayList value) { this.subTopics = value; return this; } } public static class BasicResourceLibraryRequest { public Integer resourceLibraryMemberId = null; public Integer getResourceLibraryMemberId() { return resourceLibraryMemberId; } public BasicResourceLibraryRequest setResourceLibraryMemberId(Integer value) { this.resourceLibraryMemberId = value; return this; } } public static class SubTopic { public String id = null; public String title = null; public Integer resourceCount = null; public ArrayList resourceItems = null; public String getId() { return id; } public SubTopic setId(String value) { this.id = value; return this; } public String getTitle() { return title; } public SubTopic setTitle(String value) { this.title = value; return this; } public Integer getResourceCount() { return resourceCount; } public SubTopic setResourceCount(Integer value) { this.resourceCount = value; return this; } public ArrayList getResourceItems() { return resourceItems; } public SubTopic setResourceItems(ArrayList value) { this.resourceItems = value; return this; } } }