/* Options: Date: 2026-06-14 21:34:09 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qp-microservices-booster.richemont.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ArticleImageRequest.* //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="/warranty/v1/article/{referenceId}/image/{format*}", Verbs="GET") public static class ArticleImageRequest extends BaseRequest implements IReturn { public String referenceId = null; public String format = null; public String getReferenceId() { return referenceId; } public ArticleImageRequest setReferenceId(String value) { this.referenceId = value; return this; } public String getFormat() { return format; } public ArticleImageRequest setFormat(String value) { this.format = value; return this; } private static Object responseType = ArticleImageResponse.class; public Object getResponseType() { return responseType; } } public static class ArticleImageResponse { public String imageUrl = null; public String getImageUrl() { return imageUrl; } public ArticleImageResponse setImageUrl(String value) { this.imageUrl = value; return this; } } public static class BaseRequest implements IRequest { public String sid = null; public String app = null; public String _os = null; public String _appVersion = null; public String _searchMethod = null; public String getSid() { return sid; } public BaseRequest setSid(String value) { this.sid = value; return this; } public String getApp() { return app; } public BaseRequest setApp(String value) { this.app = value; return this; } public String getOs() { return _os; } public BaseRequest setOs(String value) { this._os = value; return this; } public String getAppVersion() { return _appVersion; } public BaseRequest setAppVersion(String value) { this._appVersion = value; return this; } public String getSearchMethod() { return _searchMethod; } public BaseRequest setSearchMethod(String value) { this._searchMethod = value; return this; } } public static interface IRequest { public String sid = null; public String app = null; } }