/* Options: Date: 2024-10-06 10:30:18 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PersonPictureRequest.* //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="/person/{uuid}/picture", Verbs="POST") public static class PersonPictureRequest implements IReturn { public String uuid = null; public String getUuid() { return uuid; } public PersonPictureRequest setUuid(String value) { this.uuid = value; return this; } private static Object responseType = PersonPictureResponse.class; public Object getResponseType() { return responseType; } } public static class PersonPictureResponse { public ResponseStatus responseStatus = null; public String imageBase64 = null; public ResponseStatus getResponseStatus() { return responseStatus; } public PersonPictureResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getImageBase64() { return imageBase64; } public PersonPictureResponse setImageBase64(String value) { this.imageBase64 = value; return this; } } }