/* Options: Date: 2025-06-26 01:07:14 Version: 6.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://webservices.mbukdatabase.co.uk/MBPreferencesService //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: IntentionsUpdateRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Response { public Code: string; public Message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class IntentionsUpdateResponse { public ResponseStatus: Response; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/IntentionsUpdate/", "POST") export class IntentionsUpdateRequest implements IReturn { public ContractNumber: string; public Intention: string; public IntentionsSource: string; public IntentionsDateTime: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'IntentionsUpdateRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new IntentionsUpdateResponse(); } }