/* Options: Date: 2025-12-06 11:27:34 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.dev.scadsoftware.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCustomerDocumentsToProvider.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/customers/documents/toproviders/{TenantsId}", "GET") export class GetCustomerDocumentsToProvider implements IReturn { public TenantsId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetCustomerDocumentsToProvider'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }