/* Options: Date: 2025-12-06 11:24:19 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: ProjectDeleteImageRequest.* //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/ProjectDeleteImage", Verbs="DELETE,OPTIONS") public static class ProjectDeleteImageRequest implements IReturn { public Integer ProjectId = null; public String ProjectImageKey = null; public Integer getProjectId() { return ProjectId; } public ProjectDeleteImageRequest setProjectId(Integer value) { this.ProjectId = value; return this; } public String getProjectImageKey() { return ProjectImageKey; } public ProjectDeleteImageRequest setProjectImageKey(String value) { this.ProjectImageKey = value; return this; } private static Object responseType = ProductImageResponse.class; public Object getResponseType() { return responseType; } } public static class ProductImageResponse { public ResponseStatus ResponseStatus = null; public String ProductImageKey = null; public String ProductImageURL = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ProductImageResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public String getProductImageKey() { return ProductImageKey; } public ProductImageResponse setProductImageKey(String value) { this.ProductImageKey = value; return this; } public String getProductImageURL() { return ProductImageURL; } public ProductImageResponse setProductImageURL(String value) { this.ProductImageURL = value; return this; } } }