/* Options: Date: 2025-05-06 20:43:51 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-consumer-api.brovs.com //Package: //GlobalNamespace: ConsumerApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ProfileDeletePhotoRequest.* //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 ConsumerApi { @Route(Path="/profile/delete-photo", Verbs="PUT") public static class ProfileDeletePhotoRequest implements IReturn, IPut { private static Object responseType = ProfileDeletePhotoResponse.class; public Object getResponseType() { return responseType; } } public static class ProfileDeletePhotoResponse { public Integer deleteCount = null; public Integer getDeleteCount() { return deleteCount; } public ProfileDeletePhotoResponse setDeleteCount(Integer value) { this.deleteCount = value; return this; } } }