/* Options: Date: 2025-05-06 13:33:03 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPaymentMethod.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class PaymentMethod { public id: number; public paymentMethodId: string; public paymentMethodName: string; public active?: boolean; public needsCardInfo: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/paymentMethods/intid/{Id}", "GET POST") // @Route("/paymentMethods/nameid/{NameId}", "GET POST") export class GetPaymentMethod implements IReturn { public id?: number; public nameId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetPaymentMethod'; } public getMethod() { return 'POST'; } public createResponse() { return new PaymentMethod(); } }