/* Options: Date: 2024-11-24 13:37:00 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://clubready.com/api/current //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: PaymentProfileImportEndpoint.* //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 ClubReady.Web.Api; using ClubReady.Payments; using ClubReady.Payments.PaymentsDb; using ClubReady.Web.Api.Sales; namespace ClubReady.Payments { public partial class PaymentProfileImportRequest { public virtual string AcctToken { get; set; } public virtual string ProfileToken { get; set; } public virtual bool DoNotUpdatePaymentTypePreference { get; set; } public virtual ValueTuple? NewOwner { get; set; } } public partial class PaymentProfileImportResponse { public virtual bool Success { get; set; } public virtual string Message { get; set; } public virtual PaymentProfile PaymentProfile { get; set; } } } namespace ClubReady.Payments.PaymentsDb { public partial class PaymentProfile { public virtual int PaymentProfileId { get; set; } public virtual string AcctToken { get; set; } public virtual int OwnerId { get; set; } public virtual short OwnerTypeId { get; set; } public virtual short AcctTypeId { get; set; } public virtual short AcctClassId { get; set; } public virtual string PrefixName { get; set; } public virtual string FirstName { get; set; } public virtual string MiddleName { get; set; } public virtual string LastName { get; set; } public virtual string SuffixName { get; set; } public virtual string Address1 { get; set; } public virtual string Address2 { get; set; } public virtual string Urbanization { get; set; } public virtual string City { get; set; } public virtual string State { get; set; } public virtual string PostalCode { get; set; } public virtual string CountryCode { get; set; } public virtual string Last4 { get; set; } public virtual byte? CcExpMonth { get; set; } public virtual byte? CcExpYear { get; set; } public virtual bool IsTemp { get; set; } public virtual bool IsDisabled { get; set; } public virtual DateTime? OnHoldUtc { get; set; } public virtual byte? OnHoldReasonCode { get; set; } public virtual string OnHoldReasonDetail { get; set; } public virtual DateTime? AcctUpdaterFlagUtc { get; set; } public virtual int CreatedBy { get; set; } public virtual DateTime CreatedUtc { get; set; } public virtual int ModifiedBy { get; set; } public virtual DateTime ModifiedUtc { get; set; } public virtual bool AcctUpdaterFlag { get; set; } public virtual short EntryModeId { get; set; } public virtual bool ExcludeFromAcctUpdater { get; set; } } } namespace ClubReady.Web.Api { public partial interface IApiKeyEndpoint { string ApiKey { get; set; } } } namespace ClubReady.Web.Api.Sales { [Route("/sales/paymentprofile/import", "POST")] [ApiResponse(Description="", ResponseType=typeof(ClubReady.Payments.PaymentProfileImportResponse), StatusCode=200)] public partial class PaymentProfileImportEndpoint : PaymentProfileImportRequest, IReturn, IApiKeyEndpoint { /// ///Api Authentication Key /// [ApiMember(Description="Api Authentication Key", IsRequired=true, ParameterType="query")] public virtual string ApiKey { get; set; } /// ///Encoded data uniquely identifying the payment profile. Long term storage of AcctToken is not recommended, as the token may change over time (for example, by processes like Account Updater). The length is usually 80 characters. /// [ApiMember(Description="\r\nEncoded data uniquely identifying the payment profile. \r\nLong term storage of AcctToken is not recommended, as the token may change over time (for example, by processes like Account Updater). \r\nThe length is usually 80 characters.", IsRequired=true)] public virtual string AcctToken { get; set; } /// ///Encoded data containing non-PCI information about the Payment Profile. ProfileTokens contain a timestamp. If the ClubReady API does not process the token within 5 minutes,it cannot be accepted and a new profile will have to be created with a new AcctToken. The timevalidation is to prevent old tokens from be re-played at a later time. The length is variable, but generally around 1,000 characters. /// [ApiMember(Description="\r\nEncoded data containing non-PCI information about the Payment Profile. \r\n\r\nProfileTokens contain a timestamp. If the ClubReady API does not process the token within 5 minutes,\r\nit cannot be accepted and a new profile will have to be created with a new AcctToken. The time\r\nvalidation is to prevent old tokens from be re-played at a later time. \r\n\r\nThe length is variable, but generally around 1,000 characters.", IsRequired=true)] public virtual string ProfileToken { get; set; } /// ///When adding a Payment Profile that is 'on-file', the default behavior is to update the user's Payment TypePreference to the AcctClass of the new profile. If you wish to not update the preference, you can set`DoNotUpdatePaymentTypePreference` to `true`. Otherwise, this can be omitted or `false`. For `IsTemp == true` profiles, `DoNotUpdatePaymentTypePreference` is ignored. /// [ApiMember(Description="\r\nWhen adding a Payment Profile that is 'on-file', the default behavior is to update the user's Payment Type\r\nPreference to the AcctClass of the new profile. If you wish to not update the preference, you can set\r\n`DoNotUpdatePaymentTypePreference` to `true`. Otherwise, this can be omitted or `false`. \r\n\r\nFor `IsTemp == true` profiles, `DoNotUpdatePaymentTypePreference` is ignored.")] public virtual bool DoNotUpdatePaymentTypePreference { get; set; } /// ///**Conditionally Required** When adding a Payment Profile that has an OwnerType of `TempStUser`, the ownership will be changed to OwnerType of `User`with the `UserId` of the supplied `NewOwnerId`. /// [ApiMember(Description="\r\n**Conditionally Required** \r\n\r\nWhen adding a Payment Profile that has an OwnerType of `TempStUser`, the ownership will be changed to OwnerType of `User`\r\nwith the `UserId` of the supplied `NewOwnerId`.")] public virtual int? NewOwnerId { get; set; } } }