(* Options: Date: 2025-12-06 05:58:47 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sbbet-prod-mnta.webhop.biz //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ReportBetCancellations.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Starnet.MontenegroTaxationAuthority.WebApi.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type RecordList() = inherit ResizeArray() type BetSource = | Landbase = 0 | Web = 1 [] type TransactionDtoBase() = member val transaction_id:String = null with get,set member val transaction_time:DateTime = new DateTime() with get,set member val transaction_amount:Decimal = new Decimal() with get,set member val game_name:String = null with get,set member val betting_place_id:String = null with get,set member val betting_terminal_id:String = null with get,set member val jmbg:String = null with get,set member val passport_number:String = null with get,set member val source:BetSource = new BetSource() with get,set member val identification_document_country:String = null with get,set member val identification_document_type:String = null with get,set type RollbackTransactionType = | Bet = 0 | Win = 1 | Jackpot = 1 [] type RollbackDto() = inherit TransactionDtoBase() member val rollback_transaction_id:String = null with get,set member val ticket_id:String = null with get,set member val rollback_transaction_type:RollbackTransactionType = new RollbackTransactionType() with get,set [] [] type ReportBetCancellations() = interface IReturn member val BetCancellations:RecordList = null with get,set