(* Options: Date: 2024-10-18 10:31:37 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: CreateStripeCheckoutEmbeddedSessionV1.* //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 ServiceStack.Data open System.Net open System.Net.Http.Headers [] type ICompany = abstract CompanyId:Nullable with get,set [] type StripeCheckoutQueryResponse() = /// ///The checkout session id /// [] member val Number:String = null with get,set /// ///The url for checkout module to be placed in a iframe /// [] member val Url:String = null with get,set /// ///The checkout status /// [] member val Status:String = null with get,set [] [] type CreateStripeCheckoutEmbeddedSessionV1() = interface IReturn /// ///The company id. /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///Country code for checkout /// [] member val CountryCode:String = null with get,set /// ///Articles (Could be Service, rebate code types, etc.. /// [] member val Articles:ArticleToCreate[] = [||] with get,set /// ///An internal reference id (Could be booking, rebate code etc.) /// [] member val InternalReferenceId:String = null with get,set