/* Options: Date: 2026-04-04 03:05:49 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //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: False //ExportValueTypes: False IncludeTypes: SaveImageAsObjectPrimary.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Eros.Saguna.Common.WebAPIModel.ServiceModels; namespace Eros.Saguna.Common.WebAPIModel.ServiceModels { /// ///Updates the specified objects primary image with the specified Images Media File ID. /// [Route("/json/reply/SaveImageAsObjectPrimary")] [Route("/SaveImageAsObjectPrimary")] [Route("/SaveImageAsObjectPrimary/userprofile")] [Api(Description="Updates the specified objects primary image with the specified Images Media File ID.")] public partial class SaveImageAsObjectPrimary : IReturn { /// ///Guid of the object whose primary image details we want to update. /// [ApiMember(DataType="Guid", Description="Guid of the object whose primary image details we want to update.", IsRequired=true, Name="ObjectId", ParameterType="query")] public virtual Guid ObjectId { get; set; } /// ///Guid of the Media File that contains details of the image we want to be primary. /// [ApiMember(DataType="Guid", Description="Guid of the Media File that contains details of the image we want to be primary.", IsRequired=true, Name="PrimaryImageMediaFileId", ParameterType="query")] public virtual Guid PrimaryImageMediaFileId { get; set; } /// ///URL to the full image. /// [ApiMember(DataType="Guid", Description="URL to the full image.", IsRequired=true, Name="BlobImageURL", ParameterType="query")] public virtual string BlobImageURL { get; set; } /// ///URL to the thumbnail image. /// [ApiMember(DataType="Guid", Description="URL to the thumbnail image.", IsRequired=true, Name="BlobImageURLThumbnail", ParameterType="query")] public virtual string BlobImageURLThumbnail { get; set; } } }