/* Options: Date: 2025-04-04 18:34:05 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: FileAttachmentService.GetPublicAllowedImagesRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/api/FileAttachment/GetPublicAllowedImages", Verbs="POST,GET") public static class GetPublicAllowedImagesRequest implements IReturn> { public Boolean IncludeBranch = null; public Boolean IncludeAchievements = null; public Boolean IncludeInstructors = null; public Boolean IncludeProducts = null; public Boolean isIncludeBranch() { return IncludeBranch; } public GetPublicAllowedImagesRequest setIncludeBranch(Boolean value) { this.IncludeBranch = value; return this; } public Boolean isIncludeAchievements() { return IncludeAchievements; } public GetPublicAllowedImagesRequest setIncludeAchievements(Boolean value) { this.IncludeAchievements = value; return this; } public Boolean isIncludeInstructors() { return IncludeInstructors; } public GetPublicAllowedImagesRequest setIncludeInstructors(Boolean value) { this.IncludeInstructors = value; return this; } public Boolean isIncludeProducts() { return IncludeProducts; } public GetPublicAllowedImagesRequest setIncludeProducts(Boolean value) { this.IncludeProducts = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }