/* Options:
Date: 2025-12-10 20:16:08
Version: 6.50
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://galaxymobile.api.dev.86degrees.com
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: True
//ExportValueTypes: False
IncludeTypes: GetImage.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using CommonService.Media.Resize;
using WebService.ServiceModel.ResourceModels;
namespace WebService.ServiceModel.ResourceModels
{
[Route("/image", "GET")]
[Route("/image/{id}", "GET")]
public partial class GetImage
{
[ApiMember(DataType="int", IsRequired=true)]
public virtual int Id { get; set; }
///
///Manually control the server resizing of the image.
///
[ApiMember(Description="Manually control the server resizing of the image.")]
public virtual ImageSize.SizeType ImageSize { get; set; }
///
///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 virtual bool Base64 { get; set; }
///
///Force this file to be returned as a thumbnail (small)
///
[ApiMember(Description="Force this file to be returned as a thumbnail (small)")]
public virtual bool Thumbnail { get; set; }
}
}