(* Options: Date: 2024-06-29 12:24:42 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: DibsCallbackDto.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open System.IO type DibStatus = | Success = 0 | Cancelled = 1 [] [] type DibsCallbackDto() = /// ///The company id to save the credit card to /// [] member val CompanyId:Guid = new Guid() with get,set /// ///The dibs card expiration date (yymm) /// [] member val cardexpdate:String = null with get,set /// ///The dibs transact id /// [] member val transact:String = null with get,set /// ///The dibs card number (masked) /// [] member val cardnomask:String = null with get,set /// ///The dibs paytype /// [] member val paytype:String = null with get,set /// ///The dibs currency /// [] member val currency:String = null with get,set /// ///The dibs acquirer /// [] member val acquirer:String = null with get,set /// ///The dibs approval code /// [] member val approvalcode:String = null with get,set /// ///The dibs status code /// [] member val statuscode:String = null with get,set /// ///The dibs amount /// [] member val amount:String = null with get,set /// ///The redirect url to send user back to after added creditcard /// [] member val RedirectUrl:String = null with get,set /// ///The unique token for this request /// [] member val Token:String = null with get,set /// ///status of the callback url /// [] member val Status:DibStatus = new DibStatus() with get,set