/* Options: Date: 2025-12-06 04:51:29 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.prod-mnta.webhop.biz //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: ReportBetPlacements.* //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 Starnet.Common; using Starnet.MontenegroTaxationAuthority.Common; using Starnet.MontenegroTaxationAuthority.WebApi.ServiceModel; namespace Starnet.Common { public partial class RecordList : List { } } namespace Starnet.MontenegroTaxationAuthority.Common { public partial class BetDto : TransactionDtoBase { public virtual decimal min_odds { get; set; } public virtual decimal max_odds { get; set; } public virtual decimal min_win { get; set; } public virtual decimal max_win { get; set; } public virtual decimal min_bonus { get; set; } public virtual decimal max_bonus { get; set; } public virtual decimal max_payout { get; set; } public virtual decimal promo_amount { get; set; } public virtual string ticket_id { get; set; } public virtual TicketDto ticket { get; set; } public virtual BetType bet_type { get; set; } } public enum BetSource { Landbase = 0, Web = 1, } public enum BetType { Real = 0, Promo = 1, } public partial class TicketDto { public virtual string sy { get; set; } public virtual int nc { get; set; } public virtual decimal ac { get; set; } public virtual RecordList> e { get; set; } } public partial class TransactionDtoBase { public virtual string transaction_id { get; set; } public virtual DateTime transaction_time { get; set; } public virtual decimal transaction_amount { get; set; } public virtual string game_name { get; set; } public virtual string betting_place_id { get; set; } public virtual string betting_terminal_id { get; set; } public virtual string jmbg { get; set; } public virtual string passport_number { get; set; } public virtual BetSource source { get; set; } public virtual string identification_document_country { get; set; } public virtual string identification_document_type { get; set; } } } namespace Starnet.MontenegroTaxationAuthority.WebApi.ServiceModel { [Route("/bets/place", "POST")] public partial class ReportBetPlacements : IReturn { public virtual RecordList BetPlacements { get; set; } } }