/* Options: Date: 2025-12-06 08:01:04 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetImageRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/GetImage/{imgID}", Verbs="GET") public static class GetImageRequest implements IReturn { public String imgID = null; public String getImgID() { return imgID; } public GetImageRequest setImgID(String value) { this.imgID = value; return this; } private static Object responseType = GetImageResponse.class; public Object getResponseType() { return responseType; } } public static class GetImageResponse { public ResponseStatus ResponseStatus = null; public ArrayList ImgLink = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public GetImageResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getImgLink() { return ImgLink; } public GetImageResponse setImgLink(ArrayList value) { this.ImgLink = value; return this; } } }