/* Options: Date: 2024-12-23 11:36:41 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakePartial: True //MakeVirtual: False //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: True //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetRewardsStatusRequest.* //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 ConsumerApi; namespace ConsumerApi { public partial class ActiveLottery { public long Id { get; set; } public DateTimeOffset FirstDay { get; set; } public DateTimeOffset LastDay { get; set; } public string? ContentBeforeSharing { get; set; } public string? ContentAfterSharing { get; set; } public string CountryCode { get; set; } public long YourNumberOfTicketsInThisLottery { get; set; } } [Route("/user/rewards", "GET")] public partial class GetRewardsStatusRequest : IReturn, IGet { } public partial class GetRewardsStatusResponse { public long PointsInTotal { get; set; } public long PointsExpiringAtEndOfThisYear { get; set; } public RewardInfo ReferFriend { get; set; } public RewardInfo SharePlace { get; set; } public RewardInfo ShareAdMessage { get; set; } public RewardInfo ReferBusiness { get; set; } public long PointsAwardedForSignup { get; set; } public ActiveLottery? ActiveLottery { get; set; } } public partial class RewardInfo { public long Points { get; set; } public long Count { get; set; } public long PointsGrantedOnSuccess { get; set; } } }