/* Options: Date: 2026-03-31 23:09:50 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetUserPrivacyInformation.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UserPrivacyInformation { public ShowPrivacyStatement: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/users/{UserID}/extranet/{ExtranetEnvironment}/privacyinformation", "GET") export class GetUserPrivacyInformation implements IReturn { public UserID: number; public ExtranetEnvironment: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetUserPrivacyInformation'; } public getMethod() { return 'GET'; } public createResponse() { return new UserPrivacyInformation(); } }