/* Options: Date: 2024-06-26 10:13:18 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ExportInvoice.* //ExcludeTypes: //DefaultImports: */ export interface ICompany { CompanyId?: string; } // @Route("/billing/company/invoices/{InvoiceId}", "GET") // @ValidateRequest(Validator="IsAuthenticated") export class ExportInvoice implements ICompany { /** @description Id of the invoice */ // @ApiMember(Description="Id of the invoice", IsRequired=true, ParameterType="path") public InvoiceId: number; /** @description 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 CompanyId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ExportInvoice'; } public getMethod() { return 'GET'; } public createResponse() {} }