/* Options: Date: 2025-12-10 20:26:42 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.dev.86degrees.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetImage.* //ExcludeTypes: //DefaultImports: */ export enum SizeType { Unknown = 0, Full = 1, Small = 2, Medium = 3, Large = 4, XLarge = 5, } // @Route("/image", "GET") // @Route("/image/{id}", "GET") export class GetImage { // @ApiMember(DataType="int", IsRequired=true) public Id: number; /** * Manually control the server resizing of the image. */ // @ApiMember(Description="Manually control the server resizing of the image.") public ImageSize: SizeType; /** * 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 Base64: boolean; /** * Force this file to be returned as a thumbnail (small) */ // @ApiMember(Description="Force this file to be returned as a thumbnail (small)") public Thumbnail: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetImage'; } public getMethod() { return 'GET'; } public createResponse() {} }