/* Options: Date: 2025-12-10 20:28:00 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.dev.86degrees.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetImage.* //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="/image", Verbs="GET") // @Route(Path="/image/{id}", Verbs="GET") public static class GetImage { @ApiMember(DataType="int", IsRequired=true) public Integer Id = null; /** * Manually control the server resizing of the image. */ @ApiMember(Description="Manually control the server resizing of the image.") public SizeType ImageSize = null; /** * Set to true to return the image in Base64 format. */ @ApiMember(DataType="boolean", Description="Set to true to return the image in Base64 format.") public Boolean Base64 = null; /** * Force this file to be returned as a thumbnail (small) */ @ApiMember(Description="Force this file to be returned as a thumbnail (small)") public Boolean Thumbnail = null; public Integer getId() { return Id; } public GetImage setId(Integer value) { this.Id = value; return this; } public SizeType getImageSize() { return ImageSize; } public GetImage setImageSize(SizeType value) { this.ImageSize = value; return this; } public Boolean isBase64() { return Base64; } public GetImage setBase64(Boolean value) { this.Base64 = value; return this; } public Boolean isThumbnail() { return Thumbnail; } public GetImage setThumbnail(Boolean value) { this.Thumbnail = value; return this; } } public static enum SizeType { @SerializedName("0") Unknown(0), @SerializedName("1") Full(1), @SerializedName("2") Small(2), @SerializedName("3") Medium(3), @SerializedName("4") Large(4), @SerializedName("5") XLarge(5); private final int value; SizeType(final int intValue) { value = intValue; } public int getValue() { return value; } } }