/* Options: Date: 2025-12-11 18:23:39 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.dev.86degrees.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetImage.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/image", Verbs="GET") // @Route(Path="/image/{id}", Verbs="GET") open class GetImage { @ApiMember(DataType="int", IsRequired=true) var Id:Int? = null /** * Manually control the server resizing of the image. */ @ApiMember(Description="Manually control the server resizing of the image.") var ImageSize:SizeType? = 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.") var Base64:Boolean? = null /** * Force this file to be returned as a thumbnail (small) */ @ApiMember(Description="Force this file to be returned as a thumbnail (small)") var Thumbnail:Boolean? = null } enum class SizeType(val value:Int) { @SerializedName("0") Unknown(0), @SerializedName("1") Full(1), @SerializedName("2") Small(2), @SerializedName("3") Medium(3), @SerializedName("4") Large(4), @SerializedName("5") XLarge(5), }