(* Options: Date: 2025-05-06 16:04:05 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetPaymentMethod.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace TicketUserServices.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type PaymentMethod() = member val ID:Int32 = new Int32() with get,set member val PaymentMethodId:String = null with get,set member val PaymentMethodName:String = null with get,set member val Active:Nullable = new Nullable() with get,set member val NeedsCardInfo:Boolean = new Boolean() with get,set [] [] [] type GetPaymentMethod() = interface IReturn member val Id:Nullable = new Nullable() with get,set member val NameId:String = null with get,set