/* Options: Date: 2024-11-23 10:46:44 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //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: True //ExportValueTypes: False IncludeTypes: SuperAdminCompanyUserQuery.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Globalization; using ServiceStack.Data; using System.Net; using System.Net.Http.Headers; using BokaMera.API.ServiceModel.Interfaces; using BokaMera.API.ServiceModel.Db; using BokaMera.API.ServiceModel.Enums; using BokaMera.API.ServiceModel.Dtos; using PaysonIntegrationCO2.Models.Enums; using BokaMera.API.ServiceModel.Helpers.Payment; using QvicklyIntegration.Models.Checkout; using QvicklyIntegration.Models.Payment; using PaysonIntegrationCO2.Models; using Stripe.Checkout; using StripeIntegration.Enums; using BokaMera.API.ServiceModel.Helpers.Payson1Payment; using Microsoft.Extensions.Logging; using BokaMera.API.ServiceModel.Security; using QvicklyIntegration.Models.Common; using Stripe; namespace BokaMera.API.ServiceModel.Db { public partial class AdminPaymentOptions : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int Id { get; set; } } public partial class Article : BaseModel, IBaseModelCreated, IBaseModelUpdated { public Article() { ArticleServiceRelations = new List{}; ServiceIds = new List{}; } public virtual Company Company { get; set; } public virtual Currency CurrencyInfo { get; set; } public virtual List ArticleServiceRelations { get; set; } [Ignore] public virtual List ServiceIds { get; set; } [Ignore] public virtual ArticleTypeEnum ArticleType { get; set; } [Ignore] public virtual string ArticleTypeName { get; set; } [Required] public virtual Guid CompanyId { get; set; } public virtual int Id { get; set; } [Required] public virtual string Name { get; set; } [Required] public virtual int ArticleTypeId { get; set; } public virtual string Description { get; set; } public virtual string ImageUrl { get; set; } [Required] public virtual bool Active { get; set; } [Required] public virtual int Amount { get; set; } [Required] public virtual double Price { get; set; } [Required] [StringLength(50)] public virtual string CurrencyId { get; set; } [Required] public virtual DateTime UpdatedDate { get; set; } [Required] public virtual DateTime CreatedDate { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class ArticleServiceRelation : BaseModel { [Required] public virtual Guid CompanyId { get; set; } public virtual int Id { get; set; } [Required] public virtual int ServiceId { get; set; } [Required] public virtual int ArticleId { get; set; } } public partial class AverageRatingScore { public virtual double AverageScore { get; set; } public virtual int Score1Count { get; set; } public virtual int Score2Count { get; set; } public virtual int Score3Count { get; set; } public virtual int Score4Count { get; set; } public virtual int Score5Count { get; set; } public virtual int Count { get; set; } } public partial class BaseModel { } public partial class Booking : PayableEntity, IInterval, ICustomFieldTable, IBaseModelUpdated, IBaseModelCreated { public Booking() { Log = new List{}; CheckoutLogs = new List{}; Prices = new List{}; PriceMappings = new List{}; } [Ignore] public virtual Service Service { get; set; } [Ignore] public virtual CalendarExport CalendarExport { get; set; } [Ignore] public virtual List Log { get; set; } [Ignore] public virtual List CheckoutLogs { get; set; } [Ignore] public virtual List Prices { get; set; } [Ignore] public virtual BookingStatusEnum Status { get; set; } [Ignore] public virtual bool IsReserved { get; set; } [Ignore] public virtual string StatusName { get; set; } public virtual Currency CurrencyInfo { get; set; } public virtual BookingStatus BookingStatus { get; set; } [Ignore] public virtual double? TotalPrice { get; set; } [Ignore] public virtual int? TotalSpots { get; set; } [Ignore] public virtual IList Resources { get; set; } [Ignore] public virtual IList ExternalReferences { get; set; } [Ignore] public virtual IList BookedResources { get; set; } [Ignore] public virtual IList CustomFieldsConfig { get; set; } [Ignore] public virtual IList CustomFieldsData { get; set; } [Ignore] public virtual Guid DeterministicId { get; set; } [Ignore] public virtual bool Active { get; set; } [Ignore] public virtual DateTime? LastTimeToUnBook { get; set; } [Ignore] public virtual List PriceMappings { get; set; } [Ignore] public virtual string InternalReferenceId { get; set; } [Required] public virtual DateTime UpdatedDate { get; set; } [Required] public virtual DateTime CreatedDate { get; set; } public virtual int Id { get; set; } [Required] public virtual Guid CustomerId { get; set; } [Required] public virtual int ServiceId { get; set; } [Required] public virtual int StatusId { get; set; } public virtual DateTime? UnbookedOn { get; set; } public virtual string UnbookedComments { get; set; } public virtual string BookedComments { get; set; } [Required] public virtual string BookedBy { get; set; } public virtual string UnBookedBy { get; set; } [Required] public virtual bool SendSmsReminder { get; set; } [Required] public virtual bool SendEmailReminder { get; set; } [Required] public virtual bool SendSmsConfirmation { get; set; } public virtual string RebateCode { get; set; } public virtual string Comments { get; set; } public virtual string IpAddress { get; set; } [Required] public virtual int NumberOfBookedSpots { get; set; } public virtual string CommentsToCustomer { get; set; } public virtual DateTime? PaymentExpiration { get; set; } [Required] public virtual bool SendEmailConfirmation { get; set; } public virtual string CancellationCode { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual string RatingCode { get; set; } public virtual string TextField1 { get; set; } public virtual string TextField2 { get; set; } public virtual string TextField3 { get; set; } public virtual string TextField4 { get; set; } public virtual string TextField5 { get; set; } public virtual string TextField6 { get; set; } public virtual string TextField7 { get; set; } public virtual string TextField8 { get; set; } public virtual string TextField9 { get; set; } public virtual string TextField10 { get; set; } public virtual string TextField11 { get; set; } public virtual string TextField12 { get; set; } public virtual string TextField13 { get; set; } public virtual string TextField14 { get; set; } public virtual string TextField15 { get; set; } public virtual string TextField16 { get; set; } public virtual string TextField17 { get; set; } public virtual string TextField18 { get; set; } public virtual string TextField19 { get; set; } public virtual string TextField20 { get; set; } [Required] public virtual DateTime From { get; set; } [Required] public virtual DateTime To { get; set; } } public partial class BookingLog : BaseModel { [References(typeof(BokaMera.API.ServiceModel.Db.BookingLogEventType))] public virtual int EventTypeId { get; set; } public virtual BookingLogEventType EventType { get; set; } [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual int BookingId { get; set; } public virtual int Id { get; set; } public virtual string Comments { get; set; } public virtual string UserId { get; set; } [Required] public virtual DateTime Created { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class BookingLogEventType : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int Id { get; set; } } public partial class BookingPrice : BaseModel { public BookingPrice() { AppliedCodes = new List{}; } [References(typeof(BokaMera.API.ServiceModel.Db.Currency))] public virtual string CurrencyId { get; set; } public virtual int? PriceId { get; set; } public virtual Currency CurrencyInfo { get; set; } [Ignore] public virtual string PriceText { get; set; } [Ignore] public virtual List AppliedCodes { get; set; } [Ignore] public virtual bool IsRebate { get; set; } [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual int BookingId { get; set; } [Required] public virtual int Quantity { get; set; } public virtual double? Price { get; set; } public virtual decimal? VAT { get; set; } public virtual string Category { get; set; } [Required] public virtual DateTime Updated { get; set; } [Required] public virtual DateTime Created { get; set; } [Required] public virtual bool Invoiced { get; set; } [Required] public virtual bool OccupiesSpot { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class BookingSettings : BaseModel { public BookingSettings() { ScheduleViewOptions = new List{}; WeekNumberSettingOptions = new List{}; BookingTemplateOptions = new List{}; CalendarTypeOptions = new List{}; FreeSpotTextOptions = new List{}; BookingStatusOptions = new List{}; } [References(typeof(BokaMera.API.ServiceModel.Db.FreeSpotTexts))] public virtual int FreeSpotTextsId { get; set; } [Ignore] public virtual bool SendEmailConfirmation { get; set; } [Ignore] public virtual List ScheduleViewOptions { get; set; } [Ignore] public virtual List WeekNumberSettingOptions { get; set; } [Ignore] public virtual List BookingTemplateOptions { get; set; } [Ignore] public virtual List CalendarTypeOptions { get; set; } [Ignore] public virtual List FreeSpotTextOptions { get; set; } [Ignore] public virtual List BookingStatusOptions { get; set; } public virtual FreeSpotTexts FreeSpotTextsInfo { get; set; } [Ignore] public virtual string FreeSpotsTextSingular { get; set; } [Ignore] public virtual string FreeSpotsTextPlural { get; set; } [Required] public virtual int BookingStatusId { get; set; } [Required] public virtual int ScheduleViewId { get; set; } [Required] public virtual int BookingTemplateId { get; set; } [Required] public virtual int CalendarTypeId { get; set; } [Required] public virtual bool AllowBookingOnUnbookedTimes { get; set; } [Required] public virtual bool SendEmailReminder { get; set; } [Required] public virtual bool SendSmsReminder { get; set; } [Required] public virtual bool SendSmsConfirmation { get; set; } [Required] public virtual int EmailReminderTime { get; set; } [Required] public virtual int SmsReminderTime { get; set; } [Required] public virtual int MaxActiveBookings { get; set; } [Required] public virtual bool SendNotifications { get; set; } public virtual string SendNotificationsEmail { get; set; } [Required] public virtual bool EnableMobileApp { get; set; } public virtual TimeSpan? ScheduleStartTime { get; set; } public virtual TimeSpan? ScheduleEndTime { get; set; } public virtual string ReceiptTemplate { get; set; } [Required] public virtual int ScheduleTimeSlotMinutes { get; set; } [Required] public virtual bool ShowFreeTimesLeft { get; set; } [Required] public virtual bool EnableICalGroupBookings { get; set; } public virtual string AgreementTemplate { get; set; } [Required] public virtual bool ScheduleShowTimeExeptions { get; set; } [Required] public virtual bool EnableBookingsOnSameTime { get; set; } [Required] public virtual int ShowWeekNumberSettingId { get; set; } [Required] public virtual bool EnableShowBookedTimes { get; set; } [Required] public virtual bool EnableSendFollowUpMessage { get; set; } [Required] public virtual int FollowUpMessageTime { get; set; } public virtual string MessageText { get; set; } [Required] public virtual bool ScheduleGroupResources { get; set; } [Required] public virtual int BookSpotUserResponseMinutes { get; set; } [Required] public virtual bool IsBookSpotDirectly { get; set; } [Required] public virtual int BookSpotDirectlyTimeLeftMinutes { get; set; } [Required] public virtual bool SendEmailNotificationQueue { get; set; } [Required] public virtual bool SendSMSNotificationQueue { get; set; } [Required] public virtual bool SchedulerDisableHorizontalScrolling { get; set; } [Required] public virtual bool BookOnlyOnExistingCustomers { get; set; } [Required] public virtual bool AutoGenerateUniquePinCode { get; set; } [Required] public virtual bool WeightedPrices { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual bool AutoCreateUserProfile { get; set; } public virtual bool ShowMultipleResourcesAsOne { get; set; } public virtual bool ShowMultiDayAsTime { get; set; } [Required] public virtual Guid Id { get; set; } } public partial class BookingStatus : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual string Color { get; set; } [Required] public virtual string Icon { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class BookingStatusOptions { public virtual int Id { get; set; } public virtual string Name { get; set; } public virtual string Description { get; set; } } public partial class BookingTemplate : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual string UsedByApplication { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class CalendarExport : BaseModel { [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual int BookingId { get; set; } [Required] public virtual int ExceptionId { get; set; } public virtual bool? CalendarSync { get; set; } public virtual string CalendarId { get; set; } public virtual bool? IsExceptionDeleted { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class CalendarType : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual bool Active { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class CodeLockSetting : BaseModel { public CodeLockSetting() { CodeLockSystemOptions = new List{}; } [Ignore] public virtual List CodeLockSystemOptions { get; set; } [Required] public virtual bool Active { get; set; } [Required] public virtual int CodeLockSystemsId { get; set; } [Required] public virtual int ValidBeforeMinutes { get; set; } [Required] public virtual int ValidAfterMinutes { get; set; } [Required] public virtual bool DeleteOldBySchedule { get; set; } [Required] public virtual DateTime Created { get; set; } [Required] public virtual DateTime Updated { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual bool SendEmailNotification { get; set; } [Required] public virtual bool SendSMSNotification { get; set; } [Required] public virtual short EmailNotificationTime { get; set; } [Required] public virtual short SMSNotificationTime { get; set; } [Required] public virtual Guid Id { get; set; } } public partial class CodeLockSystem : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Supplier { get; set; } public virtual string LogoType { get; set; } [Required] public virtual string Description { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int Id { get; set; } } public partial class Company : BaseModel { public Company() { Ratings = new List{}; Licenses = new List{}; ActiveLicenses = new List{}; } [Ignore] public virtual CompanyStatus Status { get; set; } [Ignore] public virtual bool Active { get; set; } [Ignore] public virtual IList CustomerCustomFieldsConfig { get; set; } [Ignore] public virtual string BookingAgreements { get; set; } [Ignore] public virtual BookingSettings BookingSettings { get; set; } [Ignore] public virtual CompanyType CompanyType { get; set; } [Ignore] public virtual CodeLockSetting CodeLockSettings { get; set; } [Ignore] public virtual PaymentSetting PaymentSettings { get; set; } [Ignore] public virtual CompanySetting Settings { get; set; } [Ignore] public virtual HomepageWidgetSetting WidgetSettings { get; set; } [Ignore] public virtual HomepageSetting HomepageSettings { get; set; } [Ignore] public virtual AverageRatingScore RatingScore { get; set; } [Ignore] public virtual List Ratings { get; set; } [Ignore] public virtual double? Distance { get; set; } [Ignore] public virtual List Licenses { get; set; } [Ignore] public virtual List ActiveLicenses { get; set; } [Ignore] public virtual License CurrentLicense { get; set; } [Ignore] public virtual bool IsFreeAccount { get; set; } [Ignore] public virtual CultureInfo DefaultLanguage { get; set; } public virtual CompanyCategory Category { get; set; } [Ignore] public virtual double Lat { get; set; } [Ignore] public virtual double Lon { get; set; } [Ignore] public virtual bool IsFavorite { get; set; } [Ignore] public virtual IList ExternalReferences { get; set; } [Required] public virtual string OrganisationNumber { get; set; } [Required] public virtual int StatusId { get; set; } [Required] public virtual int CategoryId { get; set; } [Required] public virtual string SitePath { get; set; } [Required] public virtual string Name { get; set; } public virtual string Street1 { get; set; } public virtual string Street2 { get; set; } public virtual string ZipCode { get; set; } public virtual string City { get; set; } public virtual string OpeningHours { get; set; } public virtual string FaxNumber { get; set; } [Required] public virtual string Email { get; set; } public virtual string Phone { get; set; } public virtual string Details { get; set; } public virtual string LogoType { get; set; } [Required] public virtual bool ApprovedByAdmin { get; set; } [Required] public virtual DateTime Updated { get; set; } [Required] public virtual DateTime Created { get; set; } public virtual string IpAddress { get; set; } public virtual string Homepage { get; set; } public virtual string DomainName { get; set; } [Required] public virtual string CountryId { get; set; } [Required] public virtual int CompanyOwnerId { get; set; } public virtual int? TypeId { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual Guid Id { get; set; } } public partial class CompanyCategory : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Header { get; set; } [Required] public virtual string Description { get; set; } public virtual Uri ImageUrl { get; set; } [Required] public virtual bool Active { get; set; } public virtual int? SortOrder { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class CompanySetting : BaseModel { public CompanySetting() { Languages = new List{}; } [Ignore] public virtual List Languages { get; set; } [Required] public virtual bool Active { get; set; } public virtual string InactiveMessage { get; set; } [Required] public virtual bool Searchable { get; set; } public virtual string GATrackingId { get; set; } public virtual string FacebookPixelId { get; set; } [Required] public virtual bool MultiLanguage { get; set; } [Required] public virtual bool EnableAPITranslation { get; set; } [Required] public virtual string DefaultLanguage { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual string GTMTrackingId { get; set; } [Required] public virtual bool ShowOnMarketPlace { get; set; } public virtual string GoogleAdsConversionId { get; set; } public virtual string LinkedinTagId { get; set; } public virtual string GoogleAdsConversionLabel { get; set; } public virtual bool SendCustomerInformationToExternalProviders { get; set; } [Required] public virtual Guid Id { get; set; } } public partial class CompanyType : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int Id { get; set; } } public partial class CompanyUser : BaseModel, IUser, IBaseModelCreated, IBaseModelUpdated { public CompanyUser() { Roles = new List{}; } public virtual Resource Resource { get; set; } [Ignore] public virtual List Roles { get; set; } public virtual string Email { get; set; } public virtual int? ResourceId { get; set; } public virtual string WorkerId { get; set; } [Required] public virtual bool Active { get; set; } [Required] public virtual bool IsSuperAdmin { get; set; } [Required] public virtual DateTime CreatedDate { get; set; } [Required] public virtual DateTime UpdatedDate { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual Guid Id { get; set; } public virtual Guid UserId { get; set; } public virtual string Firstname { get; set; } public virtual string Lastname { get; set; } public virtual string Phone { get; set; } } public partial class Country : BaseModel { [References(typeof(BokaMera.API.ServiceModel.Db.Currency))] public virtual string CurrencyId { get; set; } public virtual Currency CurrencyInfo { get; set; } [Required] public virtual string Name { get; set; } public virtual string Culture { get; set; } public virtual string TimeZone { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual string Id { get; set; } } public partial class Currency : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string CurrencySign { get; set; } [Required] public virtual bool Active { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual string Id { get; set; } } public partial class Customer : BaseModel, IUser, ICustomFieldTable { public virtual int IdentityId { get; set; } public virtual Guid Id { get; set; } [Ignore] public virtual Guid CustomerId { get; set; } [Ignore] public virtual IList AccessKeys { get; set; } public virtual string Email { get; set; } [Ignore] public virtual IList ExternalReferences { get; set; } [Ignore] public virtual Company Company { get; set; } [Ignore] public virtual IList CustomFieldsConfig { get; set; } [Ignore] public virtual IList CustomFieldsData { get; set; } [Ignore] public virtual IList Comments { get; set; } [Ignore] public virtual IList RebateCodes { get; set; } public virtual string Firstname { get; set; } [Ignore] public virtual string FullName { get; set; } [Ignore] public virtual string ImageUrl { get; set; } [Required] public virtual bool Active { get; set; } public virtual string FacebookUsername { get; set; } [Required] public virtual DateTime Updated { get; set; } [Required] public virtual DateTime Created { get; set; } public virtual string IpAddress { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual string TextField1 { get; set; } public virtual string TextField2 { get; set; } public virtual string TextField3 { get; set; } public virtual string TextField4 { get; set; } public virtual string TextField5 { get; set; } public virtual string TextField6 { get; set; } public virtual string TextField7 { get; set; } public virtual string TextField8 { get; set; } public virtual string TextField9 { get; set; } public virtual string TextField10 { get; set; } public virtual string TextField11 { get; set; } public virtual string TextField12 { get; set; } public virtual string TextField13 { get; set; } public virtual string TextField14 { get; set; } public virtual string TextField15 { get; set; } public virtual string TextField16 { get; set; } public virtual string TextField17 { get; set; } public virtual string TextField18 { get; set; } public virtual string TextField19 { get; set; } public virtual string TextField20 { get; set; } public virtual Guid UserId { get; set; } public virtual string Lastname { get; set; } public virtual string Phone { get; set; } public virtual string CorporateIdentityNumber { get; set; } public virtual string InvoiceAddress1 { get; set; } public virtual string InvoiceAddress2 { get; set; } public virtual string InvoiceCity { get; set; } public virtual string InvoicePostalCode { get; set; } public virtual string InvoiceCountryCode { get; set; } [Required] public virtual Guid CompanyId { get; set; } public virtual bool SubscribedToNewsletter { get; set; } } public partial class CustomField : BaseModel { [Required] public virtual string Table { get; set; } [Required] public virtual string Column { get; set; } [Required] public virtual string DataType { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual bool Active { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class CustomFieldConfig : BaseModel { public CustomFieldConfig() { Values = new List{}; Services = new List{}; CustomFieldServiceRelation = new List{}; } [Ignore] public virtual List Values { get; set; } public virtual CustomField CustomField { get; set; } [Ignore] public virtual RegEx RegEx { get; set; } [Ignore] public virtual List Services { get; set; } public virtual List CustomFieldServiceRelation { get; set; } [Required] public virtual Guid CompanyId { get; set; } public virtual int Id { get; set; } public virtual int? GroupId { get; set; } [Required] public virtual int FieldId { get; set; } [Required] public virtual int IconId { get; set; } public virtual int? RegExId { get; set; } [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual string Datatype { get; set; } [Required] public virtual int MaxLength { get; set; } [Required] public virtual bool IsPublic { get; set; } [Required] public virtual bool IsHidden { get; set; } [Required] public virtual bool IsMandatory { get; set; } public virtual string DefaultValue { get; set; } public virtual string RegExErrorMessage { get; set; } public virtual string MandatoryErrorMessage { get; set; } public virtual int? Width { get; set; } [Required] public virtual bool MultipleLineText { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class CustomFieldServiceRelation : BaseModel { [Required] public virtual Guid CompanyId { get; set; } public virtual int Id { get; set; } [Required] public virtual int CustomFieldConfigId { get; set; } [Required] public virtual int ServiceId { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class CustomFieldValue : BaseModel { [Required] public virtual Guid CompanyId { get; set; } public virtual int Id { get; set; } [Required] public virtual string Value { get; set; } [Required] public virtual bool Active { get; set; } public virtual short? SortOrder { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class DaysOfWeek : BaseModel { [Required] public virtual string DayOfWeek { get; set; } [Required] public virtual string DayOfWeekTranslation { get; set; } public virtual bool? DayOfWeekActive { get; set; } public virtual short? DayOfWeekSortOrder { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class ExternalReference : BaseModel { [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual Guid Id { get; set; } [Required] public virtual Guid OwnerId { get; set; } [Required] public virtual string ReferenceType { get; set; } public virtual string ExternalData { get; set; } public virtual string CreatedBy { get; set; } [Required] public virtual DateTime Updated { get; set; } [Required] public virtual DateTime Created { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class FreeSpotTexts : BaseModel { [Required] public virtual string TextSingular { get; set; } [Required] public virtual string TextPlural { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int Id { get; set; } } public partial class HeroSectionStyle : BaseModel { [Required] public virtual string Name { get; set; } public virtual string Description { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int Id { get; set; } } public partial class HomepageSetting : BaseModel, ICompany { public HomepageSetting() { HomepageTemplateOptions = new List{}; HomepageHeroSectionStyleOptions = new List{}; } [Ignore] public virtual List HomepageTemplateOptions { get; set; } [Ignore] public virtual List HomepageHeroSectionStyleOptions { get; set; } [Ignore] public virtual Guid? CompanyId { get; set; } public virtual string WelcomePageHeading { get; set; } public virtual string WelcomePageBody { get; set; } public virtual string AboutUsPageHeading { get; set; } public virtual string AboutUsPageBody { get; set; } [Required] public virtual int HomePageTemplateId { get; set; } public virtual string ImageUrl { get; set; } [Required] public virtual DateTime Updated { get; set; } [Required] public virtual DateTime Created { get; set; } public virtual string HomepageHeading { get; set; } [Required] public virtual int HeroSectionStyleId { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual bool ShowRating { get; set; } [Required] public virtual bool EnableHomepage { get; set; } [Required] public virtual Guid Id { get; set; } } public partial class HomepageTemplate : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } public virtual Uri ImageUrl { get; set; } [Required] public virtual bool Premium { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class HomepageWidgetSetting : BaseModel { public HomepageWidgetSetting() { WidgetServiceLayoutOptions = new List{}; WidgetTimeLayoutOptions = new List{}; WidgetBookingLayoutOptions = new List{}; WidgetBookingMethodOptions = new List{}; } [Ignore] public virtual List WidgetServiceLayoutOptions { get; set; } [Ignore] public virtual List WidgetTimeLayoutOptions { get; set; } [Ignore] public virtual List WidgetBookingLayoutOptions { get; set; } [Ignore] public virtual List WidgetBookingMethodOptions { get; set; } [Required] public virtual int ServiceLayoutId { get; set; } [Required] public virtual int TimeLayoutId { get; set; } [Required] public virtual int BookingLayoutId { get; set; } [Required] public virtual string PrimaryColor { get; set; } [Required] public virtual bool ShowServiceImage { get; set; } [Required] public virtual bool ShowNextAvailableTime { get; set; } [Required] public virtual bool ShowEndTime { get; set; } public virtual string BookedTimeSlotText { get; set; } [Required] public virtual bool DarkTheme { get; set; } [Required] public virtual bool ShowRebateCodeField { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual bool EnableCreateAccount { get; set; } [Required] public virtual bool EnableLogin { get; set; } [Required] public virtual bool EnableDirectBooking { get; set; } [Required] public virtual bool EnableFacebookLogin { get; set; } [Required] public virtual bool ShowSubscribeToNewsletter { get; set; } [Required] public virtual Guid Id { get; set; } } public partial interface IBaseModelCreated { DateTime CreatedDate { get; set; } } public partial interface IBaseModelUpdated { DateTime UpdatedDate { get; set; } } public partial class License : BaseModel { public virtual LicenseType Type { get; set; } [Required] public virtual Guid CompanyId { get; set; } public virtual int Id { get; set; } [Required] public virtual int TypeId { get; set; } [Required] public virtual DateTime ValidFrom { get; set; } [Required] public virtual DateTime ValidTo { get; set; } [Required] public virtual bool Active { get; set; } [Required] public virtual DateTime Updated { get; set; } [Required] public virtual DateTime Created { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual string MetaData { get; set; } } public partial class LicensePrice : BaseModel { [Ignore] public virtual Country Country { get; set; } [Ignore] public virtual bool MonthlyPayment { get; set; } [Required] public virtual int LicenseTypeId { get; set; } [Required] public virtual string CountryId { get; set; } [Required] public virtual int Price { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class LicenseType : BaseModel { [Ignore] public virtual IList LicenseItems { get; set; } [Ignore] public virtual IList Prices { get; set; } [Ignore] public virtual int PeriodOfNoticeDays { get; set; } [Ignore] public virtual LicenseType NextLicenseOption { get; set; } [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual bool ExtraLicenseOption { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual bool Active { get; set; } public virtual int Id { get; set; } } public partial class LicenseTypeItem : BaseModel { [Ignore] public virtual string Name { get; set; } [Ignore] public virtual LicenseType LicenseType { get; set; } [Required] public virtual int LicenseTypesId { get; set; } [Required] public virtual int LicenseItemsId { get; set; } [Required] public virtual int NumberOfItems { get; set; } public virtual int Id { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class PayableEntity : BaseModel { public PayableEntity() { PaymentLog = new List{}; Customers = new List{}; } [Ignore] public virtual IDbConnectionFactory DbFactory { get; set; } [Ignore] public virtual IBokameraPaymentManager QvicklyPaymentManager { get; set; } [Ignore] public virtual IBokameraPaymentManager Payson2PaymentManager { get; set; } [Ignore] public virtual IBokameraPaymentManager StripePaymentManager { get; set; } [Ignore] public virtual IPaysonPaymentCheckout1 PaysonPaymentCheckout1 { get; set; } [Ignore] public virtual ILogger Logger { get; set; } [Ignore] public virtual string InternalReferenceId { get; set; } [Ignore] public virtual List PaymentLog { get; set; } public virtual Guid CompanyId { get; set; } public virtual decimal? PriceVat { get; set; } [References(typeof(BokaMera.API.ServiceModel.Db.Currency))] public virtual string CurrencyId { get; set; } [Ignore] public virtual Customer Customer { get; set; } [Ignore] public virtual List Customers { get; set; } [Ignore] public virtual Company Company { get; set; } } public partial class PaymentDetails : BaseModel, IBaseModelCreated, IBaseModelUpdated { [Ignore] public virtual QvicklyCheckoutResponse QvicklyCheckoutSerialized { get; set; } [Ignore] public virtual Payson2CheckoutResponse Payson2CheckoutSerialized { get; set; } [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual string InternalReferenceId { get; set; } [Required] public virtual int ArticleTypeId { get; set; } [Required] public virtual string ExternalResponseData { get; set; } [Required] public virtual string ExternalResponseReference { get; set; } [Required] public virtual int PaymentProviderId { get; set; } [Required] public virtual DateTime CreatedDate { get; set; } [Required] public virtual DateTime UpdatedDate { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class PaymentLog : BaseModel { [References(typeof(BokaMera.API.ServiceModel.Db.Currency))] public virtual string CurrencyId { get; set; } public virtual Currency CurrencyInfo { get; set; } [Required] public virtual Guid CompanyId { get; set; } public virtual int Id { get; set; } [Required] public virtual string InternalReferenceId { get; set; } [Required] public virtual int ArticleTypeId { get; set; } public virtual string PaymentReferenceId { get; set; } public virtual int? PaymentProviderId { get; set; } public virtual string OrderItemReferenceId { get; set; } public virtual double? Amount { get; set; } public virtual decimal? VAT { get; set; } public virtual double? AmountCredited { get; set; } public virtual string Comments { get; set; } [Required] public virtual DateTime Created { get; set; } [Required] public virtual DateTime Updated { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class PaymentProviders : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual string Category { get; set; } public virtual string Url { get; set; } [Required] public virtual bool Active { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int Id { get; set; } } public partial class PaymentSetting : BaseModel { public PaymentSetting() { AdminPaymentOptions = new List{}; PaymentProviderOptions = new List{}; } public virtual AdminPaymentOptions AdminPaymentOption { get; set; } [Ignore] public virtual List AdminPaymentOptions { get; set; } [Ignore] public virtual List PaymentProviderOptions { get; set; } [Required] public virtual bool Enabled { get; set; } [Required] public virtual int InvoiceFee { get; set; } [Required] public virtual bool AllowCreditCardPayment { get; set; } [Required] public virtual bool AllowInvoicePayment { get; set; } [Required] public virtual bool AllowBankPayment { get; set; } [Required] public virtual bool GuaranteeOffered { get; set; } [Required] public virtual bool RefundOnCancelBooking { get; set; } public virtual int? DefaultPaymentOptionId { get; set; } [Required] public virtual int PaymentProviderId { get; set; } [Required] public virtual bool SendPaymentRequestDirectly { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual Guid Id { get; set; } } public partial class PriceMapping : BaseModel { [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual Guid Id { get; set; } [Required] public virtual int PriceId { get; set; } public virtual string ReferenceType { get; set; } public virtual string ExternalReference { get; set; } [Required] public virtual DateTime UpdatedDate { get; set; } [Required] public virtual DateTime CreatedDate { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class Rating : BaseModel { public virtual Guid? ReviewId { get; set; } public virtual Review Review { get; set; } [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual int BookingId { get; set; } [Required] public virtual int RatingScore { get; set; } [Required] public virtual int Status { get; set; } [Required] public virtual DateTime Created { get; set; } [Required] public virtual DateTime Updated { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class RebateCode : PayableEntity { public RebateCode() { Services = new List{}; RebateCodeDayOfWeekRelation = new List{}; RebateCodeServiceRelation = new List{}; RebateCodeBookingPriceRelation = new List{}; RebateCodeCustomerRelation = new List{}; DaysOfWeek = new List{}; Transactions = new List{}; } [References(typeof(BokaMera.API.ServiceModel.Db.RebateCodeType))] public virtual int RebateCodeTypeId { get; set; } public virtual RebateCodeType RebateCodeTypeInfo { get; set; } [References(typeof(BokaMera.API.ServiceModel.Db.RebateCodeStatus))] public virtual int RebateCodeStatusId { get; set; } public virtual RebateCodeStatus RebateCodeStatusInfo { get; set; } [Ignore] public virtual Article Article { get; set; } [Ignore] public virtual List Services { get; set; } public virtual List RebateCodeDayOfWeekRelation { get; set; } public virtual List RebateCodeServiceRelation { get; set; } public virtual List RebateCodeBookingPriceRelation { get; set; } public virtual List RebateCodeCustomerRelation { get; set; } [Ignore] public virtual string ServicesNames { get; set; } [Ignore] public virtual List DaysOfWeek { get; set; } [Ignore] public virtual RebateCodeStatus RebateCodeStatus { get; set; } [Ignore] public virtual RebateCodeType RebateCodeType { get; set; } [Ignore] public virtual List Transactions { get; set; } [Ignore] public virtual double? RemainingAmount { get; set; } [Ignore] public virtual int? RemainingUsage { get; set; } [Ignore] public virtual int CurrentNumberOfUsesPerCustomer { get; set; } [Ignore] public virtual bool IsSpecificByDayOfWeek { get; set; } [Ignore] public virtual bool Active { get; set; } [Ignore] public virtual bool ActiveByStatus { get; set; } [Ignore] public virtual string RebateCodeCurrencySign { get; set; } public virtual Currency CurrencyInfo { get; set; } [Ignore] public virtual bool PaymentReceived { get; set; } [Ignore] public virtual string InternalReferenceId { get; set; } [Required] public virtual DateTime ValidFrom { get; set; } [Required] public virtual DateTime ValidTo { get; set; } [Required] public virtual string RebateCodeSign { get; set; } [Required] public virtual int RebateCodeValue { get; set; } [Required] public virtual int MaxNumberOfUses { get; set; } [Required] public virtual int MaxNumberOfUsesPerCustomer { get; set; } [Required] public virtual int NumberOfUsesUsed { get; set; } public virtual string PersonalNote { get; set; } [Required] public virtual string CreatedBy { get; set; } [Required] public virtual DateTime Created { get; set; } [Required] public virtual string UpdatedBy { get; set; } [Required] public virtual DateTime UpdatedDate { get; set; } [Required] public virtual TimeSpan FromTime { get; set; } [Required] public virtual TimeSpan ToTime { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } public virtual int? ArticleId { get; set; } } public partial class RebateCodeBookingPriceRelation : BaseModel { [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual int PriceId { get; set; } [Required] public virtual int RebateCodeId { get; set; } public virtual int Id { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class RebateCodeCustomerRelation : BaseModel { [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual Guid CustomerId { get; set; } [Required] public virtual int RebateCodeId { get; set; } public virtual int Id { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual bool RebateCodeEmailSentToCustomer { get; set; } public virtual string MessageToReceiver { get; set; } public virtual bool Buyer { get; set; } } public partial class RebateCodeDayOfWeekRelation : BaseModel { [Ignore] public virtual BokaMeraDayOfWeek DayOfWeek { get; set; } [Required] public virtual int DayOfWeekId { get; set; } [Required] public virtual int RebateCodeId { get; set; } [Required] public virtual Guid CompanyId { get; set; } public virtual int Id { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class RebateCodeServiceRelation : BaseModel { [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual int ServiceId { get; set; } [Required] public virtual int RebateCodeId { get; set; } public virtual int Id { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class RebateCodeStatus : BaseModel { [Required] public virtual string Name { get; set; } public virtual string Description { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class RebateCodeTransaction : BaseModel, IBaseModelCreated, IBaseModelUpdated { [Ignore] public virtual Booking Booking { get; set; } [Ignore] public virtual RebateCode RebateCode { get; set; } [Ignore] public virtual Customer Customer { get; set; } public virtual int Id { get; set; } public virtual Guid CompanyId { get; set; } public virtual string Note { get; set; } [Required] public virtual int RebateCodeId { get; set; } [Required] public virtual double Amount { get; set; } [Required] public virtual int Usage { get; set; } public virtual int? BookingId { get; set; } [Required] public virtual DateTime UpdatedDate { get; set; } [Required] public virtual DateTime CreatedDate { get; set; } } public partial class RebateCodeType : BaseModel { [Required] public virtual string Name { get; set; } public virtual string Description { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class RegEx : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual string RegExCode { get; set; } public virtual string ErrorMessage { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class Resource : BaseModel, ICustomFieldTable, IBaseModelCreated, IBaseModelUpdated { [Ignore] public virtual int Priority { get; set; } [Ignore] public virtual IList Schedules { get; set; } [Ignore] public virtual IList Exceptions { get; set; } [Ignore] public virtual IList Bookings { get; set; } [Ignore] public virtual IList CustomFieldsConfig { get; set; } [Ignore] public virtual IList CustomFieldsData { get; set; } [Required] public virtual Guid CompanyId { get; set; } public virtual int Id { get; set; } [Required] public virtual string Name { get; set; } [Required] public virtual bool Active { get; set; } public virtual string Description { get; set; } public virtual string ImageUrl { get; set; } [Required] public virtual DateTime UpdatedDate { get; set; } [Required] public virtual DateTime CreatedDate { get; set; } [Required] public virtual string Color { get; set; } public virtual string Email { get; set; } public virtual string MobilePhone { get; set; } public virtual bool? EmailNotification { get; set; } public virtual bool? SMSNotification { get; set; } [Required] public virtual bool SendSMSReminder { get; set; } [Required] public virtual bool SendEmailReminder { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual string AccessGroup { get; set; } public virtual string TextField1 { get; set; } public virtual string TextField2 { get; set; } public virtual string TextField3 { get; set; } public virtual string TextField4 { get; set; } public virtual string TextField5 { get; set; } public virtual string TextField6 { get; set; } public virtual string TextField7 { get; set; } public virtual string TextField8 { get; set; } public virtual string TextField9 { get; set; } public virtual string TextField10 { get; set; } public virtual string TextField11 { get; set; } public virtual string TextField12 { get; set; } public virtual string TextField13 { get; set; } public virtual string TextField14 { get; set; } public virtual string TextField15 { get; set; } public virtual string TextField16 { get; set; } public virtual string TextField17 { get; set; } public virtual string TextField18 { get; set; } public virtual string TextField19 { get; set; } public virtual string TextField20 { get; set; } } public partial class ResourceType : BaseModel, IBaseModelCreated, IBaseModelUpdated { public ResourceType() { Resources = new List{}; } [Ignore] public virtual bool SelectableByUser { get; set; } [Ignore] public virtual List Resources { get; set; } [Required] public virtual Guid CompanyId { get; set; } public virtual int Id { get; set; } [Required] public virtual string Name { get; set; } public virtual string Description { get; set; } [Required] public virtual bool Active { get; set; } [Required] public virtual DateTime UpdatedDate { get; set; } [Required] public virtual DateTime CreatedDate { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } } public partial class Review : BaseModel { public virtual Guid ReviewId { get; set; } [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual string Title { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual string Author { get; set; } [Required] public virtual int Status { get; set; } [Required] public virtual DateTime Created { get; set; } [Required] public virtual DateTime Updated { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual string ReviewAnswer { get; set; } } public partial class ScheduleView : BaseModel { [Required] public virtual string Name { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class Service : BaseModel, ICustomFieldTable, IBaseModelCreated, IBaseModelUpdated { public Service() { ResourceTypes = new List{}; Prices = new List{}; BookingStatusOptions = new List{}; Ratings = new List{}; } [Ignore] public virtual List ResourceTypes { get; set; } [Ignore] public virtual IEnumerable Resources { get; set; } [Ignore] public virtual TotalPriceInformation TotalPrice { get; set; } [Ignore] public virtual List Prices { get; set; } [Ignore] public virtual List BookingStatusOptions { get; set; } [Ignore] public virtual bool IsGroupBooking { get; set; } [Ignore] public virtual bool IsMultipleResource { get; set; } [Ignore] public virtual BookingSettings Settings { get; set; } [Ignore] public virtual PaymentSetting PaymentSetting { get; set; } [Ignore] public virtual IList BookingCustomFieldsConfig { get; set; } [Ignore] public virtual IList CustomerCustomFieldsConfig { get; set; } [Ignore] public virtual IList CustomFieldsConfig { get; set; } [Ignore] public virtual IList CustomFieldsData { get; set; } [Ignore] public virtual IList Schedules { get; set; } [Ignore] public virtual IList CustomerActiveBookings { get; set; } [Ignore] public virtual ScheduleType ScheduleType { get; set; } [Ignore] public virtual TimeSpan LastTimeToUnbookThreshold { get; set; } [Ignore] public virtual TimeSpan LastTimeToBookThreshold { get; set; } [Ignore] public virtual AverageRatingScore RatingScore { get; set; } [Ignore] public virtual List Ratings { get; set; } [Required] public virtual Guid CompanyId { get; set; } public virtual int Id { get; set; } [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } public virtual string Group { get; set; } [Required] public virtual bool Active { get; set; } [Required] public virtual int SortOrder { get; set; } [Required] public virtual int PauseAfterBooking { get; set; } [Required] public virtual int UnbookBeforeDays { get; set; } [Required] public virtual int UnbookBeforeHours { get; set; } [Required] public virtual int UnbookBeforeMinutes { get; set; } [Required] public virtual int BookBeforeDays { get; set; } [Required] public virtual int BookBeforeHours { get; set; } [Required] public virtual int BookBeforeMinutes { get; set; } public virtual int? Duration { get; set; } public virtual int DurationTypeId { get; set; } public virtual int? MinDuration { get; set; } public virtual int? MaxDuration { get; set; } public virtual int? DurationInterval { get; set; } public virtual int? TotalSpots { get; set; } public virtual string ImageUrl { get; set; } [Required] public virtual int ScheduleTypeId { get; set; } [Required] public virtual DateTime UpdatedDate { get; set; } [Required] public virtual DateTime CreatedDate { get; set; } [Required] public virtual bool OnlyVisibleByAdmin { get; set; } [Required] public virtual int MinNumberOfSpotsPerBooking { get; set; } [Required] public virtual int MaxNumberOfSpotsPerBooking { get; set; } [Required] public virtual int MinNumberOfResourcesToBook { get; set; } [Required] public virtual int MaxNumberOfResourcesToBook { get; set; } [Required] public virtual bool IsPaymentEnabled { get; set; } [Required] public virtual int MaxPaymentTime { get; set; } [Required] public virtual bool LockSpotsToBooking { get; set; } [Required] public virtual bool EnableBookingQueue { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int BookingStatusId { get; set; } [Required] public virtual bool EnableCodeLockSync { get; set; } [Required] public virtual bool EnableCustomerManualPayment { get; set; } public virtual int? PriceViewTypeId { get; set; } public virtual string TextField1 { get; set; } public virtual string TextField2 { get; set; } public virtual string TextField3 { get; set; } public virtual string TextField4 { get; set; } public virtual string TextField5 { get; set; } public virtual string TextField6 { get; set; } public virtual string TextField7 { get; set; } public virtual string TextField8 { get; set; } public virtual string TextField9 { get; set; } public virtual string TextField10 { get; set; } public virtual string TextField11 { get; set; } public virtual string TextField12 { get; set; } public virtual string TextField13 { get; set; } public virtual string TextField14 { get; set; } public virtual string TextField15 { get; set; } public virtual string TextField16 { get; set; } public virtual string TextField17 { get; set; } public virtual string TextField18 { get; set; } public virtual string TextField19 { get; set; } public virtual string TextField20 { get; set; } public partial class TotalPriceInformation { public TotalPriceInformation() { AppliedCodes = new List{}; } public virtual double TotalPrice { get; set; } public virtual double TotalVATAmount { get; set; } public virtual double TotalRebate { get; set; } public virtual double TotalPriceBeforeRebate { get; set; } public virtual List AppliedCodes { get; set; } public virtual string PriceSign { get; set; } public virtual string CurrencyId { get; set; } public virtual decimal VAT { get; set; } } public partial class AppliedRebateCodes { public virtual int RebateCodeId { get; set; } public virtual string RebateCodeSign { get; set; } public virtual int RebateCodeValue { get; set; } public virtual double RebateAmount { get; set; } public virtual RebateCodeType RebateCodeType { get; set; } } } public partial class ServicePrice : BaseModel, IInterval { public ServicePrice() { PriceMappings = new List{}; DayOfWeeks = new List{}; RebateCodesApplied = new List{}; OverlappingPrices = new List{}; } [References(typeof(BokaMera.API.ServiceModel.Db.Currency))] public virtual string CurrencyId { get; set; } public virtual Currency CurrencyInfo { get; set; } [Ignore] public virtual Service Service { get; set; } [Ignore] public virtual List PriceMappings { get; set; } [Ignore] public virtual bool isTimeSpecific { get; set; } [Ignore] public virtual bool isDaysOfWeekSpecific { get; set; } public virtual List DayOfWeeks { get; set; } [Ignore] public virtual double? PriceBeforeRebate { get; set; } [Ignore] public virtual List RebateCodesApplied { get; set; } [Ignore] public virtual string PriceText { get; set; } [Ignore] public virtual List OverlappingPrices { get; set; } [Required] public virtual Guid CompanyId { get; set; } public virtual int Id { get; set; } [Required] public virtual int ServiceId { get; set; } public virtual double? Price { get; set; } [Required] public virtual DateTime Updated { get; set; } [Required] public virtual DateTime Created { get; set; } [Required] public virtual TimeSpan FromTime { get; set; } [Required] public virtual TimeSpan ToTime { get; set; } [Required] public virtual decimal VAT { get; set; } public virtual string Category { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual DateTime From { get; set; } [Required] public virtual DateTime To { get; set; } [Required] public virtual int CalculationTypeId { get; set; } } public partial class ServicePriceDayOfWeekRelation : BaseModel { [Ignore] public virtual BokaMeraDayOfWeek DayOfWeek { get; set; } [Required] public virtual Guid CompanyId { get; set; } [Required] public virtual int ServicePriceId { get; set; } [Required] public virtual int DayOfWeekId { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } public virtual int Id { get; set; } } public partial class WeekNumberSetting : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int Id { get; set; } } public partial class WidgetBookingLayouts : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual string Code { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int Id { get; set; } } public partial class WidgetBookingMethods : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual string Code { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int Id { get; set; } } public partial class WidgetServiceLayouts : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual string Code { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int Id { get; set; } } public partial class WidgetTimeLayouts : BaseModel { [Required] public virtual string Name { get; set; } [Required] public virtual string Description { get; set; } [Required] public virtual string Code { get; set; } public virtual DateTimeOffset? ModifiedDate { get; set; } [Required] public virtual int Id { get; set; } } } namespace BokaMera.API.ServiceModel.Dtos { public partial class BookedCustomer { public virtual Guid Id { get; set; } public virtual string Firstname { get; set; } public virtual string Lastname { get; set; } public virtual string Email { get; set; } public virtual string Phone { get; set; } public virtual string FacebookUserName { get; set; } public virtual string ImageUrl { get; set; } public virtual string CorporateIdentityNumber { get; set; } public virtual string InvoiceAddress1 { get; set; } public virtual string InvoiceAddress2 { get; set; } public virtual string InvoiceCity { get; set; } public virtual string InvoicePostalCode { get; set; } public virtual string InvoiceCountryCode { get; set; } } public partial class BookedResource { public virtual int Id { get; set; } public virtual string Name { get; set; } public virtual string Color { get; set; } public virtual Uri ImageUrl { get; set; } public virtual string Email { get; set; } public virtual string MobilePhone { get; set; } public virtual string AccessGroup { get; set; } public virtual bool EmailNotification { get; set; } public virtual bool SMSNotification { get; set; } public virtual bool EmailReminder { get; set; } public virtual bool SMSReminder { get; set; } } public partial class BookedResourceType { public BookedResourceType() { Resources = new List{}; } /// ///The resource type id /// [ApiMember(Description="The resource type id")] public virtual int Id { get; set; } /// ///The resource type name /// [ApiMember(Description="The resource type name")] public virtual string Name { get; set; } /// ///The resources inside resource type /// [ApiMember(Description="The resources inside resource type")] public virtual List Resources { get; set; } } public partial class CompanyUserQueryResponse { public CompanyUserQueryResponse() { Roles = new List{}; } public virtual Guid Id { get; set; } public virtual Guid CompanyId { get; set; } public virtual string Firstname { get; set; } public virtual string Lastname { get; set; } public virtual string Email { get; set; } public virtual string Phone { get; set; } public virtual string WorkerId { get; set; } public virtual int? ResourceId { get; set; } /// ///The resource information connected to the administrator. /// [ApiMember(Description="The resource information connected to the administrator.")] public virtual CompanyUserResource Resource { get; set; } /// ///The roles that are connected to the administrator. /// [ApiMember(Description="The roles that are connected to the administrator.")] public virtual List Roles { get; set; } public virtual bool Active { get; set; } public virtual DateTime Created { get; set; } public virtual DateTime Updated { get; set; } } public partial class CompanyUserResource { /// ///The resource id /// [ApiMember(Description="The resource id")] public virtual int Id { get; set; } /// ///The resource name /// [ApiMember(Description="The resource name")] public virtual string Name { get; set; } /// ///The resource status /// [ApiMember(Description="The resource status")] public virtual bool Active { get; set; } /// ///The resource description /// [ApiMember(Description="The resource description")] public virtual string Description { get; set; } /// ///The resource email /// [ApiMember(Description="The resource email")] public virtual string Email { get; set; } /// ///The resource phone /// [ApiMember(Description="The resource phone")] public virtual string Phone { get; set; } /// ///The resource color /// [ApiMember(Description="The resource color")] public virtual string Color { get; set; } /// ///The resource image /// [ApiMember(Description="The resource image")] public virtual Uri ImageUrl { get; set; } /// ///If the resource want to receive email notifications /// [ApiMember(Description="If the resource want to receive email notifications")] public virtual bool EmailNotification { get; set; } /// ///If the resource want to receive sms notifications /// [ApiMember(Description="If the resource want to receive sms notifications")] public virtual bool SMSNotification { get; set; } /// ///If the resource want to receive email reminders /// [ApiMember(Description="If the resource want to receive email reminders")] public virtual bool EmailReminder { get; set; } /// ///If the resource want to receive sms reminders /// [ApiMember(Description="If the resource want to receive sms reminders")] public virtual bool SMSReminder { get; set; } } public partial class CompanyUserRolesQueryResponse { public virtual Guid RoleId { get; set; } public virtual string Name { get; set; } public virtual string Description { get; set; } } public partial class CustomFieldDataResponse { public virtual int Id { get; set; } public virtual string Column { get; set; } public virtual string Name { get; set; } public virtual string Description { get; set; } public virtual string Value { get; set; } /// ///Data field of custom field. Valid values are: TextBox, ... Example: 'TextBox' /// [ApiMember(Description="Data field of custom field. Valid values are: TextBox, ... Example: 'TextBox'")] public virtual string DataType { get; set; } } public partial class LanguageResponse { public virtual string Id { get; set; } public virtual string Name { get; set; } } [Route("/superadmin/administrators/", "GET")] [ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)] public partial class SuperAdminCompanyUserQuery : QueryDb, IReturn>, ICompany { /// ///The company id, if empty will use the company id for the user you are logged in with. /// [ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.")] public virtual Guid? CompanyId { get; set; } /// ///If you want to show only active or inactive administrators /// [ApiMember(DataType="boolean", Description="If you want to show only active or inactive administrators", ParameterType="query")] public virtual bool? Active { get; set; } /// ///If you want to include the connected resource for the administrator /// [ApiMember(DataType="boolean", Description="If you want to include the connected resource for the administrator", ParameterType="query")] public virtual bool IncludeResourceInformation { get; set; } /// ///If you want to include the connected roles for the administrator /// [ApiMember(DataType="boolean", Description="If you want to include the connected roles for the administrator", ParameterType="query")] public virtual bool IncludeRolesInformation { get; set; } } } namespace BokaMera.API.ServiceModel.Enums { public enum ArticleTypeEnum { ServiceArticle = 1, StandAloneArticle = 2, RebateCodePunchTicketArticle = 3, RebateCodeGiftCardArticle = 4, RebateCodeValueCardArticle = 5, } public enum BokaMeraDayOfWeek { Monday = 1, Tuesday = 2, Wednesday = 3, Thursday = 4, Friday = 5, Saturday = 6, Sunday = 7, } public enum BookingStatusEnum { Booked = 1, Unbooked = 2, Reserved = 3, Canceled = 4, AwaitingPayment = 5, AwaitingPaymentNoTimeLimit = 6, Payed = 7, AwaitingPaymentRequestFromAdmin = 8, AwaitingPaymentFromProvider = 9, Invoiced = 10, } public enum CompanyStatus { Registered = 1, AwaitingApproval = 2, Approved = 3, Inactive = 4, ClosedDown = 5, NotApproved = 6, } public enum ScheduleType { NotDefined, RecurringSchedule, DateSchedule, } } namespace BokaMera.API.ServiceModel.Helpers.Payment { public partial interface IBokameraPaymentManager { } } namespace BokaMera.API.ServiceModel.Helpers.Payson1Payment { public partial interface IPaysonPaymentCheckout1 { } } namespace BokaMera.API.ServiceModel.Interfaces { public partial interface IBookedTime : IInterval { int Id { get; set; } int ServiceId { get; set; } int BookedSpots { get; set; } int TotalSpots { get; set; } int PauseAfterInMinutes { get; set; } BookingStatusEnum Status { get; set; } int StatusId { get; set; } BookedCustomer Customer { get; set; } } public partial interface ICompany { Guid? CompanyId { get; set; } } public partial interface ICustomFieldTable { IList CustomFieldsConfig { get; set; } IList CustomFieldsData { get; set; } string TextField1 { get; set; } string TextField2 { get; set; } string TextField3 { get; set; } string TextField4 { get; set; } string TextField5 { get; set; } string TextField6 { get; set; } string TextField7 { get; set; } string TextField8 { get; set; } string TextField9 { get; set; } string TextField10 { get; set; } string TextField11 { get; set; } string TextField12 { get; set; } string TextField13 { get; set; } string TextField14 { get; set; } string TextField15 { get; set; } string TextField16 { get; set; } string TextField17 { get; set; } string TextField18 { get; set; } string TextField19 { get; set; } string TextField20 { get; set; } } public partial interface IInterval { DateTime From { get; set; } DateTime To { get; set; } } public partial interface ISchedule { IList Resources { get; set; } ScheduleType Type { get; set; } bool Active { get; set; } bool IsResourceSpecific { get; set; } } public partial interface ITimeException : IInterval { int Id { get; set; } string ReasonText { get; set; } bool IsBlock { get; set; } string ReasonTextPublic { get; set; } bool IsRecurring { get; set; } int[] ResourceIds { get; set; } } public partial interface IUser { Guid Id { get; set; } Guid UserId { get; set; } string Email { get; set; } string Firstname { get; set; } string Lastname { get; set; } string Phone { get; set; } } } namespace BokaMera.API.ServiceModel.Security { public partial class KeyCloakRole { public virtual Guid Id { get; set; } public virtual string Name { get; set; } } } namespace Microsoft.Extensions.Logging { public partial interface ILogger { } public partial interface ILogger : ILogger { } } namespace PaysonIntegrationCO2.Models { public partial class Customer { public virtual string City { get; set; } public virtual string CountryCode { get; set; } public virtual string IdentityNumber { get; set; } public virtual string Email { get; set; } public virtual string FirstName { get; set; } public virtual string LastName { get; set; } public virtual string Phone { get; set; } public virtual string PostalCode { get; set; } public virtual string Street { get; set; } public virtual string Reference { get; set; } public virtual CustomerType Type { get; set; } } public partial class Gui { public virtual ColorScheme ColorScheme { get; set; } public virtual string Locale { get; set; } public virtual bool RequestPhone { get; set; } public virtual bool PhoneOptional { get; set; } } public partial class History { public virtual DateTime? Created { get; set; } public virtual DateTime? ReadyToPay { get; set; } public virtual DateTime? ReadyToShip { get; set; } public virtual DateTime? Shipped { get; set; } public virtual DateTime? PaidToAccount { get; set; } public virtual DateTime? Canceled { get; set; } public virtual DateTime? Expired { get; set; } public virtual DateTime? Denied { get; set; } } public partial class Item { public virtual Guid ItemId { get; set; } public virtual decimal DiscountRate { get; set; } public virtual string Ean { get; set; } public virtual Uri ImageUri { get; set; } public virtual string Name { get; set; } public virtual decimal Quantity { get; set; } public virtual string Reference { get; set; } public virtual decimal TaxRate { get; set; } public virtual decimal TotalPriceExcludingTax { get; set; } public virtual decimal TotalPriceIncludingTax { get; set; } public virtual decimal TotalTaxAmount { get; set; } public virtual decimal CreditedAmount { get; set; } public virtual ItemType Type { get; set; } public virtual decimal UnitPrice { get; set; } public virtual Uri Uri { get; set; } } public partial class Merchant { public virtual Uri CheckoutUri { get; set; } public virtual Uri ConfirmationUri { get; set; } public virtual Uri NotificationUri { get; set; } public virtual Uri ValidationUri { get; set; } public virtual Uri TermsUri { get; set; } public virtual string Reference { get; set; } public virtual string PartnerId { get; set; } } public partial class Order { public virtual Currency Currency { get; set; } public virtual decimal TotalFeeExcludingTax { get; set; } public virtual decimal TotalFeeIncludingTax { get; set; } public virtual decimal TotalPriceExcludingTax { get; set; } public virtual decimal TotalPriceIncludingTax { get; set; } public virtual decimal TotalTaxAmount { get; set; } public virtual decimal TotalCreditedAmount { get; set; } public virtual IList Items { get; set; } } public partial class Payson2CheckoutResponse { public virtual Guid Id { get; set; } public virtual DateTime? ExpirationTime { get; set; } public virtual string Snippet { get; set; } public virtual Payson2CheckoutStatus Status { get; set; } public virtual Customer Customer { get; set; } public virtual Order Order { get; set; } public virtual Merchant Merchant { get; set; } public virtual Gui Gui { get; set; } public virtual History History { get; set; } public virtual int? PurchaseId { get; set; } } } namespace PaysonIntegrationCO2.Models.Enums { public enum ColorScheme { White, Blue, Gray, GrayTextLogos, BlueTextLogos, WhiteTextLogos, WhiteNoFooter, GrayNoFooter, BlueNoFooter, } public enum Currency { SEK = 1, EUR = 2, } public enum ItemType { Physical, Service, Fee, Discount, } public enum Payson2CheckoutStatus { None, Created, FormsFilled, ReadyToPay, ProcessingPayment, ReadyToShip, Shipped, PaidToAccount, Canceled, Credited, Expired, Denied, } } namespace QvicklyIntegration.Models.Checkout { public partial class Cart { public virtual CartHandling Handling { get; set; } public virtual CartTotal Total { get; set; } public virtual Shipping Shipping { get; set; } } public partial class CartHandling { public virtual string withouttax { get; set; } public virtual string taxrate { get; set; } } public partial class CartTotal { public virtual string rounding { get; set; } public virtual string withouttax { get; set; } public virtual string tax { get; set; } public virtual string withtax { get; set; } } public partial class CheckoutData { public virtual Uri terms { get; set; } public virtual Uri privacyPolicy { get; set; } public virtual string redirectOnSuccess { get; set; } } public partial class CheckoutPaymentData { public virtual string currency { get; set; } public virtual string language { get; set; } public virtual string country { get; set; } public virtual string autoactivate { get; set; } public virtual string orderid { get; set; } public virtual string returnmethod { get; set; } public virtual Uri accepturl { get; set; } public virtual Uri cancelurl { get; set; } public virtual Uri callbackurl { get; set; } } public partial class InitCheckoutData { public InitCheckoutData() { Articles = new QvicklyArticle[]{}; } public virtual CheckoutData CheckoutData { get; set; } public virtual CheckoutPaymentData PaymentData { get; set; } public virtual PaymentInfo PaymentInfo { get; set; } public virtual QvicklyArticle[] Articles { get; set; } public virtual Cart Cart { get; set; } public virtual QvicklyCustomer QvicklyCustomer { get; set; } } public partial class InitCheckoutRequestBody { public virtual Credentials credentials { get; set; } public virtual InitCheckoutData data { get; set; } public virtual string function { get; set; } } public partial class QvicklyCheckoutResponse { public virtual int Number { get; set; } public virtual string Status { get; set; } public virtual string OrderId { get; set; } public virtual string Url { get; set; } } public partial class Shipping { public virtual string firstname { get; set; } public virtual string lastname { get; set; } public virtual string company { get; set; } public virtual string street { get; set; } public virtual string street2 { get; set; } public virtual string zip { get; set; } public virtual string city { get; set; } public virtual string country { get; set; } public virtual string phone { get; set; } public virtual string withouttax { get; set; } public virtual string taxrate { get; set; } } } namespace QvicklyIntegration.Models.Common { public partial class Credentials { public virtual string hash { get; set; } public virtual string id { get; set; } public virtual string version { get; set; } public virtual string client { get; set; } public virtual ServerData serverdata { get; set; } public virtual string time { get; set; } public virtual string test { get; set; } public virtual string language { get; set; } } public partial class ServerData { public virtual string HTTP_HOST { get; set; } public virtual string HTTP_CONNECTION { get; set; } public virtual string HTTP_CACHE_CONTROL { get; set; } public virtual string HTTP_ACCEPT { get; set; } public virtual string HTTP_USER_AGENT { get; set; } public virtual string HTTP_ACCEPT_ENCODING { get; set; } public virtual string HTTP_ACCEPT_LANGUAGE { get; set; } public virtual string PATH { get; set; } public virtual string SERVER_SOFTWARE { get; set; } public virtual string SERVER_NAME { get; set; } public virtual string SERVER_ADDR { get; set; } public virtual string SERVER_PORT { get; set; } public virtual string REMOTE_ADDR { get; set; } public virtual string REMOTE_PORT { get; set; } public virtual string GATEWAY_INTERFACE { get; set; } public virtual string SERVER_PROTOCOL { get; set; } public virtual string REQUEST_METHOD { get; set; } public virtual string QUERY_STRING { get; set; } public virtual string REQUEST_TIME { get; set; } } } namespace QvicklyIntegration.Models.Payment { public partial class Card { public virtual string promptname { get; set; } public virtual string recurring { get; set; } public virtual string recurringnr { get; set; } public virtual string accepturl { get; set; } public virtual string cancelurl { get; set; } public virtual string callbackurl { get; set; } public virtual string returnmethod { get; set; } } public partial class CustomerBilling { public virtual string firstname { get; set; } public virtual string lastname { get; set; } public virtual string company { get; set; } public virtual string street { get; set; } public virtual string street2 { get; set; } public virtual string zip { get; set; } public virtual string city { get; set; } public virtual string country { get; set; } public virtual string phone { get; set; } public virtual string email { get; set; } } public partial class PaymentInfo { public virtual string paymentdate { get; set; } public virtual string paymentterms { get; set; } public virtual string yourreference { get; set; } public virtual string ourreference { get; set; } public virtual string projectname { get; set; } public virtual string deliverymethod { get; set; } public virtual string deliveryterms { get; set; } } public partial class QvicklyCustomer { public virtual string nr { get; set; } public virtual string pno { get; set; } public virtual CustomerBilling Billing { get; set; } } public partial class QvicklyPaymentResponse { public QvicklyPaymentResponse() { Articles = new QvicklyArticle[]{}; } public virtual QvikclyPaymentData PaymentData { get; set; } public virtual PaymentInfo PaymentInfo { get; set; } public virtual Card Card { get; set; } public virtual Settlement Settlement { get; set; } public virtual QvicklyCustomer QvicklyCustomer { get; set; } public virtual QvicklyArticle[] Articles { get; set; } public virtual Cart Cart { get; set; } } public partial class QvikclyPaymentData { public virtual string method { get; set; } public virtual string paymentplanid { get; set; } public virtual string currency { get; set; } public virtual string country { get; set; } public virtual string language { get; set; } public virtual string autoactivate { get; set; } public virtual string orderid { get; set; } public virtual string status { get; set; } public virtual string paymentid_related { get; set; } public virtual string url { get; set; } } public partial class Settlement { public virtual string number { get; set; } public virtual string date { get; set; } } } namespace Stripe { public partial class Address : StripeEntity
{ public virtual string City { get; set; } public virtual string Country { get; set; } public virtual string Line1 { get; set; } public virtual string Line2 { get; set; } public virtual string PostalCode { get; set; } public virtual string State { get; set; } } public partial class AddressOptions : INestedOptions { public virtual string City { get; set; } public virtual string Country { get; set; } public virtual string Line1 { get; set; } public virtual string Line2 { get; set; } public virtual string PostalCode { get; set; } public virtual string State { get; set; } } public partial class BaseOptions : INestedOptions { public BaseOptions() { Expand = new List{}; } public virtual List Expand { get; set; } public virtual IDictionary ExtraParams { get; set; } } public partial class ChargeShippingOptions : INestedOptions { public virtual AddressOptions Address { get; set; } public virtual string Carrier { get; set; } public virtual string Name { get; set; } public virtual string Phone { get; set; } public virtual string TrackingNumber { get; set; } } public partial class Coupon : StripeEntity, IHasId, IHasMetadata, IHasObject { public Coupon() { CurrencyOptions = new Dictionary{}; Metadata = new Dictionary{}; } public virtual string Id { get; set; } public virtual string Object { get; set; } public virtual long? AmountOff { get; set; } public virtual CouponAppliesTo AppliesTo { get; set; } public virtual DateTime Created { get; set; } public virtual string Currency { get; set; } public virtual Dictionary CurrencyOptions { get; set; } public virtual bool? Deleted { get; set; } public virtual string Duration { get; set; } public virtual long? DurationInMonths { get; set; } public virtual bool Livemode { get; set; } public virtual long? MaxRedemptions { get; set; } public virtual Dictionary Metadata { get; set; } public virtual string Name { get; set; } public virtual decimal? PercentOff { get; set; } public virtual DateTime? RedeemBy { get; set; } public virtual long TimesRedeemed { get; set; } public virtual bool Valid { get; set; } } public partial class CouponAppliesTo : StripeEntity { public CouponAppliesTo() { Products = new List{}; } public virtual List Products { get; set; } } public partial class CouponCurrencyOptions : StripeEntity { public virtual long AmountOff { get; set; } } public partial class Discount : StripeEntity, IHasId, IHasObject { public virtual string Id { get; set; } public virtual string Object { get; set; } public virtual string CheckoutSession { get; set; } public virtual Coupon Coupon { get; set; } public virtual bool? Deleted { get; set; } public virtual DateTime? End { get; set; } public virtual string Invoice { get; set; } public virtual string InvoiceItem { get; set; } public virtual DateTime Start { get; set; } public virtual string Subscription { get; set; } public virtual string SubscriptionItem { get; set; } } public partial interface IHasId { string Id { get; set; } } public partial interface IHasMetadata { Dictionary Metadata { get; set; } } public partial interface IHasObject { string Object { get; set; } } public partial interface INestedOptions { } public partial interface IStripeEntity { StripeResponse StripeResponse { get; set; } } public partial class LineItem : StripeEntity, IHasId, IHasObject { public LineItem() { Discounts = new List{}; Taxes = new List{}; } public virtual string Id { get; set; } public virtual string Object { get; set; } public virtual long AmountDiscount { get; set; } public virtual long AmountSubtotal { get; set; } public virtual long AmountTax { get; set; } public virtual long AmountTotal { get; set; } public virtual string Currency { get; set; } public virtual bool? Deleted { get; set; } public virtual string Description { get; set; } public virtual List Discounts { get; set; } public virtual Price Price { get; set; } public virtual long? Quantity { get; set; } public virtual List Taxes { get; set; } } public partial class LineItemDiscount : StripeEntity { public virtual long Amount { get; set; } public virtual Discount Discount { get; set; } } public partial class LineItemTax : StripeEntity { public virtual long Amount { get; set; } public virtual TaxRate Rate { get; set; } public virtual string TaxabilityReason { get; set; } public virtual long? TaxableAmount { get; set; } } public partial class Price : StripeEntity, IHasId, IHasMetadata, IHasObject { public Price() { CurrencyOptions = new Dictionary{}; Metadata = new Dictionary{}; Tiers = new List{}; } public virtual string Id { get; set; } public virtual string Object { get; set; } public virtual bool Active { get; set; } public virtual string BillingScheme { get; set; } public virtual DateTime Created { get; set; } public virtual string Currency { get; set; } public virtual Dictionary CurrencyOptions { get; set; } public virtual PriceCustomUnitAmount CustomUnitAmount { get; set; } public virtual bool? Deleted { get; set; } public virtual bool Livemode { get; set; } public virtual string LookupKey { get; set; } public virtual Dictionary Metadata { get; set; } public virtual string Nickname { get; set; } public virtual PriceRecurring Recurring { get; set; } public virtual string TaxBehavior { get; set; } public virtual List Tiers { get; set; } public virtual string TiersMode { get; set; } public virtual PriceTransformQuantity TransformQuantity { get; set; } public virtual string Type { get; set; } public virtual long? UnitAmount { get; set; } public virtual decimal? UnitAmountDecimal { get; set; } } public partial class PriceCurrencyOptions : StripeEntity { public PriceCurrencyOptions() { Tiers = new List{}; } public virtual PriceCurrencyOptionsCustomUnitAmount CustomUnitAmount { get; set; } public virtual string TaxBehavior { get; set; } public virtual List Tiers { get; set; } public virtual long? UnitAmount { get; set; } public virtual decimal? UnitAmountDecimal { get; set; } } public partial class PriceCurrencyOptionsCustomUnitAmount : StripeEntity { public virtual long? Maximum { get; set; } public virtual long? Minimum { get; set; } public virtual long? Preset { get; set; } } public partial class PriceCurrencyOptionsTier : StripeEntity { public virtual long? FlatAmount { get; set; } public virtual decimal? FlatAmountDecimal { get; set; } public virtual long? UnitAmount { get; set; } public virtual decimal? UnitAmountDecimal { get; set; } public virtual long? UpTo { get; set; } } public partial class PriceCustomUnitAmount : StripeEntity { public virtual long? Maximum { get; set; } public virtual long? Minimum { get; set; } public virtual long? Preset { get; set; } } public partial class PriceRecurring : StripeEntity { public virtual string AggregateUsage { get; set; } public virtual string Interval { get; set; } public virtual long IntervalCount { get; set; } public virtual string Meter { get; set; } public virtual long? TrialPeriodDays { get; set; } public virtual string UsageType { get; set; } } public partial class PriceTier : StripeEntity { public virtual long? FlatAmount { get; set; } public virtual decimal? FlatAmountDecimal { get; set; } public virtual long? UnitAmount { get; set; } public virtual decimal? UnitAmountDecimal { get; set; } public virtual long? UpTo { get; set; } } public partial class PriceTransformQuantity : StripeEntity { public virtual long DivideBy { get; set; } public virtual string Round { get; set; } } public partial class StripeEntity : IStripeEntity { } public partial class StripeEntity : StripeEntity { } public partial class StripeList : StripeEntity>, IHasObject { } public partial class StripeResponse : StripeResponseBase { public virtual string Content { get; set; } } public partial class StripeResponseBase { public virtual HttpStatusCode StatusCode { get; set; } public virtual HttpResponseHeaders Headers { get; set; } public virtual DateTimeOffset? Date { get; set; } public virtual string IdempotencyKey { get; set; } public virtual string RequestId { get; set; } } public partial class TaxRate : StripeEntity, IHasId, IHasMetadata, IHasObject { public TaxRate() { Metadata = new Dictionary{}; } public virtual string Id { get; set; } public virtual string Object { get; set; } public virtual bool Active { get; set; } public virtual string Country { get; set; } public virtual DateTime Created { get; set; } public virtual string Description { get; set; } public virtual string DisplayName { get; set; } public virtual decimal? EffectivePercentage { get; set; } public virtual bool Inclusive { get; set; } public virtual string Jurisdiction { get; set; } public virtual string JurisdictionLevel { get; set; } public virtual bool Livemode { get; set; } public virtual Dictionary Metadata { get; set; } public virtual decimal Percentage { get; set; } public virtual string State { get; set; } public virtual string TaxType { get; set; } } } namespace Stripe.Checkout { public partial class Session : StripeEntity, IHasId, IHasMetadata, IHasObject { public Session() { CustomFields = new List{}; Metadata = new Dictionary{}; PaymentMethodTypes = new List{}; ShippingOptions = new List{}; } public virtual string Id { get; set; } public virtual string Object { get; set; } public virtual SessionAfterExpiration AfterExpiration { get; set; } public virtual bool? AllowPromotionCodes { get; set; } public virtual long? AmountSubtotal { get; set; } public virtual long? AmountTotal { get; set; } public virtual SessionAutomaticTax AutomaticTax { get; set; } public virtual string BillingAddressCollection { get; set; } public virtual string CancelUrl { get; set; } public virtual string ClientReferenceId { get; set; } public virtual string ClientSecret { get; set; } public virtual SessionConsent Consent { get; set; } public virtual SessionConsentCollection ConsentCollection { get; set; } public virtual DateTime Created { get; set; } public virtual string Currency { get; set; } public virtual SessionCurrencyConversion CurrencyConversion { get; set; } public virtual List CustomFields { get; set; } public virtual SessionCustomText CustomText { get; set; } public virtual string CustomerCreation { get; set; } public virtual SessionCustomerDetails CustomerDetails { get; set; } public virtual string CustomerEmail { get; set; } public virtual DateTime ExpiresAt { get; set; } public virtual SessionInvoiceCreation InvoiceCreation { get; set; } public virtual StripeList LineItems { get; set; } public virtual bool Livemode { get; set; } public virtual string Locale { get; set; } public virtual Dictionary Metadata { get; set; } public virtual string Mode { get; set; } public virtual string PaymentMethodCollection { get; set; } public virtual SessionPaymentMethodConfigurationDetails PaymentMethodConfigurationDetails { get; set; } public virtual SessionPaymentMethodOptions PaymentMethodOptions { get; set; } public virtual List PaymentMethodTypes { get; set; } public virtual string PaymentStatus { get; set; } public virtual SessionPhoneNumberCollection PhoneNumberCollection { get; set; } public virtual string RecoveredFrom { get; set; } public virtual string RedirectOnCompletion { get; set; } public virtual string ReturnUrl { get; set; } public virtual SessionSavedPaymentMethodOptions SavedPaymentMethodOptions { get; set; } public virtual SessionShippingAddressCollection ShippingAddressCollection { get; set; } public virtual SessionShippingCost ShippingCost { get; set; } public virtual SessionShippingDetails ShippingDetails { get; set; } public virtual List ShippingOptions { get; set; } public virtual string Status { get; set; } public virtual string SubmitType { get; set; } public virtual string SuccessUrl { get; set; } public virtual SessionTaxIdCollection TaxIdCollection { get; set; } public virtual SessionTotalDetails TotalDetails { get; set; } public virtual string UiMode { get; set; } public virtual string Url { get; set; } } public partial class SessionAfterExpiration : StripeEntity { public virtual SessionAfterExpirationRecovery Recovery { get; set; } } public partial class SessionAfterExpirationOptions : INestedOptions { public virtual SessionAfterExpirationRecoveryOptions Recovery { get; set; } } public partial class SessionAfterExpirationRecovery : StripeEntity { public virtual bool AllowPromotionCodes { get; set; } public virtual bool Enabled { get; set; } public virtual DateTime? ExpiresAt { get; set; } public virtual string Url { get; set; } } public partial class SessionAfterExpirationRecoveryOptions : INestedOptions { public virtual bool? AllowPromotionCodes { get; set; } public virtual bool? Enabled { get; set; } } public partial class SessionAutomaticTax : StripeEntity { public virtual bool Enabled { get; set; } public virtual SessionAutomaticTaxLiability Liability { get; set; } public virtual string Status { get; set; } } public partial class SessionAutomaticTaxLiability : StripeEntity { public virtual string Type { get; set; } } public partial class SessionAutomaticTaxLiabilityOptions : INestedOptions { public virtual string Account { get; set; } public virtual string Type { get; set; } } public partial class SessionAutomaticTaxOptions : INestedOptions { public virtual bool? Enabled { get; set; } public virtual SessionAutomaticTaxLiabilityOptions Liability { get; set; } } public partial class SessionConsent : StripeEntity { public virtual string Promotions { get; set; } public virtual string TermsOfService { get; set; } } public partial class SessionConsentCollection : StripeEntity { public virtual SessionConsentCollectionPaymentMethodReuseAgreement PaymentMethodReuseAgreement { get; set; } public virtual string Promotions { get; set; } public virtual string TermsOfService { get; set; } } public partial class SessionConsentCollectionOptions : INestedOptions { public virtual SessionConsentCollectionPaymentMethodReuseAgreementOptions PaymentMethodReuseAgreement { get; set; } public virtual string Promotions { get; set; } public virtual string TermsOfService { get; set; } } public partial class SessionConsentCollectionPaymentMethodReuseAgreement : StripeEntity { public virtual string Position { get; set; } } public partial class SessionConsentCollectionPaymentMethodReuseAgreementOptions : INestedOptions { public virtual string Position { get; set; } } public partial class SessionCreateOptions : BaseOptions, IHasMetadata { public SessionCreateOptions() { CustomFields = new List{}; Discounts = new List{}; LineItems = new List{}; Metadata = new Dictionary{}; PaymentMethodTypes = new List{}; ShippingOptions = new List{}; } public virtual SessionAfterExpirationOptions AfterExpiration { get; set; } public virtual bool? AllowPromotionCodes { get; set; } public virtual SessionAutomaticTaxOptions AutomaticTax { get; set; } public virtual string BillingAddressCollection { get; set; } public virtual string CancelUrl { get; set; } public virtual string ClientReferenceId { get; set; } public virtual SessionConsentCollectionOptions ConsentCollection { get; set; } public virtual string Currency { get; set; } public virtual List CustomFields { get; set; } public virtual SessionCustomTextOptions CustomText { get; set; } public virtual string Customer { get; set; } public virtual string CustomerCreation { get; set; } public virtual string CustomerEmail { get; set; } public virtual SessionCustomerUpdateOptions CustomerUpdate { get; set; } public virtual List Discounts { get; set; } public virtual DateTime? ExpiresAt { get; set; } public virtual SessionInvoiceCreationOptions InvoiceCreation { get; set; } public virtual List LineItems { get; set; } public virtual string Locale { get; set; } public virtual Dictionary Metadata { get; set; } public virtual string Mode { get; set; } public virtual SessionPaymentIntentDataOptions PaymentIntentData { get; set; } public virtual string PaymentMethodCollection { get; set; } public virtual string PaymentMethodConfiguration { get; set; } public virtual SessionPaymentMethodDataOptions PaymentMethodData { get; set; } public virtual SessionPaymentMethodOptionsOptions PaymentMethodOptions { get; set; } public virtual List PaymentMethodTypes { get; set; } public virtual SessionPhoneNumberCollectionOptions PhoneNumberCollection { get; set; } public virtual string RedirectOnCompletion { get; set; } public virtual string ReturnUrl { get; set; } public virtual SessionSavedPaymentMethodOptionsOptions SavedPaymentMethodOptions { get; set; } public virtual SessionSetupIntentDataOptions SetupIntentData { get; set; } public virtual SessionShippingAddressCollectionOptions ShippingAddressCollection { get; set; } public virtual List ShippingOptions { get; set; } public virtual string SubmitType { get; set; } public virtual SessionSubscriptionDataOptions SubscriptionData { get; set; } public virtual string SuccessUrl { get; set; } public virtual SessionTaxIdCollectionOptions TaxIdCollection { get; set; } public virtual string UiMode { get; set; } } public partial class SessionCurrencyConversion : StripeEntity { public virtual long AmountSubtotal { get; set; } public virtual long AmountTotal { get; set; } public virtual decimal FxRate { get; set; } public virtual string SourceCurrency { get; set; } } public partial class SessionCustomerDetails : StripeEntity { public SessionCustomerDetails() { TaxIds = new List{}; } public virtual Address Address { get; set; } public virtual string Email { get; set; } public virtual string Name { get; set; } public virtual string Phone { get; set; } public virtual string TaxExempt { get; set; } public virtual List TaxIds { get; set; } } public partial class SessionCustomerDetailsTaxId : StripeEntity { public virtual string Type { get; set; } public virtual string Value { get; set; } } public partial class SessionCustomerUpdateOptions : INestedOptions { public virtual string Address { get; set; } public virtual string Name { get; set; } public virtual string Shipping { get; set; } } public partial class SessionCustomField : StripeEntity { public virtual SessionCustomFieldDropdown Dropdown { get; set; } public virtual string Key { get; set; } public virtual SessionCustomFieldLabel Label { get; set; } public virtual SessionCustomFieldNumeric Numeric { get; set; } public virtual bool Optional { get; set; } public virtual SessionCustomFieldText Text { get; set; } public virtual string Type { get; set; } } public partial class SessionCustomFieldDropdown : StripeEntity { public SessionCustomFieldDropdown() { Options = new List{}; } public virtual string DefaultValue { get; set; } public virtual List Options { get; set; } public virtual string Value { get; set; } } public partial class SessionCustomFieldDropdownOption : StripeEntity { public virtual string Label { get; set; } public virtual string Value { get; set; } } public partial class SessionCustomFieldDropdownOptionOptions : INestedOptions { public virtual string Label { get; set; } public virtual string Value { get; set; } } public partial class SessionCustomFieldDropdownOptions : INestedOptions { public SessionCustomFieldDropdownOptions() { Options = new List{}; } public virtual string DefaultValue { get; set; } public virtual List Options { get; set; } } public partial class SessionCustomFieldLabel : StripeEntity { public virtual string Custom { get; set; } public virtual string Type { get; set; } } public partial class SessionCustomFieldLabelOptions : INestedOptions { public virtual string Custom { get; set; } public virtual string Type { get; set; } } public partial class SessionCustomFieldNumeric : StripeEntity { public virtual string DefaultValue { get; set; } public virtual long? MaximumLength { get; set; } public virtual long? MinimumLength { get; set; } public virtual string Value { get; set; } } public partial class SessionCustomFieldNumericOptions : INestedOptions { public virtual string DefaultValue { get; set; } public virtual long? MaximumLength { get; set; } public virtual long? MinimumLength { get; set; } } public partial class SessionCustomFieldOptions : INestedOptions { public virtual SessionCustomFieldDropdownOptions Dropdown { get; set; } public virtual string Key { get; set; } public virtual SessionCustomFieldLabelOptions Label { get; set; } public virtual SessionCustomFieldNumericOptions Numeric { get; set; } public virtual bool? Optional { get; set; } public virtual SessionCustomFieldTextOptions Text { get; set; } public virtual string Type { get; set; } } public partial class SessionCustomFieldText : StripeEntity { public virtual string DefaultValue { get; set; } public virtual long? MaximumLength { get; set; } public virtual long? MinimumLength { get; set; } public virtual string Value { get; set; } } public partial class SessionCustomFieldTextOptions : INestedOptions { public virtual string DefaultValue { get; set; } public virtual long? MaximumLength { get; set; } public virtual long? MinimumLength { get; set; } } public partial class SessionCustomText : StripeEntity { public virtual SessionCustomTextAfterSubmit AfterSubmit { get; set; } public virtual SessionCustomTextShippingAddress ShippingAddress { get; set; } public virtual SessionCustomTextSubmit Submit { get; set; } public virtual SessionCustomTextTermsOfServiceAcceptance TermsOfServiceAcceptance { get; set; } } public partial class SessionCustomTextAfterSubmit : StripeEntity { public virtual string Message { get; set; } } public partial class SessionCustomTextAfterSubmitOptions : INestedOptions { public virtual string Message { get; set; } } public partial class SessionCustomTextOptions : INestedOptions { public virtual SessionCustomTextAfterSubmitOptions AfterSubmit { get; set; } public virtual SessionCustomTextShippingAddressOptions ShippingAddress { get; set; } public virtual SessionCustomTextSubmitOptions Submit { get; set; } public virtual SessionCustomTextTermsOfServiceAcceptanceOptions TermsOfServiceAcceptance { get; set; } } public partial class SessionCustomTextShippingAddress : StripeEntity { public virtual string Message { get; set; } } public partial class SessionCustomTextShippingAddressOptions : INestedOptions { public virtual string Message { get; set; } } public partial class SessionCustomTextSubmit : StripeEntity { public virtual string Message { get; set; } } public partial class SessionCustomTextSubmitOptions : INestedOptions { public virtual string Message { get; set; } } public partial class SessionCustomTextTermsOfServiceAcceptance : StripeEntity { public virtual string Message { get; set; } } public partial class SessionCustomTextTermsOfServiceAcceptanceOptions : INestedOptions { public virtual string Message { get; set; } } public partial class SessionDiscountOptions : INestedOptions { public virtual string Coupon { get; set; } public virtual string PromotionCode { get; set; } } public partial class SessionInvoiceCreation : StripeEntity { public virtual bool Enabled { get; set; } public virtual SessionInvoiceCreationInvoiceData InvoiceData { get; set; } } public partial class SessionInvoiceCreationInvoiceData : StripeEntity, IHasMetadata { public SessionInvoiceCreationInvoiceData() { CustomFields = new List{}; Metadata = new Dictionary{}; } public virtual List CustomFields { get; set; } public virtual string Description { get; set; } public virtual string Footer { get; set; } public virtual SessionInvoiceCreationInvoiceDataIssuer Issuer { get; set; } public virtual Dictionary Metadata { get; set; } public virtual SessionInvoiceCreationInvoiceDataRenderingOptions RenderingOptions { get; set; } } public partial class SessionInvoiceCreationInvoiceDataCustomField : StripeEntity { public virtual string Name { get; set; } public virtual string Value { get; set; } } public partial class SessionInvoiceCreationInvoiceDataCustomFieldOptions : INestedOptions { public virtual string Name { get; set; } public virtual string Value { get; set; } } public partial class SessionInvoiceCreationInvoiceDataIssuer : StripeEntity { public virtual string Type { get; set; } } public partial class SessionInvoiceCreationInvoiceDataIssuerOptions : INestedOptions { public virtual string Account { get; set; } public virtual string Type { get; set; } } public partial class SessionInvoiceCreationInvoiceDataOptions : INestedOptions, IHasMetadata { public SessionInvoiceCreationInvoiceDataOptions() { AccountTaxIds = new List{}; CustomFields = new List{}; Metadata = new Dictionary{}; } public virtual List AccountTaxIds { get; set; } public virtual List CustomFields { get; set; } public virtual string Description { get; set; } public virtual string Footer { get; set; } public virtual SessionInvoiceCreationInvoiceDataIssuerOptions Issuer { get; set; } public virtual Dictionary Metadata { get; set; } public virtual SessionInvoiceCreationInvoiceDataRenderingOptionsOptions RenderingOptions { get; set; } } public partial class SessionInvoiceCreationInvoiceDataRenderingOptions : StripeEntity { public virtual string AmountTaxDisplay { get; set; } } public partial class SessionInvoiceCreationInvoiceDataRenderingOptionsOptions : INestedOptions { public virtual string AmountTaxDisplay { get; set; } } public partial class SessionInvoiceCreationOptions : INestedOptions { public virtual bool? Enabled { get; set; } public virtual SessionInvoiceCreationInvoiceDataOptions InvoiceData { get; set; } } public partial class SessionLineItemAdjustableQuantityOptions : INestedOptions { public virtual bool? Enabled { get; set; } public virtual long? Maximum { get; set; } public virtual long? Minimum { get; set; } } public partial class SessionLineItemOptions : INestedOptions { public SessionLineItemOptions() { DynamicTaxRates = new List{}; TaxRates = new List{}; } public virtual SessionLineItemAdjustableQuantityOptions AdjustableQuantity { get; set; } public virtual List DynamicTaxRates { get; set; } public virtual string Price { get; set; } public virtual SessionLineItemPriceDataOptions PriceData { get; set; } public virtual long? Quantity { get; set; } public virtual List TaxRates { get; set; } } public partial class SessionLineItemPriceDataOptions : INestedOptions { public virtual string Currency { get; set; } public virtual string Product { get; set; } public virtual SessionLineItemPriceDataProductDataOptions ProductData { get; set; } public virtual SessionLineItemPriceDataRecurringOptions Recurring { get; set; } public virtual string TaxBehavior { get; set; } public virtual long? UnitAmount { get; set; } public virtual decimal? UnitAmountDecimal { get; set; } } public partial class SessionLineItemPriceDataProductDataOptions : INestedOptions, IHasMetadata { public SessionLineItemPriceDataProductDataOptions() { Images = new List{}; Metadata = new Dictionary{}; } public virtual string Description { get; set; } public virtual List Images { get; set; } public virtual Dictionary Metadata { get; set; } public virtual string Name { get; set; } public virtual string TaxCode { get; set; } } public partial class SessionLineItemPriceDataRecurringOptions : INestedOptions { public virtual string Interval { get; set; } public virtual long? IntervalCount { get; set; } } public partial class SessionPaymentIntentDataOptions : INestedOptions, IHasMetadata { public SessionPaymentIntentDataOptions() { Metadata = new Dictionary{}; } public virtual long? ApplicationFeeAmount { get; set; } public virtual string CaptureMethod { get; set; } public virtual string Description { get; set; } public virtual Dictionary Metadata { get; set; } public virtual string OnBehalfOf { get; set; } public virtual string ReceiptEmail { get; set; } public virtual string SetupFutureUsage { get; set; } public virtual ChargeShippingOptions Shipping { get; set; } public virtual string StatementDescriptor { get; set; } public virtual string StatementDescriptorSuffix { get; set; } public virtual SessionPaymentIntentDataTransferDataOptions TransferData { get; set; } public virtual string TransferGroup { get; set; } } public partial class SessionPaymentIntentDataTransferDataOptions : INestedOptions { public virtual long? Amount { get; set; } public virtual string Destination { get; set; } } public partial class SessionPaymentMethodConfigurationDetails : StripeEntity, IHasId { public virtual string Id { get; set; } public virtual string Parent { get; set; } } public partial class SessionPaymentMethodDataOptions : INestedOptions { public virtual string AllowRedisplay { get; set; } } public partial class SessionPaymentMethodOptions : StripeEntity { public virtual SessionPaymentMethodOptionsAcssDebit AcssDebit { get; set; } public virtual SessionPaymentMethodOptionsAffirm Affirm { get; set; } public virtual SessionPaymentMethodOptionsAfterpayClearpay AfterpayClearpay { get; set; } public virtual SessionPaymentMethodOptionsAlipay Alipay { get; set; } public virtual SessionPaymentMethodOptionsAmazonPay AmazonPay { get; set; } public virtual SessionPaymentMethodOptionsAuBecsDebit AuBecsDebit { get; set; } public virtual SessionPaymentMethodOptionsBacsDebit BacsDebit { get; set; } public virtual SessionPaymentMethodOptionsBancontact Bancontact { get; set; } public virtual SessionPaymentMethodOptionsBoleto Boleto { get; set; } public virtual SessionPaymentMethodOptionsCard Card { get; set; } public virtual SessionPaymentMethodOptionsCashapp Cashapp { get; set; } public virtual SessionPaymentMethodOptionsCustomerBalance CustomerBalance { get; set; } public virtual SessionPaymentMethodOptionsEps Eps { get; set; } public virtual SessionPaymentMethodOptionsFpx Fpx { get; set; } public virtual SessionPaymentMethodOptionsGiropay Giropay { get; set; } public virtual SessionPaymentMethodOptionsGrabpay Grabpay { get; set; } public virtual SessionPaymentMethodOptionsIdeal Ideal { get; set; } public virtual SessionPaymentMethodOptionsKlarna Klarna { get; set; } public virtual SessionPaymentMethodOptionsKonbini Konbini { get; set; } public virtual SessionPaymentMethodOptionsLink Link { get; set; } public virtual SessionPaymentMethodOptionsMobilepay Mobilepay { get; set; } public virtual SessionPaymentMethodOptionsMultibanco Multibanco { get; set; } public virtual SessionPaymentMethodOptionsOxxo Oxxo { get; set; } public virtual SessionPaymentMethodOptionsP24 P24 { get; set; } public virtual SessionPaymentMethodOptionsPaynow Paynow { get; set; } public virtual SessionPaymentMethodOptionsPaypal Paypal { get; set; } public virtual SessionPaymentMethodOptionsPix Pix { get; set; } public virtual SessionPaymentMethodOptionsRevolutPay RevolutPay { get; set; } public virtual SessionPaymentMethodOptionsSepaDebit SepaDebit { get; set; } public virtual SessionPaymentMethodOptionsSofort Sofort { get; set; } public virtual SessionPaymentMethodOptionsSwish Swish { get; set; } public virtual SessionPaymentMethodOptionsUsBankAccount UsBankAccount { get; set; } } public partial class SessionPaymentMethodOptionsAcssDebit : StripeEntity { public virtual string Currency { get; set; } public virtual SessionPaymentMethodOptionsAcssDebitMandateOptions MandateOptions { get; set; } public virtual string SetupFutureUsage { get; set; } public virtual string VerificationMethod { get; set; } } public partial class SessionPaymentMethodOptionsAcssDebitMandateOptions : StripeEntity { public SessionPaymentMethodOptionsAcssDebitMandateOptions() { DefaultFor = new List{}; } public virtual string CustomMandateUrl { get; set; } public virtual List DefaultFor { get; set; } public virtual string IntervalDescription { get; set; } public virtual string PaymentSchedule { get; set; } public virtual string TransactionType { get; set; } } public partial class SessionPaymentMethodOptionsAcssDebitMandateOptionsOptions : INestedOptions { public SessionPaymentMethodOptionsAcssDebitMandateOptionsOptions() { DefaultFor = new List{}; } public virtual string CustomMandateUrl { get; set; } public virtual List DefaultFor { get; set; } public virtual string IntervalDescription { get; set; } public virtual string PaymentSchedule { get; set; } public virtual string TransactionType { get; set; } } public partial class SessionPaymentMethodOptionsAcssDebitOptions : INestedOptions { public virtual string Currency { get; set; } public virtual SessionPaymentMethodOptionsAcssDebitMandateOptionsOptions MandateOptions { get; set; } public virtual string SetupFutureUsage { get; set; } public virtual string VerificationMethod { get; set; } } public partial class SessionPaymentMethodOptionsAffirm : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsAffirmOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsAfterpayClearpay : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsAfterpayClearpayOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsAlipay : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsAlipayOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsAmazonPay : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsAmazonPayOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsAuBecsDebit : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsAuBecsDebitOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsBacsDebit : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsBacsDebitOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsBancontact : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsBancontactOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsBoleto : StripeEntity { public virtual long ExpiresAfterDays { get; set; } public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsBoletoOptions : INestedOptions { public virtual long? ExpiresAfterDays { get; set; } public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsCard : StripeEntity { public virtual SessionPaymentMethodOptionsCardInstallments Installments { get; set; } public virtual string RequestThreeDSecure { get; set; } public virtual string SetupFutureUsage { get; set; } public virtual string StatementDescriptorSuffixKana { get; set; } public virtual string StatementDescriptorSuffixKanji { get; set; } } public partial class SessionPaymentMethodOptionsCardInstallments : StripeEntity { public virtual bool Enabled { get; set; } } public partial class SessionPaymentMethodOptionsCardInstallmentsOptions : INestedOptions { public virtual bool? Enabled { get; set; } } public partial class SessionPaymentMethodOptionsCardOptions : INestedOptions { public virtual SessionPaymentMethodOptionsCardInstallmentsOptions Installments { get; set; } public virtual string RequestThreeDSecure { get; set; } public virtual string SetupFutureUsage { get; set; } public virtual string StatementDescriptorSuffixKana { get; set; } public virtual string StatementDescriptorSuffixKanji { get; set; } } public partial class SessionPaymentMethodOptionsCashapp : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsCashappOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsCustomerBalance : StripeEntity { public virtual SessionPaymentMethodOptionsCustomerBalanceBankTransfer BankTransfer { get; set; } public virtual string FundingType { get; set; } public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsCustomerBalanceBankTransfer : StripeEntity { public SessionPaymentMethodOptionsCustomerBalanceBankTransfer() { RequestedAddressTypes = new List{}; } public virtual SessionPaymentMethodOptionsCustomerBalanceBankTransferEuBankTransfer EuBankTransfer { get; set; } public virtual List RequestedAddressTypes { get; set; } public virtual string Type { get; set; } } public partial class SessionPaymentMethodOptionsCustomerBalanceBankTransferEuBankTransfer : StripeEntity { public virtual string Country { get; set; } } public partial class SessionPaymentMethodOptionsCustomerBalanceBankTransferEuBankTransferOptions : INestedOptions { public virtual string Country { get; set; } } public partial class SessionPaymentMethodOptionsCustomerBalanceBankTransferOptions : INestedOptions { public SessionPaymentMethodOptionsCustomerBalanceBankTransferOptions() { RequestedAddressTypes = new List{}; } public virtual SessionPaymentMethodOptionsCustomerBalanceBankTransferEuBankTransferOptions EuBankTransfer { get; set; } public virtual List RequestedAddressTypes { get; set; } public virtual string Type { get; set; } } public partial class SessionPaymentMethodOptionsCustomerBalanceOptions : INestedOptions { public virtual SessionPaymentMethodOptionsCustomerBalanceBankTransferOptions BankTransfer { get; set; } public virtual string FundingType { get; set; } public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsEps : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsEpsOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsFpx : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsFpxOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsGiropay : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsGiropayOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsGrabpay : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsGrabpayOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsIdeal : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsIdealOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsKlarna : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsKlarnaOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsKonbini : StripeEntity { public virtual long? ExpiresAfterDays { get; set; } public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsKonbiniOptions : INestedOptions { public virtual long? ExpiresAfterDays { get; set; } public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsLink : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsLinkOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsMobilepay : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsMobilepayOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsMultibanco : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsMultibancoOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsOptions : INestedOptions { public virtual SessionPaymentMethodOptionsAcssDebitOptions AcssDebit { get; set; } public virtual SessionPaymentMethodOptionsAffirmOptions Affirm { get; set; } public virtual SessionPaymentMethodOptionsAfterpayClearpayOptions AfterpayClearpay { get; set; } public virtual SessionPaymentMethodOptionsAlipayOptions Alipay { get; set; } public virtual SessionPaymentMethodOptionsAmazonPayOptions AmazonPay { get; set; } public virtual SessionPaymentMethodOptionsAuBecsDebitOptions AuBecsDebit { get; set; } public virtual SessionPaymentMethodOptionsBacsDebitOptions BacsDebit { get; set; } public virtual SessionPaymentMethodOptionsBancontactOptions Bancontact { get; set; } public virtual SessionPaymentMethodOptionsBoletoOptions Boleto { get; set; } public virtual SessionPaymentMethodOptionsCardOptions Card { get; set; } public virtual SessionPaymentMethodOptionsCashappOptions Cashapp { get; set; } public virtual SessionPaymentMethodOptionsCustomerBalanceOptions CustomerBalance { get; set; } public virtual SessionPaymentMethodOptionsEpsOptions Eps { get; set; } public virtual SessionPaymentMethodOptionsFpxOptions Fpx { get; set; } public virtual SessionPaymentMethodOptionsGiropayOptions Giropay { get; set; } public virtual SessionPaymentMethodOptionsGrabpayOptions Grabpay { get; set; } public virtual SessionPaymentMethodOptionsIdealOptions Ideal { get; set; } public virtual SessionPaymentMethodOptionsKlarnaOptions Klarna { get; set; } public virtual SessionPaymentMethodOptionsKonbiniOptions Konbini { get; set; } public virtual SessionPaymentMethodOptionsLinkOptions Link { get; set; } public virtual SessionPaymentMethodOptionsMobilepayOptions Mobilepay { get; set; } public virtual SessionPaymentMethodOptionsMultibancoOptions Multibanco { get; set; } public virtual SessionPaymentMethodOptionsOxxoOptions Oxxo { get; set; } public virtual SessionPaymentMethodOptionsP24Options P24 { get; set; } public virtual SessionPaymentMethodOptionsPaynowOptions Paynow { get; set; } public virtual SessionPaymentMethodOptionsPaypalOptions Paypal { get; set; } public virtual SessionPaymentMethodOptionsPixOptions Pix { get; set; } public virtual SessionPaymentMethodOptionsRevolutPayOptions RevolutPay { get; set; } public virtual SessionPaymentMethodOptionsSepaDebitOptions SepaDebit { get; set; } public virtual SessionPaymentMethodOptionsSofortOptions Sofort { get; set; } public virtual SessionPaymentMethodOptionsSwishOptions Swish { get; set; } public virtual SessionPaymentMethodOptionsUsBankAccountOptions UsBankAccount { get; set; } public virtual SessionPaymentMethodOptionsWechatPayOptions WechatPay { get; set; } } public partial class SessionPaymentMethodOptionsOxxo : StripeEntity { public virtual long ExpiresAfterDays { get; set; } public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsOxxoOptions : INestedOptions { public virtual long? ExpiresAfterDays { get; set; } public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsP24 : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsP24Options : INestedOptions { public virtual string SetupFutureUsage { get; set; } public virtual bool? TosShownAndAccepted { get; set; } } public partial class SessionPaymentMethodOptionsPaynow : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsPaynowOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsPaypal : StripeEntity { public virtual string CaptureMethod { get; set; } public virtual string PreferredLocale { get; set; } public virtual string Reference { get; set; } public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsPaypalOptions : INestedOptions { public virtual string CaptureMethod { get; set; } public virtual string PreferredLocale { get; set; } public virtual string Reference { get; set; } public virtual string RiskCorrelationId { get; set; } public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsPix : StripeEntity { public virtual long? ExpiresAfterSeconds { get; set; } } public partial class SessionPaymentMethodOptionsPixOptions : INestedOptions { public virtual long? ExpiresAfterSeconds { get; set; } } public partial class SessionPaymentMethodOptionsRevolutPay : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsRevolutPayOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsSepaDebit : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsSepaDebitOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsSofort : StripeEntity { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsSofortOptions : INestedOptions { public virtual string SetupFutureUsage { get; set; } } public partial class SessionPaymentMethodOptionsSwish : StripeEntity { public virtual string Reference { get; set; } } public partial class SessionPaymentMethodOptionsSwishOptions : INestedOptions { public virtual string Reference { get; set; } } public partial class SessionPaymentMethodOptionsUsBankAccount : StripeEntity { public virtual SessionPaymentMethodOptionsUsBankAccountFinancialConnections FinancialConnections { get; set; } public virtual string SetupFutureUsage { get; set; } public virtual string VerificationMethod { get; set; } } public partial class SessionPaymentMethodOptionsUsBankAccountFinancialConnections : StripeEntity { public SessionPaymentMethodOptionsUsBankAccountFinancialConnections() { Permissions = new List{}; Prefetch = new List{}; } public virtual SessionPaymentMethodOptionsUsBankAccountFinancialConnectionsFilters Filters { get; set; } public virtual List Permissions { get; set; } public virtual List Prefetch { get; set; } public virtual string ReturnUrl { get; set; } } public partial class SessionPaymentMethodOptionsUsBankAccountFinancialConnectionsFilters : StripeEntity { public SessionPaymentMethodOptionsUsBankAccountFinancialConnectionsFilters() { AccountSubcategories = new List{}; } public virtual List AccountSubcategories { get; set; } } public partial class SessionPaymentMethodOptionsUsBankAccountFinancialConnectionsOptions : INestedOptions { public SessionPaymentMethodOptionsUsBankAccountFinancialConnectionsOptions() { Permissions = new List{}; Prefetch = new List{}; } public virtual List Permissions { get; set; } public virtual List Prefetch { get; set; } } public partial class SessionPaymentMethodOptionsUsBankAccountOptions : INestedOptions { public virtual SessionPaymentMethodOptionsUsBankAccountFinancialConnectionsOptions FinancialConnections { get; set; } public virtual string SetupFutureUsage { get; set; } public virtual string VerificationMethod { get; set; } } public partial class SessionPaymentMethodOptionsWechatPayOptions : INestedOptions { public virtual string AppId { get; set; } public virtual string Client { get; set; } public virtual string SetupFutureUsage { get; set; } } public partial class SessionPhoneNumberCollection : StripeEntity { public virtual bool Enabled { get; set; } } public partial class SessionPhoneNumberCollectionOptions : INestedOptions { public virtual bool? Enabled { get; set; } } public partial class SessionSavedPaymentMethodOptions : StripeEntity { public SessionSavedPaymentMethodOptions() { AllowRedisplayFilters = new List{}; } public virtual List AllowRedisplayFilters { get; set; } public virtual string PaymentMethodRemove { get; set; } public virtual string PaymentMethodSave { get; set; } } public partial class SessionSavedPaymentMethodOptionsOptions : INestedOptions { public SessionSavedPaymentMethodOptionsOptions() { AllowRedisplayFilters = new List{}; } public virtual List AllowRedisplayFilters { get; set; } public virtual string PaymentMethodSave { get; set; } } public partial class SessionSetupIntentDataOptions : INestedOptions, IHasMetadata { public SessionSetupIntentDataOptions() { Metadata = new Dictionary{}; } public virtual string Description { get; set; } public virtual Dictionary Metadata { get; set; } public virtual string OnBehalfOf { get; set; } } public partial class SessionShippingAddressCollection : StripeEntity { public SessionShippingAddressCollection() { AllowedCountries = new List{}; } public virtual List AllowedCountries { get; set; } } public partial class SessionShippingAddressCollectionOptions : INestedOptions { public SessionShippingAddressCollectionOptions() { AllowedCountries = new List{}; } public virtual List AllowedCountries { get; set; } } public partial class SessionShippingCost : StripeEntity { public SessionShippingCost() { Taxes = new List{}; } public virtual long AmountSubtotal { get; set; } public virtual long AmountTax { get; set; } public virtual long AmountTotal { get; set; } public virtual List Taxes { get; set; } } public partial class SessionShippingCostTax : StripeEntity { public virtual long Amount { get; set; } public virtual TaxRate Rate { get; set; } public virtual string TaxabilityReason { get; set; } public virtual long? TaxableAmount { get; set; } } public partial class SessionShippingDetails : StripeEntity { public virtual Address Address { get; set; } public virtual string Carrier { get; set; } public virtual string Name { get; set; } public virtual string Phone { get; set; } public virtual string TrackingNumber { get; set; } } public partial class SessionShippingOption : StripeEntity { public virtual long ShippingAmount { get; set; } } public partial class SessionShippingOptionOptions : INestedOptions { public virtual string ShippingRate { get; set; } public virtual SessionShippingOptionShippingRateDataOptions ShippingRateData { get; set; } } public partial class SessionShippingOptionShippingRateDataDeliveryEstimateMaximumOptions : INestedOptions { public virtual string Unit { get; set; } public virtual long? Value { get; set; } } public partial class SessionShippingOptionShippingRateDataDeliveryEstimateMinimumOptions : INestedOptions { public virtual string Unit { get; set; } public virtual long? Value { get; set; } } public partial class SessionShippingOptionShippingRateDataDeliveryEstimateOptions : INestedOptions { public virtual SessionShippingOptionShippingRateDataDeliveryEstimateMaximumOptions Maximum { get; set; } public virtual SessionShippingOptionShippingRateDataDeliveryEstimateMinimumOptions Minimum { get; set; } } public partial class SessionShippingOptionShippingRateDataFixedAmountCurrencyOptionsOptions : INestedOptions { public virtual long? Amount { get; set; } public virtual string TaxBehavior { get; set; } } public partial class SessionShippingOptionShippingRateDataFixedAmountOptions : INestedOptions { public SessionShippingOptionShippingRateDataFixedAmountOptions() { CurrencyOptions = new Dictionary{}; } public virtual long? Amount { get; set; } public virtual string Currency { get; set; } public virtual Dictionary CurrencyOptions { get; set; } } public partial class SessionShippingOptionShippingRateDataOptions : INestedOptions, IHasMetadata { public SessionShippingOptionShippingRateDataOptions() { Metadata = new Dictionary{}; } public virtual SessionShippingOptionShippingRateDataDeliveryEstimateOptions DeliveryEstimate { get; set; } public virtual string DisplayName { get; set; } public virtual SessionShippingOptionShippingRateDataFixedAmountOptions FixedAmount { get; set; } public virtual Dictionary Metadata { get; set; } public virtual string TaxBehavior { get; set; } public virtual string TaxCode { get; set; } public virtual string Type { get; set; } } public partial class SessionSubscriptionDataInvoiceSettingsIssuerOptions : INestedOptions { public virtual string Account { get; set; } public virtual string Type { get; set; } } public partial class SessionSubscriptionDataInvoiceSettingsOptions : INestedOptions { public virtual SessionSubscriptionDataInvoiceSettingsIssuerOptions Issuer { get; set; } } public partial class SessionSubscriptionDataOptions : INestedOptions, IHasMetadata { public SessionSubscriptionDataOptions() { DefaultTaxRates = new List{}; Metadata = new Dictionary{}; } public virtual decimal? ApplicationFeePercent { get; set; } public virtual DateTime? BillingCycleAnchor { get; set; } public virtual List DefaultTaxRates { get; set; } public virtual string Description { get; set; } public virtual SessionSubscriptionDataInvoiceSettingsOptions InvoiceSettings { get; set; } public virtual Dictionary Metadata { get; set; } public virtual string OnBehalfOf { get; set; } public virtual string ProrationBehavior { get; set; } public virtual SessionSubscriptionDataTransferDataOptions TransferData { get; set; } public virtual DateTime? TrialEnd { get; set; } public virtual long? TrialPeriodDays { get; set; } public virtual SessionSubscriptionDataTrialSettingsOptions TrialSettings { get; set; } } public partial class SessionSubscriptionDataTransferDataOptions : INestedOptions { public virtual decimal? AmountPercent { get; set; } public virtual string Destination { get; set; } } public partial class SessionSubscriptionDataTrialSettingsEndBehaviorOptions : INestedOptions { public virtual string MissingPaymentMethod { get; set; } } public partial class SessionSubscriptionDataTrialSettingsOptions : INestedOptions { public virtual SessionSubscriptionDataTrialSettingsEndBehaviorOptions EndBehavior { get; set; } } public partial class SessionTaxIdCollection : StripeEntity { public virtual bool Enabled { get; set; } public virtual string Required { get; set; } } public partial class SessionTaxIdCollectionOptions : INestedOptions { public virtual bool? Enabled { get; set; } public virtual string Required { get; set; } } public partial class SessionTotalDetails : StripeEntity { public virtual long AmountDiscount { get; set; } public virtual long? AmountShipping { get; set; } public virtual long AmountTax { get; set; } public virtual SessionTotalDetailsBreakdown Breakdown { get; set; } } public partial class SessionTotalDetailsBreakdown : StripeEntity { public SessionTotalDetailsBreakdown() { Discounts = new List{}; Taxes = new List{}; } public virtual List Discounts { get; set; } public virtual List Taxes { get; set; } } public partial class SessionTotalDetailsBreakdownDiscount : StripeEntity { public virtual long Amount { get; set; } public virtual Discount Discount { get; set; } } public partial class SessionTotalDetailsBreakdownTax : StripeEntity { public virtual long Amount { get; set; } public virtual TaxRate Rate { get; set; } public virtual string TaxabilityReason { get; set; } public virtual long? TaxableAmount { get; set; } } } namespace StripeIntegration.Enums { public partial class CustomSessionData { public CustomSessionData() { LineItems = new List{}; } public virtual Session Session { get; set; } public virtual List LineItems { get; set; } } }