/* Options: Date: 2026-06-22 20:28:32 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: WorkerAppPhotosRequest.* //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/worker/photos", Verbs="GET,OPTIONS") public static class WorkerAppPhotosRequest implements IReturn { public Integer Take = null; public Integer getTake() { return Take; } public WorkerAppPhotosRequest setTake(Integer value) { this.Take = value; return this; } private static Object responseType = WorkerAppPhotosResponse.class; public Object getResponseType() { return responseType; } } public static class WorkerAppPhotosResponse { public ResponseStatus ResponseStatus = null; public ArrayList Photos = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public WorkerAppPhotosResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getPhotos() { return Photos; } public WorkerAppPhotosResponse setPhotos(ArrayList value) { this.Photos = value; return this; } } public static class WorkerPhoto { public Integer AttachmentId = null; public String Url = null; public String PropertyName = null; public String DateLabel = null; public Boolean IsCustomerVisible = null; public Integer getAttachmentId() { return AttachmentId; } public WorkerPhoto setAttachmentId(Integer value) { this.AttachmentId = value; return this; } public String getUrl() { return Url; } public WorkerPhoto setUrl(String value) { this.Url = value; return this; } public String getPropertyName() { return PropertyName; } public WorkerPhoto setPropertyName(String value) { this.PropertyName = value; return this; } public String getDateLabel() { return DateLabel; } public WorkerPhoto setDateLabel(String value) { this.DateLabel = value; return this; } public Boolean getIsCustomerVisible() { return IsCustomerVisible; } public WorkerPhoto setIsCustomerVisible(Boolean value) { this.IsCustomerVisible = value; return this; } } }