/* Options: Date: 2025-09-05 04:27:42 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetLatestPhotoRequest.* //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="/machines/{MachineId}/viewpoint/latest", Verbs="GET") public static class GetLatestPhotoRequest extends GetOperationTenanted implements IReturn { public String machineId = null; public String getMachineId() { return machineId; } public GetLatestPhotoRequest setMachineId(String value) { this.machineId = value; return this; } private static Object responseType = GetLatestPhotoResponse.class; public Object getResponseType() { return responseType; } } public static class GetLatestPhotoResponse { public ResponseStatus responseStatus = null; public Photo photo = null; public ResponseStatus getResponseStatus() { return responseStatus; } public GetLatestPhotoResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Photo getPhoto() { return photo; } public GetLatestPhotoResponse setPhoto(Photo value) { this.photo = value; return this; } } public static class GetOperationUnTenanted implements IHasGetOptions, IGet { public String embed = null; public String getEmbed() { return embed; } public GetOperationUnTenanted setEmbed(String value) { this.embed = value; return this; } } public static interface IHasGetOptions { public String embed = null; } public static interface ITenantedRequest { public String organisationId = null; } public static class GetOperationTenanted extends GetOperationUnTenanted implements ITenantedRequest { public String organisationId = null; public String getOrganisationId() { return organisationId; } public GetOperationTenanted setOrganisationId(String value) { this.organisationId = value; return this; } } public static class Photo implements IIdentifiableResource { public Date uploadedAt = null; public String imageUrl = null; public String thumbnailUrl = null; public String id = null; public Date getUploadedAt() { return uploadedAt; } public Photo setUploadedAt(Date value) { this.uploadedAt = value; return this; } public String getImageUrl() { return imageUrl; } public Photo setImageUrl(String value) { this.imageUrl = value; return this; } public String getThumbnailUrl() { return thumbnailUrl; } public Photo setThumbnailUrl(String value) { this.thumbnailUrl = value; return this; } public String getId() { return id; } public Photo setId(String value) { this.id = value; return this; } } public static interface IIdentifiableResource { public String id = null; } }