/* Options: Date: 2024-05-02 10:59:15 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LockTech.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IPut { } export class LockStackResponse { public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Limit updates to Technology to Owner or Admin users */ // @Route("/admin/technology/{TechnologyId}/lock") // @Api(Description="Limit updates to Technology to Owner or Admin users") export class LockTech implements IReturn, IPut { // @Validate(Validator="GreaterThan(0)") public technologyId: number; public isLocked: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'LockTech'; } public getMethod() { return 'PUT'; } public createResponse() { return new LockStackResponse(); } }