/* Options: Date: 2024-11-21 03:34:42 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: ResourceLookAheadRequest.* //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="/lookaheadResults", Verbs="GET") public static class ResourceLookAheadRequest extends BasicResourceLibraryRequest implements IReturn { public String text = null; /** * Set it to true if requesting resources only from digital library */ @ApiMember(Description="Set it to true if requesting resources only from digital library") public Boolean digitalFitness = null; /** * Set it to true if requesting resources only from health library */ @ApiMember(Description="Set it to true if requesting resources only from health library") public Boolean healthLibrary = null; public String getText() { return text; } public ResourceLookAheadRequest setText(String value) { this.text = value; return this; } public Boolean isDigitalFitness() { return digitalFitness; } public ResourceLookAheadRequest setDigitalFitness(Boolean value) { this.digitalFitness = value; return this; } public Boolean isHealthLibrary() { return healthLibrary; } public ResourceLookAheadRequest setHealthLibrary(Boolean value) { this.healthLibrary = value; return this; } private static Object responseType = ResourceLookAheadResponse.class; public Object getResponseType() { return responseType; } } public static class ResourceLookAheadResponse { public LookaheadResult lookaheadResult = null; public LookaheadResult getLookaheadResult() { return lookaheadResult; } public ResourceLookAheadResponse setLookaheadResult(LookaheadResult value) { this.lookaheadResult = 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 LookaheadResult { public String id = null; public ArrayList lookaheadTitles = null; public ArrayList lookaheadTags = null; public String getId() { return id; } public LookaheadResult setId(String value) { this.id = value; return this; } public ArrayList getLookaheadTitles() { return lookaheadTitles; } public LookaheadResult setLookaheadTitles(ArrayList value) { this.lookaheadTitles = value; return this; } public ArrayList getLookaheadTags() { return lookaheadTags; } public LookaheadResult setLookaheadTags(ArrayList value) { this.lookaheadTags = value; return this; } } public static class LookaheadTitle { public String id = null; public String title = null; public String subtitle = null; public String getId() { return id; } public LookaheadTitle setId(String value) { this.id = value; return this; } public String getTitle() { return title; } public LookaheadTitle setTitle(String value) { this.title = value; return this; } public String getSubtitle() { return subtitle; } public LookaheadTitle setSubtitle(String value) { this.subtitle = value; return this; } } public static class LookaheadTag { public String id = null; public String title = null; public String getId() { return id; } public LookaheadTag setId(String value) { this.id = value; return this; } public String getTitle() { return title; } public LookaheadTag setTitle(String value) { this.title = value; return this; } } }