/* Options: Date: 2024-05-09 22:36:28 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.clubready.com/api/current //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PaymentProfileImportEndpoint.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class IApiKeyEndpoint { String? ApiKey; } class PaymentProfileImportRequest implements IConvertible { String? AcctToken; String? ProfileToken; bool? DoNotUpdatePaymentTypePreference; ValueTuple? NewOwner; PaymentProfileImportRequest({this.AcctToken,this.ProfileToken,this.DoNotUpdatePaymentTypePreference,this.NewOwner}); PaymentProfileImportRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { AcctToken = json['AcctToken']; ProfileToken = json['ProfileToken']; DoNotUpdatePaymentTypePreference = json['DoNotUpdatePaymentTypePreference']; NewOwner = JsonConverters.fromJson(json['NewOwner'],'ValueTuple',context!); return this; } Map toJson() => { 'AcctToken': AcctToken, 'ProfileToken': ProfileToken, 'DoNotUpdatePaymentTypePreference': DoNotUpdatePaymentTypePreference, 'NewOwner': JsonConverters.toJson(NewOwner,'ValueTuple',context!) }; getTypeName() => "PaymentProfileImportRequest"; TypeContext? context = _ctx; } class PaymentProfileImportResponse implements IConvertible { bool? Success; String? Message; PaymentProfileImportResponse({this.Success,this.Message}); PaymentProfileImportResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Success = json['Success']; Message = json['Message']; return this; } Map toJson() => { 'Success': Success, 'Message': Message }; getTypeName() => "PaymentProfileImportResponse"; TypeContext? context = _ctx; } // @Route("/sales/paymentprofile/import", "POST") // @ApiResponse(Description="", ResponseType=typeof(PaymentProfileImportResponse), StatusCode=200) class PaymentProfileImportEndpoint extends PaymentProfileImportRequest implements IReturn, IApiKeyEndpoint, IConvertible { /** * Api Authentication Key */ // @ApiMember(Description="Api Authentication Key", IsRequired=true, ParameterType="query") String? ApiKey; /** * 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) String? AcctToken; /** * 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) String? ProfileToken; /** * 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.") bool? DoNotUpdatePaymentTypePreference; /** * **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`.") int? NewOwnerId; PaymentProfileImportEndpoint({this.ApiKey,this.AcctToken,this.ProfileToken,this.DoNotUpdatePaymentTypePreference,this.NewOwnerId}); PaymentProfileImportEndpoint.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); ApiKey = json['ApiKey']; AcctToken = json['AcctToken']; ProfileToken = json['ProfileToken']; DoNotUpdatePaymentTypePreference = json['DoNotUpdatePaymentTypePreference']; NewOwnerId = json['NewOwnerId']; return this; } Map toJson() => super.toJson()..addAll({ 'ApiKey': ApiKey, 'AcctToken': AcctToken, 'ProfileToken': ProfileToken, 'DoNotUpdatePaymentTypePreference': DoNotUpdatePaymentTypePreference, 'NewOwnerId': NewOwnerId }); createResponse() => PaymentProfileImportResponse(); getResponseTypeName() => "PaymentProfileImportResponse"; getTypeName() => "PaymentProfileImportEndpoint"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.clubready.com', types: { 'IApiKeyEndpoint': TypeInfo(TypeOf.Interface), 'PaymentProfileImportRequest': TypeInfo(TypeOf.Class, create:() => PaymentProfileImportRequest()), 'ValueTuple': TypeInfo(TypeOf.Class, create:() => ValueTuple()), 'OwnerType': TypeInfo(TypeOf.Class, create:() => OwnerType()), 'PaymentProfileImportResponse': TypeInfo(TypeOf.Class, create:() => PaymentProfileImportResponse()), 'PaymentProfileImportEndpoint': TypeInfo(TypeOf.Class, create:() => PaymentProfileImportEndpoint()), });