/* Options: Date: 2026-04-14 20:49:21 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.com/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateClaimLinkedCreditNote.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturnVoid { createResponse(): void; } /** @description Link claim to credit note */ // @Route("/claim/{claimId}/creditNote/{creditNoteId}/link", "PUT") // @Api(Description="Link claim to credit note") // @ApiResponse(Description="Claim linked", IsDefaultResponse=true, StatusCode=204) // @ApiResponse(Description="Claim not found", StatusCode=404) export class UpdateClaimLinkedCreditNote implements IReturnVoid { // @ApiMember(ExcludeInSchema=true, ParameterType="path") public claimId: string; // @ApiMember(ExcludeInSchema=true, ParameterType="path") public creditNoteId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateClaimLinkedCreditNote'; } public getMethod() { return 'PUT'; } public createResponse() {} }