/* Options: Date: 2024-12-23 11:35:08 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://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.*,net.servicestack.client.* */ import java.math.*; import java.util.*; 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; } } }